From 29d0b55e368aa2ae26ad61f7ecd60b723a3a4e05 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Fri, 31 Jul 2009 15:50:19 +0200 Subject: [apt-pkg/sourcelist.cc] only display the warning about missing sources.list file, if no SourceListEntry exists (e.g. sources.list.d dir does not exists or it exists but does not include a .list-file with valid entries) --- apt-pkg/sourcelist.cc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apt-pkg/sourcelist.cc b/apt-pkg/sourcelist.cc index 47a08ad90..85a20f0b8 100644 --- a/apt-pkg/sourcelist.cc +++ b/apt-pkg/sourcelist.cc @@ -157,10 +157,15 @@ bool pkgSourceList::ReadMainList() // CNC:2003-11-28 - Entries in sources.list have priority over // entries in sources.list.d. string Main = _config->FindFile("Dir::Etc::sourcelist"); + string noSourceMsg; if (FileExists(Main) == true) Res &= ReadAppend(Main); else + { + // only print the warning if we can't load a valid sourcefile in the end _error->WarningE("FileExists",_("Unable to read %s"),Main.c_str()); + _error->PopMessage(noSourceMsg); + } string Parts = _config->FindDir("Dir::Etc::sourceparts"); if (FileExists(Parts) == true) @@ -168,6 +173,9 @@ bool pkgSourceList::ReadMainList() else _error->WarningE("FileExists",_("Unable to read %s"),Parts.c_str()); + if (SrcList.empty() == true && noSourceMsg.empty() == false) + _error->Warning(noSourceMsg.c_str()); + return Res; } /*}}}*/ -- cgit v1.2.3 From 03dbbc98ba48eeb7c360c7fb02f21cdc9cd86465 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Fri, 31 Jul 2009 18:52:16 +0200 Subject: [cmdline/apt-get.cc] add APT::Get::HideAutoRemove=small to display only a short line instead of the full package list. (Closes: #537450) --- cmdline/apt-get.cc | 58 ++++++++++++++++------- debian/changelog | 6 +++ po/apt-all.pot | 136 ++++++++++++++++++++++++++++------------------------- 3 files changed, 117 insertions(+), 83 deletions(-) diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index ab6dca388..d3972ad81 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1400,20 +1400,29 @@ bool DoAutomaticRemove(CacheFile &Cache) bool Debug = _config->FindI("Debug::pkgAutoRemove",false); bool doAutoRemove = _config->FindB("APT::Get::AutomaticRemove", false); bool hideAutoRemove = _config->FindB("APT::Get::HideAutoRemove"); - pkgDepCache::ActionGroup group(*Cache); + pkgDepCache::ActionGroup group(*Cache); if(Debug) std::cout << "DoAutomaticRemove()" << std::endl; - if (_config->FindB("APT::Get::Remove",true) == false && - doAutoRemove == true) + // we don't want to autoremove and we don't want to see it, so why calculating? + if (doAutoRemove == false && hideAutoRemove == true) + return true; + + if (doAutoRemove == true && + _config->FindB("APT::Get::Remove",true) == false) { c1out << _("We are not supposed to delete stuff, can't start " "AutoRemover") << std::endl; - doAutoRemove = false; + return false; } + bool purgePkgs = _config->FindB("APT::Get::Purge", false); + bool smallList = (hideAutoRemove == false && + strcasecmp(_config->Find("APT::Get::HideAutoRemove","").c_str(),"small") == 0); + string autoremovelist, autoremoveversions; + unsigned long autoRemoveCount = 0; // look over the cache to see what can be removed for (pkgCache::PkgIterator Pkg = Cache->PkgBegin(); ! Pkg.end(); ++Pkg) { @@ -1422,30 +1431,43 @@ bool DoAutomaticRemove(CacheFile &Cache) if(Pkg.CurrentVer() != 0 || Cache[Pkg].Install()) if(Debug) std::cout << "We could delete %s" << Pkg.Name() << std::endl; - - // only show stuff in the list that is not yet marked for removal - if(Cache[Pkg].Delete() == false) - { - autoremovelist += string(Pkg.Name()) + " "; - autoremoveversions += string(Cache[Pkg].CandVersion) + "\n"; - } + if (doAutoRemove) { if(Pkg.CurrentVer() != 0 && Pkg->CurrentState != pkgCache::State::ConfigFiles) - Cache->MarkDelete(Pkg, _config->FindB("APT::Get::Purge", false)); + Cache->MarkDelete(Pkg, purgePkgs); else Cache->MarkKeep(Pkg, false, false); } + else + { + // only show stuff in the list that is not yet marked for removal + if(Cache[Pkg].Delete() == false) + { + // we don't need to fill the strings if we don't need them + if (smallList == true) + ++autoRemoveCount; + else + { + autoremovelist += string(Pkg.Name()) + " "; + autoremoveversions += string(Cache[Pkg].CandVersion) + "\n"; + } + } + } } } - if (!hideAutoRemove) - ShowList(c1out, _("The following packages were automatically installed and are no longer required:"), autoremovelist, autoremoveversions); - if (!doAutoRemove && !hideAutoRemove && autoremovelist.size() > 0) + // if we don't remove them, we should show them! + if (doAutoRemove == false && (autoremovelist.empty() == false || autoRemoveCount != 0)) + { + if (smallList == false) + ShowList(c1out, _("The following packages were automatically installed and are no longer required:"), autoremovelist, autoremoveversions); + else + ioprintf(c1out, _("%lu packages were automatically installed and are no longer required.\n"), autoRemoveCount); c1out << _("Use 'apt-get autoremove' to remove them.") << std::endl; - - // Now see if we destroyed anything - if (Cache->BrokenCount() != 0) + } + // Now see if we had destroyed anything (if we had done anything) + else if (Cache->BrokenCount() != 0) { c1out << _("Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt.") << endl; diff --git a/debian/changelog b/debian/changelog index cb5e74cb6..46bd16df9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,15 @@ apt (0.7.23) unstable; urgency=low + [ Michael Vogt ] * cmdline/apt-get.cc: - honor APT::Get::Only-Source properly in FindSrc() (thanks to Martin Pitt for reporting the problem) + [ David Kalnischkies ] + * cmdline/apt-get.cc: + - add APT::Get::HideAutoRemove=small to display only a short line + instead of the full package list. (Closes: #537450) + -- Michael Vogt Thu, 30 Jul 2009 15:27:30 +0200 apt (0.7.22) unstable; urgency=low diff --git a/po/apt-all.pot b/po/apt-all.pot index a18646290..605bdb8c2 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: 2009-07-26 01:10+0200\n" +"POT-Creation-Date: 2009-07-31 18:47+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -151,7 +151,7 @@ msgstr "" #: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2584 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2606 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "" @@ -549,7 +549,7 @@ msgstr "" msgid "Y" msgstr "" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1659 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1681 #, c-format msgid "Regex compilation error - %s" msgstr "" @@ -708,11 +708,11 @@ msgstr "" msgid "Internal error, Ordering didn't finish" msgstr "" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2001 cmdline/apt-get.cc:2034 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2023 cmdline/apt-get.cc:2056 msgid "Unable to lock the download directory" msgstr "" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2082 cmdline/apt-get.cc:2328 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2104 cmdline/apt-get.cc:2350 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "" @@ -741,7 +741,7 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2177 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2199 #, c-format msgid "Couldn't determine free space in %s" msgstr "" @@ -775,7 +775,7 @@ msgstr "" msgid "Do you want to continue [Y/n]? " msgstr "" -#: cmdline/apt-get.cc:986 cmdline/apt-get.cc:2225 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:986 cmdline/apt-get.cc:2247 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "" @@ -784,7 +784,7 @@ msgstr "" msgid "Some files failed to download" msgstr "" -#: cmdline/apt-get.cc:1005 cmdline/apt-get.cc:2234 +#: cmdline/apt-get.cc:1005 cmdline/apt-get.cc:2256 msgid "Download complete and in download only mode" msgstr "" @@ -889,21 +889,26 @@ msgstr "" msgid "Unable to lock the list directory" msgstr "" -#: cmdline/apt-get.cc:1411 +#: cmdline/apt-get.cc:1415 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1443 +#: cmdline/apt-get.cc:1464 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1466 +#, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" + +#: cmdline/apt-get.cc:1467 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1450 +#: cmdline/apt-get.cc:1472 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -919,49 +924,49 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1453 cmdline/apt-get.cc:1743 +#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1765 msgid "The following information may help to resolve the situation:" msgstr "" -#: cmdline/apt-get.cc:1457 +#: cmdline/apt-get.cc:1479 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: cmdline/apt-get.cc:1476 +#: cmdline/apt-get.cc:1498 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1531 +#: cmdline/apt-get.cc:1553 #, c-format msgid "Couldn't find task %s" msgstr "" -#: cmdline/apt-get.cc:1646 cmdline/apt-get.cc:1682 +#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704 #, c-format msgid "Couldn't find package %s" msgstr "" -#: cmdline/apt-get.cc:1669 +#: cmdline/apt-get.cc:1691 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "" -#: cmdline/apt-get.cc:1700 +#: cmdline/apt-get.cc:1722 #, c-format msgid "%s set to manually installed.\n" msgstr "" -#: cmdline/apt-get.cc:1713 +#: cmdline/apt-get.cc:1735 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" -#: cmdline/apt-get.cc:1716 +#: cmdline/apt-get.cc:1738 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -#: cmdline/apt-get.cc:1728 +#: cmdline/apt-get.cc:1750 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" @@ -969,152 +974,152 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1746 +#: cmdline/apt-get.cc:1768 msgid "Broken packages" msgstr "" -#: cmdline/apt-get.cc:1775 +#: cmdline/apt-get.cc:1797 msgid "The following extra packages will be installed:" msgstr "" -#: cmdline/apt-get.cc:1864 +#: cmdline/apt-get.cc:1886 msgid "Suggested packages:" msgstr "" -#: cmdline/apt-get.cc:1865 +#: cmdline/apt-get.cc:1887 msgid "Recommended packages:" msgstr "" -#: cmdline/apt-get.cc:1894 +#: cmdline/apt-get.cc:1916 msgid "Calculating upgrade... " msgstr "" -#: cmdline/apt-get.cc:1897 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1919 methods/ftp.cc:702 methods/connect.cc:112 msgid "Failed" msgstr "" -#: cmdline/apt-get.cc:1902 +#: cmdline/apt-get.cc:1924 msgid "Done" msgstr "" -#: cmdline/apt-get.cc:1969 cmdline/apt-get.cc:1977 +#: cmdline/apt-get.cc:1991 cmdline/apt-get.cc:1999 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:2077 +#: cmdline/apt-get.cc:2099 msgid "Must specify at least one package to fetch source for" msgstr "" -#: cmdline/apt-get.cc:2107 cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2129 cmdline/apt-get.cc:2368 #, c-format msgid "Unable to find a source package for %s" msgstr "" -#: cmdline/apt-get.cc:2156 +#: cmdline/apt-get.cc:2178 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: cmdline/apt-get.cc:2184 +#: cmdline/apt-get.cc:2206 #, c-format msgid "You don't have enough free space in %s" msgstr "" -#: cmdline/apt-get.cc:2190 +#: cmdline/apt-get.cc:2212 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2193 +#: cmdline/apt-get.cc:2215 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2199 +#: cmdline/apt-get.cc:2221 #, c-format msgid "Fetch source %s\n" msgstr "" -#: cmdline/apt-get.cc:2230 +#: cmdline/apt-get.cc:2252 msgid "Failed to fetch some archives." msgstr "" -#: cmdline/apt-get.cc:2258 +#: cmdline/apt-get.cc:2280 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2270 +#: cmdline/apt-get.cc:2292 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2271 +#: cmdline/apt-get.cc:2293 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2288 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Build command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2307 +#: cmdline/apt-get.cc:2329 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2323 +#: cmdline/apt-get.cc:2345 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2351 +#: cmdline/apt-get.cc:2373 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2371 +#: cmdline/apt-get.cc:2393 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:2423 +#: cmdline/apt-get.cc:2445 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:2476 +#: cmdline/apt-get.cc:2498 #, 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:2512 +#: cmdline/apt-get.cc:2534 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:2539 +#: cmdline/apt-get.cc:2561 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:2553 +#: cmdline/apt-get.cc:2575 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:2557 +#: cmdline/apt-get.cc:2579 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:2589 +#: cmdline/apt-get.cc:2611 msgid "Supported modules:" msgstr "" -#: cmdline/apt-get.cc:2630 +#: cmdline/apt-get.cc:2652 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1158,7 +1163,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:2797 +#: cmdline/apt-get.cc:2819 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1381,9 +1386,10 @@ msgstr "" msgid "File %s/%s overwrites the one in the package %s" msgstr "" +#. only print the warning if we can't load a valid sourcefile in the end #: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:163 -#: apt-pkg/sourcelist.cc:169 apt-pkg/sourcelist.cc:324 apt-pkg/acquire.cc:419 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:174 apt-pkg/sourcelist.cc:332 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 #: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format @@ -2211,16 +2217,16 @@ msgstr "" msgid "Dependency generation" msgstr "" -#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:192 apt-pkg/depcache.cc:196 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "" -#: apt-pkg/depcache.cc:220 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "" -#: apt-pkg/depcache.cc:226 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "" @@ -2260,27 +2266,27 @@ msgstr "" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -#: apt-pkg/sourcelist.cc:203 +#: apt-pkg/sourcelist.cc:211 #, c-format msgid "Opening %s" msgstr "" -#: apt-pkg/sourcelist.cc:220 apt-pkg/cdrom.cc:445 +#: apt-pkg/sourcelist.cc:228 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:248 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "" -#: apt-pkg/sourcelist.cc:244 +#: apt-pkg/sourcelist.cc:252 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: apt-pkg/sourcelist.cc:252 apt-pkg/sourcelist.cc:255 +#: apt-pkg/sourcelist.cc:260 apt-pkg/sourcelist.cc:263 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "" -- cgit v1.2.3 From 0dae8ac5f8a3092057a80d932ae4e55c1e7d3ca5 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Fri, 31 Jul 2009 20:29:50 +0200 Subject: [cmdline/apt-get.cc] ShowBroken() in build-dep (Closes: #145916) Patch from Mike O'Connor, thanks! --- cmdline/apt-get.cc | 5 ++++- debian/changelog | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index d3972ad81..ebb634b4f 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -2572,7 +2572,10 @@ bool DoBuildDep(CommandLine &CmdL) // Now we check the state of the packages, if (Cache->BrokenCount() != 0) - return _error->Error(_("Build-dependencies for %s could not be satisfied."),*I); + { + ShowBroken(cout, Cache, false); + return _error->Error(_("Build-dependencies for %s could not be satisfied."),*I); + } } if (InstallPackages(Cache, false, true) == false) diff --git a/debian/changelog b/debian/changelog index 46bd16df9..b105faaef 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,7 @@ apt (0.7.23) unstable; urgency=low * cmdline/apt-get.cc: - add APT::Get::HideAutoRemove=small to display only a short line instead of the full package list. (Closes: #537450) + - ShowBroken() in build-dep (by Mike O'Connor, Closes: #145916) -- Michael Vogt Thu, 30 Jul 2009 15:27:30 +0200 -- cgit v1.2.3 From d95cf70db1c0cc7d80d862b826ea67ac70c3e92d Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Fri, 31 Jul 2009 20:42:06 +0200 Subject: [apt-pkg/contrib/strutl.cc] enable thousand separator according to the current locale. Patch from Luca Bruno (Closes: #223712) --- apt-pkg/contrib/strutl.cc | 4 ++-- debian/changelog | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/apt-pkg/contrib/strutl.cc b/apt-pkg/contrib/strutl.cc index a991b8988..1683868c8 100644 --- a/apt-pkg/contrib/strutl.cc +++ b/apt-pkg/contrib/strutl.cc @@ -304,13 +304,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/debian/changelog b/debian/changelog index b105faaef..384f8864f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,6 +10,9 @@ apt (0.7.23) unstable; urgency=low - add APT::Get::HideAutoRemove=small to display only a short line instead of the full package list. (Closes: #537450) - ShowBroken() in build-dep (by Mike O'Connor, Closes: #145916) + * apt-pkg/contrib/strutl.cc: + - enable thousand separator according to the current locale + (by Luca Bruno, Closes: #223712) -- Michael Vogt Thu, 30 Jul 2009 15:27:30 +0200 -- cgit v1.2.3 From 311e188ce858772bad0f622cf3d742a8acca80c0 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Sat, 1 Aug 2009 19:47:20 +0200 Subject: [debian/changelog] add a Closes tag to mvo's --only-source patch --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 384f8864f..9987b7444 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,7 +3,7 @@ apt (0.7.23) unstable; urgency=low [ Michael Vogt ] * cmdline/apt-get.cc: - honor APT::Get::Only-Source properly in FindSrc() (thanks to - Martin Pitt for reporting the problem) + Martin Pitt for reporting the problem) (Closes: #535362) [ David Kalnischkies ] * cmdline/apt-get.cc: -- cgit v1.2.3 From 33250e2f415611f820e24ba2f9f4d0e568d67d02 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Sat, 1 Aug 2009 19:50:42 +0200 Subject: [debian/changelog] correct two typos in the changelog for 0.7.22 --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 9987b7444..7f9cc0c02 100644 --- a/debian/changelog +++ b/debian/changelog @@ -73,7 +73,7 @@ apt (0.7.22) unstable; urgency=low (off by default) - send "dpkg-exec" message on the status fd when dpkg is run - provide DPkg::Chroot-Directory config option (useful for testing) - - fix potential hang when in a backgroud process group + - fix potential hang when in a background process group * apt-pkg/algorithms.cc: - consider recommends when making the scores for the problem resolver @@ -102,7 +102,7 @@ apt (0.7.22) unstable; urgency=low * apt-pkg/deb/debsystem.cc: - make strings i18n able * fix problematic use of tolower() when calculating the version - hash by using locale independant tolower_ascii() function. + hash by using locale independent tolower_ascii() function. Thanks to M. Vefa Bicakci (LP: #80248) * build fixes for g++-4.4 * cmdline/apt-mark: -- cgit v1.2.3 From 40e7fe0e053129c28c59acc79e94cc10e89e7738 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Mon, 3 Aug 2009 14:31:40 +0200 Subject: =?UTF-8?q?[apt-pkg/contrib/fileutl.cc]=20In=20function=20ExecWait?= =?UTF-8?q?():=20fix=20compile=20warning:=20warning:=20suggest=20explicit?= =?UTF-8?q?=20braces=20to=20avoid=20ambiguous=20=E2=80=98else=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apt-pkg/contrib/fileutl.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index a7de09c44..4240d9f49 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -451,10 +451,12 @@ bool ExecWait(pid_t Pid,const char *Name,bool Reap) if (Reap == true) return false; if (WIFSIGNALED(Status) != 0) + { if( WTERMSIG(Status) == SIGSEGV) return _error->Error(_("Sub-process %s received a segmentation fault."),Name); else return _error->Error(_("Sub-process %s received signal %u."),Name, WTERMSIG(Status)); + } if (WIFEXITED(Status) != 0) return _error->Error(_("Sub-process %s returned an error code (%u)"),Name,WEXITSTATUS(Status)); -- cgit v1.2.3 From 2b5c0d21114e200f524c2ff199bf1ce9e0d923fa Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Mon, 3 Aug 2009 14:44:28 +0200 Subject: [debian/changlog] add entry for the "missing source.list file" fix * apt-pkg/sourcelist.cc: - only show warning about missing sources.list file if no we have no valid sourceentry (Closes: #539731) --- debian/changelog | 3 +++ 1 file changed, 3 insertions(+) diff --git a/debian/changelog b/debian/changelog index 7f9cc0c02..5822fcae6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,9 @@ apt (0.7.23) unstable; urgency=low * apt-pkg/contrib/strutl.cc: - enable thousand separator according to the current locale (by Luca Bruno, Closes: #223712) + * apt-pkg/sourcelist.cc: + - only show warning about missing sources.list file if no we have + no valid sourceentry (Closes: #539731) -- Michael Vogt Thu, 30 Jul 2009 15:27:30 +0200 -- cgit v1.2.3 From cfb3d242ded4b9d3e5f4f55a3139561fe78155db Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Sat, 8 Aug 2009 12:25:48 +0200 Subject: [apt-pkg/indexcopy.cc] fix a (hypothetical) memory leak then the Release file not exists, patch from George Danchev, thanks! (Closes: #511556) --- apt-pkg/indexcopy.cc | 3 +++ debian/changelog | 3 +++ 2 files changed, 6 insertions(+) diff --git a/apt-pkg/indexcopy.cc b/apt-pkg/indexcopy.cc index 15696585a..0142d7dbe 100644 --- a/apt-pkg/indexcopy.cc +++ b/apt-pkg/indexcopy.cc @@ -592,7 +592,10 @@ bool SigVerify::CopyAndVerify(string CDROM,string Name,vector &SigList, // a Release.gpg without a Release should never happen if(!FileExists(*I+"Release")) + { + delete MetaIndex; continue; + } // verify the gpg signature of "Release" diff --git a/debian/changelog b/debian/changelog index 403911833..408070b69 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,9 @@ apt (0.7.22.3) unstable; urgency=low * apt-pkg/contrib/strutl.cc: - enable thousand separator according to the current locale (by Luca Bruno, Closes: #223712) + * apt-pkg/indexcopy.cc: + - fix a (hypothetical) memory leak then the Release file not exists + (by George Danchev, Closes: #511556) -- David Kalnischkies Sat, 08 Aug 2009 09:40:08 +0200 -- cgit v1.2.3 From 034960416c99c4737f99536c55b77cc9a27b8d66 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Sat, 8 Aug 2009 12:40:00 +0200 Subject: [cmdline/apt-cache.cc] fix a memory leak in the xvcg method Patch from George Danchev, thanks (Closes: #511557) --- cmdline/apt-cache.cc | 6 +++++- debian/changelog | 7 +++++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/cmdline/apt-cache.cc b/cmdline/apt-cache.cc index 0e950310b..7d7f58a62 100644 --- a/cmdline/apt-cache.cc +++ b/cmdline/apt-cache.cc @@ -929,7 +929,11 @@ bool XVcg(CommandLine &CmdL) Shapes[ShapeMap[Pkg->ID]]); } - + + delete[] Show; + delete[] Flags; + delete[] ShapeMap; + printf("}\n"); return true; } diff --git a/debian/changelog b/debian/changelog index 408070b69..e82057d8e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,9 +8,12 @@ apt (0.7.22.3) unstable; urgency=low * apt-pkg/contrib/strutl.cc: - enable thousand separator according to the current locale (by Luca Bruno, Closes: #223712) + + [ George Danchev ] + * cmdline/apt-cache.cc: + - fix a memory leak in the xvcg method (Closes: #511557) * apt-pkg/indexcopy.cc: - - fix a (hypothetical) memory leak then the Release file not exists - (by George Danchev, Closes: #511556) + - fix a memory leak then the Release file not exists (Closes: #511556) -- David Kalnischkies Sat, 08 Aug 2009 09:40:08 +0200 -- cgit v1.2.3 From 6e2525a1d9c0930fea9fa65514d7b813f27997f0 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Sat, 8 Aug 2009 18:27:47 +0200 Subject: [doc/apt.conf.5.xml] mention the apt.conf.d dir Patch from Vincent McIntyre, thanks! (Closes: #520831) --- debian/changelog | 2 ++ doc/apt.conf.5.xml | 12 +++++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index e82057d8e..e4b498a93 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,8 @@ apt (0.7.22.3) unstable; urgency=low * apt-pkg/contrib/strutl.cc: - enable thousand separator according to the current locale (by Luca Bruno, Closes: #223712) + * doc/apt.conf.5.xml: + - mention the apt.conf.d dir (by Vincent McIntyre, Closes: #520831) [ George Danchev ] * cmdline/apt-cache.cc: diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml index 2b2430c83..85a7d961c 100644 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@ -822,7 +822,17 @@ is commented. Files - /etc/apt/apt.conf + + /etc/apt/apt.conf + APT configuration file. + Configuration Item: Dir::Etc::Main. + + + /etc/apt/apt.conf.d/ + APT configuration file fragments. + Configuration Item: Dir::Etc::Parts. + + See Also -- cgit v1.2.3 From f64196e879103151f3b90ba423dc74ef61ea8c76 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Sun, 9 Aug 2009 10:21:00 +0200 Subject: [cmdline/apt-get.cc] check for availability ofstatfs.f_type Patch from Robert Millan, thanks! (Closes: #509313) --- cmdline/apt-get.cc | 14 +++- configure.in | 4 + debian/changelog | 1 + po/apt-all.pot | 212 ++++++++++++++++++++++++++--------------------------- 4 files changed, 121 insertions(+), 110 deletions(-) diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index ebb634b4f..384953a6b 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -868,8 +868,11 @@ bool InstallPackages(CacheFile &Cache,bool ShwKept,bool Ask = true, if (unsigned(Buf.f_bfree) < (FetchBytes - FetchPBytes)/Buf.f_bsize) { struct statfs Stat; - if (statfs(OutputDir.c_str(),&Stat) != 0 || - unsigned(Stat.f_type) != RAMFS_MAGIC) + if (statfs(OutputDir.c_str(),&Stat) != 0 +#if HAVE_STRUCT_STATFS_F_TYPE + || unsigned(Stat.f_type) != RAMFS_MAGIC +#endif + ) return _error->Error(_("You don't have enough free space in %s."), OutputDir.c_str()); } @@ -2201,8 +2204,11 @@ bool DoSource(CommandLine &CmdL) if (unsigned(Buf.f_bfree) < (FetchBytes - FetchPBytes)/Buf.f_bsize) { struct statfs Stat; - if (statfs(OutputDir.c_str(),&Stat) != 0 || - unsigned(Stat.f_type) != RAMFS_MAGIC) + if (statfs(OutputDir.c_str(),&Stat) != 0 +#if HAVE_STRUCT_STATFS_F_TYPE + || unsigned(Stat.f_type) != RAMFS_MAGIC +#endif + ) return _error->Error(_("You don't have enough free space in %s"), OutputDir.c_str()); } diff --git a/configure.in b/configure.in index 9131e2fbe..0dd1beb1a 100644 --- a/configure.in +++ b/configure.in @@ -112,6 +112,10 @@ if test x"$HAVE_STATVFS" != x"yes"; then ]) fi +AC_CHECK_MEMBERS([struct statfs.f_type],,, + [$ac_includes_default + #include ]) + dnl We should use the real timegm function if we have it. AC_CHECK_FUNC(timegm,AC_DEFINE(HAVE_TIMEGM)) AC_SUBST(HAVE_TIMEGM) diff --git a/debian/changelog b/debian/changelog index e4b498a93..fd6f853e0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,7 @@ apt (0.7.22.3) unstable; urgency=low - add APT::Get::HideAutoRemove=small to display only a short line instead of the full package list. (Closes: #537450) - ShowBroken() in build-dep (by Mike O'Connor, Closes: #145916) + - check for statfs.f_type (by Robert Millan, Closes: #509313) * apt-pkg/contrib/strutl.cc: - enable thousand separator according to the current locale (by Luca Bruno, Closes: #223712) diff --git a/po/apt-all.pot b/po/apt-all.pot index 78c9c94e0..3ec999f76 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: 2009-08-08 09:46+0200\n" +"POT-Creation-Date: 2009-08-09 10:20+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,8 +21,8 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1017 -#: cmdline/apt-cache.cc:1419 cmdline/apt-cache.cc:1571 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 +#: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" msgstr "" @@ -91,72 +91,72 @@ msgstr "" msgid "Total space accounted for: " msgstr "" -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1217 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "" -#: cmdline/apt-cache.cc:1293 +#: cmdline/apt-cache.cc:1297 msgid "You must give exactly one pattern" msgstr "" -#: cmdline/apt-cache.cc:1447 +#: cmdline/apt-cache.cc:1451 msgid "No packages found" msgstr "" -#: cmdline/apt-cache.cc:1524 +#: cmdline/apt-cache.cc:1528 msgid "Package files:" msgstr "" -#: cmdline/apt-cache.cc:1531 cmdline/apt-cache.cc:1618 +#: cmdline/apt-cache.cc:1535 cmdline/apt-cache.cc:1622 msgid "Cache is out of sync, can't x-ref a package file" msgstr "" #. Show any packages have explicit pins -#: cmdline/apt-cache.cc:1545 +#: cmdline/apt-cache.cc:1549 msgid "Pinned packages:" msgstr "" -#: cmdline/apt-cache.cc:1557 cmdline/apt-cache.cc:1598 +#: cmdline/apt-cache.cc:1561 cmdline/apt-cache.cc:1602 msgid "(not found)" msgstr "" #. Installed version -#: cmdline/apt-cache.cc:1578 +#: cmdline/apt-cache.cc:1582 msgid " Installed: " msgstr "" -#: cmdline/apt-cache.cc:1580 cmdline/apt-cache.cc:1588 +#: cmdline/apt-cache.cc:1584 cmdline/apt-cache.cc:1592 msgid "(none)" msgstr "" #. Candidate Version -#: cmdline/apt-cache.cc:1585 +#: cmdline/apt-cache.cc:1589 msgid " Candidate: " msgstr "" -#: cmdline/apt-cache.cc:1595 +#: cmdline/apt-cache.cc:1599 msgid " Package pin: " msgstr "" #. Show the priority tables -#: cmdline/apt-cache.cc:1604 +#: cmdline/apt-cache.cc:1608 msgid " Version table:" msgstr "" -#: cmdline/apt-cache.cc:1619 +#: cmdline/apt-cache.cc:1623 #, c-format msgid " %4i %s\n" msgstr "" -#: cmdline/apt-cache.cc:1714 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2609 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2615 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "" -#: cmdline/apt-cache.cc:1721 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -549,7 +549,7 @@ msgstr "" msgid "Y" msgstr "" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1681 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1684 #, c-format msgid "Regex compilation error - %s" msgstr "" @@ -692,7 +692,7 @@ msgstr "" msgid "Some packages could not be authenticated" msgstr "" -#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:883 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "" @@ -708,11 +708,11 @@ msgstr "" msgid "Internal error, Ordering didn't finish" msgstr "" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2023 cmdline/apt-get.cc:2056 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2026 cmdline/apt-get.cc:2059 msgid "Unable to lock the download directory" msgstr "" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2104 cmdline/apt-get.cc:2350 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2107 cmdline/apt-get.cc:2356 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "" @@ -741,25 +741,25 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2199 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2202 #, c-format msgid "Couldn't determine free space in %s" msgstr "" -#: cmdline/apt-get.cc:873 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "" -#: cmdline/apt-get.cc:889 cmdline/apt-get.cc:909 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: cmdline/apt-get.cc:891 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "" -#: cmdline/apt-get.cc:893 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -767,74 +767,74 @@ msgid "" " ?] " msgstr "" -#: cmdline/apt-get.cc:899 cmdline/apt-get.cc:918 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "" -#: cmdline/apt-get.cc:914 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "" -#: cmdline/apt-get.cc:986 cmdline/apt-get.cc:2247 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2253 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "" -#: cmdline/apt-get.cc:1004 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "" -#: cmdline/apt-get.cc:1005 cmdline/apt-get.cc:2256 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2262 msgid "Download complete and in download only mode" msgstr "" -#: cmdline/apt-get.cc:1011 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" msgstr "" -#: cmdline/apt-get.cc:1015 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "" -#: cmdline/apt-get.cc:1020 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "" -#: cmdline/apt-get.cc:1055 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "" -#: cmdline/apt-get.cc:1065 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -#: cmdline/apt-get.cc:1083 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "" -#: cmdline/apt-get.cc:1094 +#: cmdline/apt-get.cc:1097 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "" -#: cmdline/apt-get.cc:1106 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr "" -#: cmdline/apt-get.cc:1111 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "" -#: cmdline/apt-get.cc:1116 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -842,73 +842,73 @@ msgid "" "is only available from another source\n" msgstr "" -#: cmdline/apt-get.cc:1135 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "" -#: cmdline/apt-get.cc:1158 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -#: cmdline/apt-get.cc:1166 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "" -#: cmdline/apt-get.cc:1195 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "" -#: cmdline/apt-get.cc:1197 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "" -#: cmdline/apt-get.cc:1203 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "" -#: cmdline/apt-get.cc:1309 +#: cmdline/apt-get.cc:1312 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1346 +#: cmdline/apt-get.cc:1349 msgid "The update command takes no arguments" msgstr "" -#: cmdline/apt-get.cc:1359 +#: cmdline/apt-get.cc:1362 msgid "Unable to lock the list directory" msgstr "" -#: cmdline/apt-get.cc:1415 +#: cmdline/apt-get.cc:1418 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1464 +#: cmdline/apt-get.cc:1467 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" -#: cmdline/apt-get.cc:1466 +#: cmdline/apt-get.cc:1469 #, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" -#: cmdline/apt-get.cc:1467 +#: cmdline/apt-get.cc:1470 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1472 +#: cmdline/apt-get.cc:1475 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -924,49 +924,49 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1475 cmdline/apt-get.cc:1765 +#: cmdline/apt-get.cc:1478 cmdline/apt-get.cc:1768 msgid "The following information may help to resolve the situation:" msgstr "" -#: cmdline/apt-get.cc:1479 +#: cmdline/apt-get.cc:1482 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: cmdline/apt-get.cc:1498 +#: cmdline/apt-get.cc:1501 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1553 +#: cmdline/apt-get.cc:1556 #, c-format msgid "Couldn't find task %s" msgstr "" -#: cmdline/apt-get.cc:1668 cmdline/apt-get.cc:1704 +#: cmdline/apt-get.cc:1671 cmdline/apt-get.cc:1707 #, c-format msgid "Couldn't find package %s" msgstr "" -#: cmdline/apt-get.cc:1691 +#: cmdline/apt-get.cc:1694 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "" -#: cmdline/apt-get.cc:1722 +#: cmdline/apt-get.cc:1725 #, c-format msgid "%s set to manually installed.\n" msgstr "" -#: cmdline/apt-get.cc:1735 +#: cmdline/apt-get.cc:1738 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" -#: cmdline/apt-get.cc:1738 +#: cmdline/apt-get.cc:1741 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -#: cmdline/apt-get.cc:1750 +#: cmdline/apt-get.cc:1753 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" @@ -974,152 +974,152 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1768 +#: cmdline/apt-get.cc:1771 msgid "Broken packages" msgstr "" -#: cmdline/apt-get.cc:1797 +#: cmdline/apt-get.cc:1800 msgid "The following extra packages will be installed:" msgstr "" -#: cmdline/apt-get.cc:1886 +#: cmdline/apt-get.cc:1889 msgid "Suggested packages:" msgstr "" -#: cmdline/apt-get.cc:1887 +#: cmdline/apt-get.cc:1890 msgid "Recommended packages:" msgstr "" -#: cmdline/apt-get.cc:1916 +#: cmdline/apt-get.cc:1919 msgid "Calculating upgrade... " msgstr "" -#: cmdline/apt-get.cc:1919 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1922 methods/ftp.cc:702 methods/connect.cc:112 msgid "Failed" msgstr "" -#: cmdline/apt-get.cc:1924 +#: cmdline/apt-get.cc:1927 msgid "Done" msgstr "" -#: cmdline/apt-get.cc:1991 cmdline/apt-get.cc:1999 +#: cmdline/apt-get.cc:1994 cmdline/apt-get.cc:2002 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:2099 +#: cmdline/apt-get.cc:2102 msgid "Must specify at least one package to fetch source for" msgstr "" -#: cmdline/apt-get.cc:2129 cmdline/apt-get.cc:2368 +#: cmdline/apt-get.cc:2132 cmdline/apt-get.cc:2374 #, c-format msgid "Unable to find a source package for %s" msgstr "" -#: cmdline/apt-get.cc:2178 +#: cmdline/apt-get.cc:2181 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: cmdline/apt-get.cc:2206 +#: cmdline/apt-get.cc:2212 #, c-format msgid "You don't have enough free space in %s" msgstr "" -#: cmdline/apt-get.cc:2212 +#: cmdline/apt-get.cc:2218 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2215 +#: cmdline/apt-get.cc:2221 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2221 +#: cmdline/apt-get.cc:2227 #, c-format msgid "Fetch source %s\n" msgstr "" -#: cmdline/apt-get.cc:2252 +#: cmdline/apt-get.cc:2258 msgid "Failed to fetch some archives." msgstr "" -#: cmdline/apt-get.cc:2280 +#: cmdline/apt-get.cc:2286 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2292 +#: cmdline/apt-get.cc:2298 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2293 +#: cmdline/apt-get.cc:2299 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2316 #, c-format msgid "Build command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2329 +#: cmdline/apt-get.cc:2335 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2345 +#: cmdline/apt-get.cc:2351 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2379 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2393 +#: cmdline/apt-get.cc:2399 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:2445 +#: cmdline/apt-get.cc:2451 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:2498 +#: cmdline/apt-get.cc:2504 #, 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:2534 +#: cmdline/apt-get.cc:2540 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:2561 +#: cmdline/apt-get.cc:2567 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:2577 +#: cmdline/apt-get.cc:2583 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:2582 +#: cmdline/apt-get.cc:2588 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:2614 +#: cmdline/apt-get.cc:2620 msgid "Supported modules:" msgstr "" -#: cmdline/apt-get.cc:2655 +#: cmdline/apt-get.cc:2661 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1163,7 +1163,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:2822 +#: cmdline/apt-get.cc:2828 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -2641,22 +2641,22 @@ msgstr "" msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:832 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:834 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:837 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:840 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" -- cgit v1.2.3 From 472e2c3aa9c8ea38c2b5f0639bdb09eadb7ffca4 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Sun, 9 Aug 2009 10:22:53 +0200 Subject: [apt-inst/contrib/arfile.cc] use sizeof instead strlen Patch from Marius Vollmer, thanks! (Closes: #504325) --- apt-inst/contrib/arfile.cc | 2 +- debian/changelog | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/apt-inst/contrib/arfile.cc b/apt-inst/contrib/arfile.cc index 7c85f2e86..e6c63d1ab 100644 --- a/apt-inst/contrib/arfile.cc +++ b/apt-inst/contrib/arfile.cc @@ -96,7 +96,7 @@ bool ARArchive::LoadHeaders() char S[300]; unsigned long Len; if (StrToNum(Head.Name+3,Len,sizeof(Head.Size)-3) == false || - Len >= strlen(S)) + Len >= sizeof(S)) { delete Memb; return _error->Error(_("Invalid archive member header")); diff --git a/debian/changelog b/debian/changelog index fd6f853e0..841661c5a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,6 +11,8 @@ apt (0.7.22.3) unstable; urgency=low (by Luca Bruno, Closes: #223712) * doc/apt.conf.5.xml: - mention the apt.conf.d dir (by Vincent McIntyre, Closes: #520831) + * apt-inst/contrib/arfile.cc: + - use sizeof instead strlen (by Marius Vollmer, Closes: #504325) [ George Danchev ] * cmdline/apt-cache.cc: -- cgit v1.2.3 From b2fa014bbefa8fe91f9c5c96f5cc053f14117f11 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Sun, 9 Aug 2009 10:24:59 +0200 Subject: [doc/apt-mark.8.xml] improve manpage based on patch by Carl Chenet, thanks! (Closes: #510286) add also showauto and command synopsis --- debian/changelog | 2 ++ doc/apt-mark.8.xml | 48 ++++++++++++++++++++++++++++++++++++++---------- 2 files changed, 40 insertions(+), 10 deletions(-) diff --git a/debian/changelog b/debian/changelog index 841661c5a..7f8764c8e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,8 @@ apt (0.7.22.3) unstable; urgency=low - mention the apt.conf.d dir (by Vincent McIntyre, Closes: #520831) * apt-inst/contrib/arfile.cc: - use sizeof instead strlen (by Marius Vollmer, Closes: #504325) + * doc/apt-mark.8.xml: + - improve manpage based on patch by Carl Chenet (Closes: #510286) [ George Danchev ] * cmdline/apt-cache.cc: diff --git a/doc/apt-mark.8.xml b/doc/apt-mark.8.xml index 1b7b02812..f078f2de5 100644 --- a/doc/apt-mark.8.xml +++ b/doc/apt-mark.8.xml @@ -15,7 +15,7 @@ &apt-email; &apt-product; - 2 November 2007 + 9 August 2009 @@ -32,11 +32,19 @@ - apt-mark - - - markautounmarkauto - package + apt-mark + + + + + + markauto + unmarkauto + + package + + showauto + @@ -49,7 +57,8 @@ 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. + by any manually installed packages, they will be removed by e.g. + apt-get or aptitude. markauto @@ -67,16 +76,24 @@ depend on it. + + showauto + showauto is used to print a + list of manually installed packages with each package on a new line. + + options - + + + - Read/Write package stats from FILENAME + Read/Write package stats from FILENAME instead of the default location, which is extended_status in the directory defined by the Configuration Item: Dir::State. @@ -101,8 +118,19 @@ + Files + + /var/lib/apt/extended_states + Status list of auto-installed packages. + Configuration Item: Dir::State + sets the path to the extended_states file. + + + + + See Also - &apt-conf; + &apt-get;,&aptitude;,&apt-conf; Diagnostics -- cgit v1.2.3 From 717ec7d41a232a1571f98e1efe2ff3c71d94968f Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Sun, 9 Aug 2009 13:43:21 +0200 Subject: [cmdline/apt-get.cc] correct the order of picked package binary vs source in the source command in the msg "No source package x picking y instead" --- cmdline/apt-get.cc | 2 +- debian/changelog | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 384953a6b..34ffaf11a 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1309,7 +1309,7 @@ pkgSrcRecords::Parser *FindSrc(const char *Name,pkgRecords &Recs, // show name mismatches if (IsMatch == true && Parse->Package() != Src) - ioprintf(c1out, _("No source package '%s' picking '%s' instead\n"), Parse->Package().c_str(), Src.c_str()); + ioprintf(c1out, _("No source package '%s' picking '%s' instead\n"), Src.c_str(), Parse->Package().c_str()); if (VerTag.empty() == false) { diff --git a/debian/changelog b/debian/changelog index 7f8764c8e..fa2a3f612 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,7 @@ apt (0.7.22.3) unstable; urgency=low instead of the full package list. (Closes: #537450) - ShowBroken() in build-dep (by Mike O'Connor, Closes: #145916) - check for statfs.f_type (by Robert Millan, Closes: #509313) + - correct the order of picked package binary vs source in source * apt-pkg/contrib/strutl.cc: - enable thousand separator according to the current locale (by Luca Bruno, Closes: #223712) -- cgit v1.2.3 From e85b4cd500cc96a8ce0d35c5e63fe274bed5b917 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 12 Aug 2009 00:52:26 +0200 Subject: Add a Acquire::CompressionTypes config variable from there the acquire-items choose which compression file they should (try first to) download to easily add new or change the order of the compression types. And because it is easy now we directly add builtin lzma support. The compression ratio is better than bzip2 but we prefer the later for now as no (official) mirror uses lzma, so this would only generate useless hits on the servers. Maybe sometime in the future lzma will be the default... [apt-pkg/acquire-item.cc] - use configsettings for dynamic compression type use and order. Based on a patch by Jyrki Muukkonen, thanks! (LP: #71746) [apt-pkg/init.cc] - add default configuration for compression types and add lzma support. Order is now bzip2, lzma, gzip, none (Closes: #510526) [ftparchive/writer.cc] - add lzma support also here, patch for this (and inspiration for the one above) by Robert Millan, thanks! --- apt-pkg/acquire-item.cc | 79 ++++++++++++++++++++++++++++++------------------- apt-pkg/acquire-item.h | 10 ++----- apt-pkg/init.cc | 24 ++++++++++++++- debian/changelog | 9 ++++++ doc/apt.conf.5.xml | 15 ++++++++++ ftparchive/writer.cc | 2 ++ po/apt-all.pot | 18 +++++------ 7 files changed, 110 insertions(+), 47 deletions(-) diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index 39ae327cb..ffbe66d7d 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -551,13 +551,24 @@ pkgAcqIndex::pkgAcqIndex(pkgAcquire *Owner, if(comprExt.empty()) { // autoselect the compression method - if(FileExists("/bin/bzip2")) - CompressionExtension = ".bz2"; - else - CompressionExtension = ".gz"; - } else { - CompressionExtension = (comprExt == "plain" ? "" : comprExt); + Configuration::Item const *Opts = _config->Tree("Acquire::CompressionTypes"); + if (Opts != 0) + Opts = Opts->Child; + + const char dirBin[] = "Dir::Bin::"; + for (; Opts != 0; Opts = Opts->Next) + { + if (Opts->Tag.empty() == true || Opts->Value.empty() == true) + continue; + const string bin = _config->FindFile(string(dirBin).append(Opts->Value).c_str(),""); + if (bin != "" && !FileExists(bin)) + continue; + comprExt = '.' + Opts->Tag; + break; + } } + CompressionExtension = ((comprExt == "plain" || comprExt == ".") ? "" : comprExt); + Desc.URI = URI + CompressionExtension; Desc.Description = URIDesc; @@ -584,24 +595,32 @@ string pkgAcqIndex::Custom600Headers() /*}}}*/ void pkgAcqIndex::Failed(string Message,pkgAcquire::MethodConfig *Cnf) /*{{{*/ { - bool descChanged = false; - // no .bz2 found, retry with .gz - if(Desc.URI.substr(Desc.URI.size()-3) == "bz2") { - Desc.URI = Desc.URI.substr(0,Desc.URI.size()-3) + "gz"; - - new pkgAcqIndex(Owner, RealURI, Desc.Description,Desc.ShortDesc, - ExpectedHash, string(".gz")); - descChanged = true; - } - // no .gz found, retry with uncompressed - else if(Desc.URI.substr(Desc.URI.size()-2) == "gz") { - Desc.URI = Desc.URI.substr(0,Desc.URI.size()-2); + Configuration::Item const *Opts = _config->Tree("Acquire::CompressionTypes"); + if (Opts != 0) + Opts = Opts->Child; + + const char dirBin[] = "Dir::Bin::"; + for (; Opts != 0; Opts = Opts->Next) + { + if (Opts->Tag.empty() == true || Opts->Value.empty() == true) + continue; + + // jump over all already checked compression types + const unsigned int nameLen = Desc.URI.size() - Opts->Tag.size(); + if(Desc.URI.substr(nameLen) != Opts->Tag || Opts->Next == 0) + continue; + + // check if we need an external binary for this compression type + const string bin = _config->FindFile(string(dirBin).append(Opts->Next->Value).c_str(),""); + if (bin != "" && !FileExists(bin)) + continue; + + // retry with the next extension + Desc.URI = Desc.URI.substr(0, nameLen) + Opts->Next->Tag; + + new pkgAcqIndex(Owner, RealURI, Desc.Description, Desc.ShortDesc, + ExpectedHash, string(".").append(Opts->Next->Tag)); - new pkgAcqIndex(Owner, RealURI, Desc.Description,Desc.ShortDesc, - ExpectedHash, string("plain")); - descChanged = true; - } - if (descChanged) { Status = StatDone; Complete = false; Dequeue(); @@ -698,11 +717,11 @@ void pkgAcqIndex::Done(string Message,unsigned long Size,string Hash, Local = true; string compExt = flExtension(flNotDir(URI(Desc.URI).Path)); - const char *decompProg; - if(compExt == "bz2") - decompProg = "bzip2"; - else if(compExt == "gz") - decompProg = "gzip"; + string decompProg; + + // get the binary name for your used compression type + decompProg = _config->Find(string("Acquire::CompressionTypes::").append(compExt),""); + if(decompProg.empty() == false); // flExtensions returns the full name if no extension is found // this is why we have this complicated compare operation here // FIMXE: add a new flJustExtension() that return "" if no @@ -717,9 +736,9 @@ void pkgAcqIndex::Done(string Message,unsigned long Size,string Hash, Decompression = true; DestFile += ".decomp"; - Desc.URI = string(decompProg) + ":" + FileName; + Desc.URI = decompProg + ":" + FileName; QueueURI(Desc); - Mode = decompProg; + Mode = decompProg.c_str(); } /*}}}*/ // AcqIndexTrans::pkgAcqIndexTrans - Constructor /*{{{*/ diff --git a/apt-pkg/acquire-item.h b/apt-pkg/acquire-item.h index 36a926a0f..3f073de5b 100644 --- a/apt-pkg/acquire-item.h +++ b/apt-pkg/acquire-item.h @@ -540,7 +540,9 @@ class pkgAcqIndex : public pkgAcquire::Item * * \param compressExt The compression-related extension with which * this index file should be downloaded, or "" to autodetect - * (".bz2" is used if bzip2 is installed, ".gz" otherwise). + * Compression types can be set with config Acquire::CompressionTypes, + * default is ".lzma" or ".bz2" (if the needed binaries are present) + * fallback is ".gz" or none. */ pkgAcqIndex(pkgAcquire *Owner,string URI,string URIDesc, string ShortDesc, HashString ExpectedHash, string compressExt=""); @@ -569,12 +571,6 @@ class pkgAcqIndexTrans : public pkgAcqIndex * \param URIDesc A "URI-style" description of this index file. * * \param ShortDesc A brief description of this index file. - * - * \param ExpectedHash The expected hashsum of this index file. - * - * \param compressExt The compression-related extension with which - * this index file should be downloaded, or "" to autodetect - * (".bz2" is used if bzip2 is installed, ".gz" otherwise). */ pkgAcqIndexTrans(pkgAcquire *Owner,string URI,string URIDesc, string ShortDesc); diff --git a/apt-pkg/init.cc b/apt-pkg/init.cc index 63caade36..46017bf0c 100644 --- a/apt-pkg/init.cc +++ b/apt-pkg/init.cc @@ -103,7 +103,29 @@ bool pkgInitConfig(Configuration &Cnf) if (Res == false) return false; - + + // we load all config files, now check the configs and setup post-defaults: + // * check for CompressionTypes setup + { + Configuration::Item const *Opts = _config->Tree("Acquire::CompressionTypes"); + if (Opts != 0) + Opts = Opts->Child; + bool foundLzma=false, foundBzip2=false, foundGzip=false; + for (; Opts != 0; Opts = Opts->Next) + { + if (Opts->Value == "lzma") foundLzma = true; + else if (Opts->Value == "bz2") foundBzip2 = true; + else if (Opts->Value == "gz") foundGzip = true; + } + if (!foundBzip2) Cnf.Set("Acquire::CompressionTypes::bz2","bzip2"); + if (!foundLzma) Cnf.Set("Acquire::CompressionTypes::lzma","lzma"); + if (!foundGzip) Cnf.Set("Acquire::CompressionTypes::gz","gzip"); + Cnf.CndSet("Dir::Bin::lzma", "/usr/bin/lzma"); + Cnf.CndSet("Dir::Bin::bzip2", "/bin/bzip2"); + } + + + if (Cnf.FindB("Debug::pkgInitConfig",false) == true) Cnf.Dump(); diff --git a/debian/changelog b/debian/changelog index fa2a3f612..16394b067 100644 --- a/debian/changelog +++ b/debian/changelog @@ -16,6 +16,15 @@ apt (0.7.22.3) unstable; urgency=low - use sizeof instead strlen (by Marius Vollmer, Closes: #504325) * doc/apt-mark.8.xml: - improve manpage based on patch by Carl Chenet (Closes: #510286) + * apt-pkg/acquire-item.cc: + - use configsettings for dynamic compression type use and order. + Based on a patch by Jyrki Muukkonen, thanks! (LP: #71746) + * apt-pkg/init.cc: + - add default configuration for compression types and add lzma + support. Order is now bzip2, lzma, gzip, none (Closes: #510526) + * ftparchive/writer.cc: + - add lzma support also here, patch for this (and inspiration for + the one above) by Robert Millan, thanks! [ George Danchev ] * cmdline/apt-cache.cc: diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml index 85a7d961c..d347bda67 100644 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@ -303,6 +303,20 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; + CompressionTypes + List of compression types which are understood by the acquire methods. + Files like Packages can be available in various compression formats. + This list defines in which order the acquire methods will try to download these files. + Per default bzip2 compressed files will be prefered over + lzma, gzip and uncompressed files. The syntax for + the configuration fileentry (this option can't be set at runtime with the -o option) is + Acquire::CompressionTypes::FileExtension "Methodname"; + e.g. Acquire::CompressionTypes::bz2 "bzip2"; + Note that at runtime the Dir::Bin::Methodname will + be checked: If this setting exists the method will only be used if this file exists, e.g. for + the bzip2 method above (the inbuilt) setting is Dir::Bin::bzip2 "/bin/bzip2"; + + @@ -337,6 +351,7 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; Binary programs are pointed to by Dir::Bin. Dir::Bin::Methods specifies the location of the method handlers and gzip, + bzip2, lzma, dpkg, apt-get dpkg-source dpkg-buildpackage and apt-cache specify the location of the respective programs. diff --git a/ftparchive/writer.cc b/ftparchive/writer.cc index 9d248ab86..293e851f5 100644 --- a/ftparchive/writer.cc +++ b/ftparchive/writer.cc @@ -815,9 +815,11 @@ ReleaseWriter::ReleaseWriter(string DB) AddPattern("Packages"); AddPattern("Packages.gz"); AddPattern("Packages.bz2"); + AddPattern("Packages.lzma"); AddPattern("Sources"); AddPattern("Sources.gz"); AddPattern("Sources.bz2"); + AddPattern("Sources.lzma"); AddPattern("Release"); AddPattern("md5sum.txt"); diff --git a/po/apt-all.pot b/po/apt-all.pot index 3ec999f76..8f3d4cf60 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: 2009-08-09 10:20+0200\n" +"POT-Creation-Date: 2009-08-10 23:54+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2364,12 +2364,12 @@ msgstr "" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" -#: apt-pkg/init.cc:132 +#: apt-pkg/init.cc:154 #, c-format msgid "Packaging system '%s' is not supported" msgstr "" -#: apt-pkg/init.cc:148 +#: apt-pkg/init.cc:170 msgid "Unable to determine a suitable packaging system type" msgstr "" @@ -2506,35 +2506,35 @@ msgstr "" msgid "MD5Sum mismatch" msgstr "" -#: apt-pkg/acquire-item.cc:644 apt-pkg/acquire-item.cc:1406 +#: apt-pkg/acquire-item.cc:663 apt-pkg/acquire-item.cc:1425 msgid "Hash Sum mismatch" msgstr "" -#: apt-pkg/acquire-item.cc:1101 +#: apt-pkg/acquire-item.cc:1120 msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: apt-pkg/acquire-item.cc:1211 +#: apt-pkg/acquire-item.cc:1230 #, 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:1270 +#: apt-pkg/acquire-item.cc:1289 #, 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:1311 +#: apt-pkg/acquire-item.cc:1330 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: apt-pkg/acquire-item.cc:1398 +#: apt-pkg/acquire-item.cc:1417 msgid "Size mismatch" msgstr "" -- cgit v1.2.3 From 83cb4069352c9e30482dcbb75a5c60de26a3cf90 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 12 Aug 2009 01:07:54 +0200 Subject: With the introduction of the Is{Delete,Install}Ok hooks the apt flag --ignore-hold only works partly: The holds are to strongly enforced in these hooks - this commit brings the old (and expected) behaviour back. [apt-pkg/depcache.cc] - restore the --ignore-hold effect in the Is{Delete,Install}Ok hooks --- apt-pkg/depcache.cc | 4 ++-- debian/changelog | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apt-pkg/depcache.cc b/apt-pkg/depcache.cc index 13abbe5ed..228750b74 100644 --- a/apt-pkg/depcache.cc +++ b/apt-pkg/depcache.cc @@ -823,7 +823,7 @@ void pkgDepCache::MarkDelete(PkgIterator const &Pkg, bool rPurge, bool pkgDepCache::IsDeleteOk(PkgIterator const &Pkg,bool rPurge, unsigned long Depth, bool FromUser) { - if (FromUser == false && Pkg->SelectedState == pkgCache::State::Hold) + if (FromUser == false && Pkg->SelectedState == pkgCache::State::Hold && _config->FindB("APT::Ignore-Hold",false) == false) { if (DebugMarker == true) std::clog << OutputInDepth(Depth) << "Hold prevents MarkDelete of " << Pkg << " FU=" << FromUser << std::endl; @@ -1085,7 +1085,7 @@ void pkgDepCache::MarkInstall(PkgIterator const &Pkg,bool AutoInst, bool pkgDepCache::IsInstallOk(PkgIterator const &Pkg,bool AutoInst, unsigned long Depth, bool FromUser) { - if (FromUser == false && Pkg->SelectedState == pkgCache::State::Hold) + if (FromUser == false && Pkg->SelectedState == pkgCache::State::Hold && _config->FindB("APT::Ignore-Hold",false) == false) { if (DebugMarker == true) std::clog << OutputInDepth(Depth) << "Hold prevents MarkInstall of " << Pkg << " FU=" << FromUser << std::endl; diff --git a/debian/changelog b/debian/changelog index 16394b067..0f7669930 100644 --- a/debian/changelog +++ b/debian/changelog @@ -25,6 +25,8 @@ apt (0.7.22.3) unstable; urgency=low * ftparchive/writer.cc: - add lzma support also here, patch for this (and inspiration for the one above) by Robert Millan, thanks! + * apt-pkg/depcache.cc: + - restore the --ignore-hold effect in the Is{Delete,Install}Ok hooks [ George Danchev ] * cmdline/apt-cache.cc: -- cgit v1.2.3 From 619596fcd20e3fda2ab352103cfeb9437015dfbc Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 12 Aug 2009 13:17:36 +0200 Subject: [cmdline/apt-get.cc] - use SourceVersion instead of the BinaryVersion to get the source Patch by Matt Kraai, thanks! (Closes: #382826) --- cmdline/apt-get.cc | 5 ++- debian/changelog | 2 + po/apt-all.pot | 118 ++++++++++++++++++++++++++--------------------------- 3 files changed, 65 insertions(+), 60 deletions(-) diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 34ffaf11a..71566fd55 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1255,7 +1255,10 @@ pkgSrcRecords::Parser *FindSrc(const char *Name,pkgRecords &Recs, //std::cout << VF.File().Archive() << std::endl; if(VF.File().Archive() && (VF.File().Archive() == DefRel)) { - VerTag = Ver.VerStr(); + pkgRecords::Parser &Parse = Recs.Lookup(VF); + VerTag = Parse.SourceVer(); + if (VerTag.empty()) + VerTag = Ver.VerStr(); break; } } diff --git a/debian/changelog b/debian/changelog index 0f7669930..3407cdcec 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,8 @@ apt (0.7.22.3) unstable; urgency=low - ShowBroken() in build-dep (by Mike O'Connor, Closes: #145916) - check for statfs.f_type (by Robert Millan, Closes: #509313) - correct the order of picked package binary vs source in source + - use SourceVersion instead of the BinaryVersion to get the source + Patch by Matt Kraai, thanks! (Closes: #382826) * apt-pkg/contrib/strutl.cc: - enable thousand separator according to the current locale (by Luca Bruno, Closes: #223712) diff --git a/po/apt-all.pot b/po/apt-all.pot index 8f3d4cf60..767d9f060 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: 2009-08-10 23:54+0200\n" +"POT-Creation-Date: 2009-08-12 13:14+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -151,7 +151,7 @@ msgstr "" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2615 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2618 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "" @@ -549,7 +549,7 @@ msgstr "" msgid "Y" msgstr "" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1687 #, c-format msgid "Regex compilation error - %s" msgstr "" @@ -708,11 +708,11 @@ msgstr "" msgid "Internal error, Ordering didn't finish" msgstr "" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2026 cmdline/apt-get.cc:2059 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2029 cmdline/apt-get.cc:2062 msgid "Unable to lock the download directory" msgstr "" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2107 cmdline/apt-get.cc:2356 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2110 cmdline/apt-get.cc:2359 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "" @@ -741,7 +741,7 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2202 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2205 #, c-format msgid "Couldn't determine free space in %s" msgstr "" @@ -775,7 +775,7 @@ msgstr "" msgid "Do you want to continue [Y/n]? " msgstr "" -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2253 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2256 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "" @@ -784,7 +784,7 @@ msgstr "" msgid "Some files failed to download" msgstr "" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2262 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2265 msgid "Download complete and in download only mode" msgstr "" @@ -876,39 +876,39 @@ msgstr "" msgid "Selected version %s (%s) for %s\n" msgstr "" -#: cmdline/apt-get.cc:1312 +#: cmdline/apt-get.cc:1315 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1349 +#: cmdline/apt-get.cc:1352 msgid "The update command takes no arguments" msgstr "" -#: cmdline/apt-get.cc:1362 +#: cmdline/apt-get.cc:1365 msgid "Unable to lock the list directory" msgstr "" -#: cmdline/apt-get.cc:1418 +#: cmdline/apt-get.cc:1421 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1467 +#: cmdline/apt-get.cc:1470 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" -#: cmdline/apt-get.cc:1469 +#: cmdline/apt-get.cc:1472 #, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" -#: cmdline/apt-get.cc:1470 +#: cmdline/apt-get.cc:1473 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1475 +#: cmdline/apt-get.cc:1478 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -924,49 +924,49 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1478 cmdline/apt-get.cc:1768 +#: cmdline/apt-get.cc:1481 cmdline/apt-get.cc:1771 msgid "The following information may help to resolve the situation:" msgstr "" -#: cmdline/apt-get.cc:1482 +#: cmdline/apt-get.cc:1485 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: cmdline/apt-get.cc:1501 +#: cmdline/apt-get.cc:1504 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1556 +#: cmdline/apt-get.cc:1559 #, c-format msgid "Couldn't find task %s" msgstr "" -#: cmdline/apt-get.cc:1671 cmdline/apt-get.cc:1707 +#: cmdline/apt-get.cc:1674 cmdline/apt-get.cc:1710 #, c-format msgid "Couldn't find package %s" msgstr "" -#: cmdline/apt-get.cc:1694 +#: cmdline/apt-get.cc:1697 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "" -#: cmdline/apt-get.cc:1725 +#: cmdline/apt-get.cc:1728 #, c-format msgid "%s set to manually installed.\n" msgstr "" -#: cmdline/apt-get.cc:1738 +#: cmdline/apt-get.cc:1741 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" -#: cmdline/apt-get.cc:1741 +#: cmdline/apt-get.cc:1744 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -#: cmdline/apt-get.cc:1753 +#: cmdline/apt-get.cc:1756 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" @@ -974,152 +974,152 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1771 +#: cmdline/apt-get.cc:1774 msgid "Broken packages" msgstr "" -#: cmdline/apt-get.cc:1800 +#: cmdline/apt-get.cc:1803 msgid "The following extra packages will be installed:" msgstr "" -#: cmdline/apt-get.cc:1889 +#: cmdline/apt-get.cc:1892 msgid "Suggested packages:" msgstr "" -#: cmdline/apt-get.cc:1890 +#: cmdline/apt-get.cc:1893 msgid "Recommended packages:" msgstr "" -#: cmdline/apt-get.cc:1919 +#: cmdline/apt-get.cc:1922 msgid "Calculating upgrade... " msgstr "" -#: cmdline/apt-get.cc:1922 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1925 methods/ftp.cc:702 methods/connect.cc:112 msgid "Failed" msgstr "" -#: cmdline/apt-get.cc:1927 +#: cmdline/apt-get.cc:1930 msgid "Done" msgstr "" -#: cmdline/apt-get.cc:1994 cmdline/apt-get.cc:2002 +#: cmdline/apt-get.cc:1997 cmdline/apt-get.cc:2005 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:2102 +#: cmdline/apt-get.cc:2105 msgid "Must specify at least one package to fetch source for" msgstr "" -#: cmdline/apt-get.cc:2132 cmdline/apt-get.cc:2374 +#: cmdline/apt-get.cc:2135 cmdline/apt-get.cc:2377 #, c-format msgid "Unable to find a source package for %s" msgstr "" -#: cmdline/apt-get.cc:2181 +#: cmdline/apt-get.cc:2184 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: cmdline/apt-get.cc:2212 +#: cmdline/apt-get.cc:2215 #, c-format msgid "You don't have enough free space in %s" msgstr "" -#: cmdline/apt-get.cc:2218 +#: cmdline/apt-get.cc:2221 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2221 +#: cmdline/apt-get.cc:2224 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2227 +#: cmdline/apt-get.cc:2230 #, c-format msgid "Fetch source %s\n" msgstr "" -#: cmdline/apt-get.cc:2258 +#: cmdline/apt-get.cc:2261 msgid "Failed to fetch some archives." msgstr "" -#: cmdline/apt-get.cc:2286 +#: cmdline/apt-get.cc:2289 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2298 +#: cmdline/apt-get.cc:2301 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2299 +#: cmdline/apt-get.cc:2302 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2316 +#: cmdline/apt-get.cc:2319 #, c-format msgid "Build command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2335 +#: cmdline/apt-get.cc:2338 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2351 +#: cmdline/apt-get.cc:2354 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2379 +#: cmdline/apt-get.cc:2382 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2399 +#: cmdline/apt-get.cc:2402 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:2451 +#: cmdline/apt-get.cc:2454 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:2504 +#: cmdline/apt-get.cc:2507 #, 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:2540 +#: cmdline/apt-get.cc:2543 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:2567 +#: cmdline/apt-get.cc:2570 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:2583 +#: cmdline/apt-get.cc:2586 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:2588 +#: cmdline/apt-get.cc:2591 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:2620 +#: cmdline/apt-get.cc:2623 msgid "Supported modules:" msgstr "" -#: cmdline/apt-get.cc:2661 +#: cmdline/apt-get.cc:2664 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1163,7 +1163,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:2828 +#: cmdline/apt-get.cc:2831 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" -- cgit v1.2.3 From ebf6c42d9db4766c315ea15f25c4a7a9a799660b Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 12 Aug 2009 14:52:43 +0200 Subject: Add the pkg/release syntax to the source command in apt-get and also add the understanding for codenames instead of archives here [cmdline/apt-get.cc] - add pkg/archive and codename in source (Closes: #414105, #441178) --- cmdline/apt-get.cc | 22 ++++++---- debian/changelog | 1 + po/apt-all.pot | 118 ++++++++++++++++++++++++++--------------------------- 3 files changed, 75 insertions(+), 66 deletions(-) diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 71566fd55..1582fff85 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1220,17 +1220,25 @@ pkgSrcRecords::Parser *FindSrc(const char *Name,pkgRecords &Recs, { // We want to pull the version off the package specification.. string VerTag; + string DefRel; string TmpSrc = Name; - string::size_type Slash = TmpSrc.rfind('='); + const size_t found = TmpSrc.find_last_of("/="); // honor default release - string DefRel = _config->Find("APT::Default-Release"); + if (found != string::npos && TmpSrc[found] == '/') + { + DefRel = TmpSrc.substr(found+1); + TmpSrc = TmpSrc.substr(0,found); + } + else + DefRel = _config->Find("APT::Default-Release"); + pkgCache::PkgIterator Pkg = Cache.FindPkg(TmpSrc); - if (Slash != string::npos) + if (found != string::npos && TmpSrc[found] == '=') { - VerTag = string(TmpSrc.begin() + Slash + 1,TmpSrc.end()); - TmpSrc = string(TmpSrc.begin(),TmpSrc.begin() + Slash); + VerTag = TmpSrc.substr(found+1); + TmpSrc = TmpSrc.substr(0,found); } else if(!Pkg.end() && DefRel.empty() == false) { @@ -1252,8 +1260,8 @@ pkgSrcRecords::Parser *FindSrc(const char *Name,pkgRecords &Recs, pkgCache::Flag::NotSource && Pkg.CurrentVer() != Ver) continue; - //std::cout << VF.File().Archive() << std::endl; - if(VF.File().Archive() && (VF.File().Archive() == DefRel)) + if((VF.File().Archive() != 0 && VF.File().Archive() == DefRel) || + (VF.File().Codename() != 0 && VF.File().Codename() == DefRel)) { pkgRecords::Parser &Parse = Recs.Lookup(VF); VerTag = Parse.SourceVer(); diff --git a/debian/changelog b/debian/changelog index 3407cdcec..7dbbcdf7a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,7 @@ apt (0.7.22.3) unstable; urgency=low - correct the order of picked package binary vs source in source - use SourceVersion instead of the BinaryVersion to get the source Patch by Matt Kraai, thanks! (Closes: #382826) + - add pkg/archive and codename in source (Closes: #414105, #441178) * apt-pkg/contrib/strutl.cc: - enable thousand separator according to the current locale (by Luca Bruno, Closes: #223712) diff --git a/po/apt-all.pot b/po/apt-all.pot index 767d9f060..b20a3fd92 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: 2009-08-12 13:14+0200\n" +"POT-Creation-Date: 2009-08-12 14:46+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -151,7 +151,7 @@ msgstr "" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2618 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "" @@ -549,7 +549,7 @@ msgstr "" msgid "Y" msgstr "" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1687 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "" @@ -708,11 +708,11 @@ msgstr "" msgid "Internal error, Ordering didn't finish" msgstr "" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2029 cmdline/apt-get.cc:2062 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2110 cmdline/apt-get.cc:2359 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "" @@ -741,7 +741,7 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2205 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "" @@ -775,7 +775,7 @@ msgstr "" msgid "Do you want to continue [Y/n]? " msgstr "" -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2256 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "" @@ -784,7 +784,7 @@ msgstr "" msgid "Some files failed to download" msgstr "" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2265 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "" @@ -876,39 +876,39 @@ msgstr "" msgid "Selected version %s (%s) for %s\n" msgstr "" -#: cmdline/apt-get.cc:1315 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1352 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "" -#: cmdline/apt-get.cc:1365 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "" -#: cmdline/apt-get.cc:1421 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1470 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" -#: cmdline/apt-get.cc:1472 +#: cmdline/apt-get.cc:1480 #, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" -#: cmdline/apt-get.cc:1473 +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -924,49 +924,49 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1481 cmdline/apt-get.cc:1771 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "" -#: cmdline/apt-get.cc:1485 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: cmdline/apt-get.cc:1504 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1559 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "" -#: cmdline/apt-get.cc:1674 cmdline/apt-get.cc:1710 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "" -#: cmdline/apt-get.cc:1697 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "" -#: cmdline/apt-get.cc:1728 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "" -#: cmdline/apt-get.cc:1741 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" -#: cmdline/apt-get.cc:1744 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -#: cmdline/apt-get.cc:1756 +#: cmdline/apt-get.cc:1764 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" @@ -974,152 +974,152 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1774 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "" -#: cmdline/apt-get.cc:1803 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "" -#: cmdline/apt-get.cc:1892 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "" -#: cmdline/apt-get.cc:1893 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "" -#: cmdline/apt-get.cc:1922 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "" -#: cmdline/apt-get.cc:1925 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:702 methods/connect.cc:112 msgid "Failed" msgstr "" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "" -#: cmdline/apt-get.cc:1997 cmdline/apt-get.cc:2005 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:2105 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "" -#: cmdline/apt-get.cc:2135 cmdline/apt-get.cc:2377 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "" -#: cmdline/apt-get.cc:2184 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: cmdline/apt-get.cc:2215 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "" -#: cmdline/apt-get.cc:2221 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2224 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2230 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "" -#: cmdline/apt-get.cc:2261 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "" -#: cmdline/apt-get.cc:2289 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2301 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2302 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2319 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2338 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2354 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2382 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2402 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:2454 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:2507 +#: cmdline/apt-get.cc:2515 #, 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:2543 +#: cmdline/apt-get.cc:2551 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:2570 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:2586 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:2623 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "" -#: cmdline/apt-get.cc:2664 +#: cmdline/apt-get.cc:2672 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1163,7 +1163,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:2831 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" -- cgit v1.2.3 From 90c2436367d7c136467296d7726e6934bd65fe66 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 12 Aug 2009 17:13:18 +0200 Subject: [doc/apt-get.8.xml] - update the source description to reflect what it actually does and how it can be used. (Closes: #413021) --- debian/changelog | 3 +++ doc/apt-get.8.xml | 39 +++++++++++++++++++++++++++++---------- 2 files changed, 32 insertions(+), 10 deletions(-) diff --git a/debian/changelog b/debian/changelog index 7dbbcdf7a..597ca91ff 100644 --- a/debian/changelog +++ b/debian/changelog @@ -30,6 +30,9 @@ apt (0.7.22.3) unstable; urgency=low the one above) by Robert Millan, thanks! * apt-pkg/depcache.cc: - restore the --ignore-hold effect in the Is{Delete,Install}Ok hooks + * doc/apt-get.8.xml: + - update the source description to reflect what it actually does + and how it can be used. (Closes: #413021) [ George Danchev ] * cmdline/apt-cache.cc: diff --git a/doc/apt-get.8.xml b/doc/apt-get.8.xml index 920f6b36e..8db2883c4 100644 --- a/doc/apt-get.8.xml +++ b/doc/apt-get.8.xml @@ -85,9 +85,19 @@ purge pkg source pkg - - =pkg_version_number - + + + + =pkg_version_number + + + /target_release_name + + + /target_release_codename + + + build-dep pkg @@ -240,13 +250,22 @@ source causes apt-get 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 deb-src 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. + newest available version of that source package while respect the + default release, set with the option APT::Default-Release, + the option or per package with with the + pkg/release syntax, if possible. + + Source packages are tracked separately + from binary packages via deb-src type lines + in the &sources-list; file. This means that you will need to add such a line + for each repository you want to get sources 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. + + If the options is specified + then the package will be compiled to a binary .deb using + dpkg-buildpackage, if + is specified then the source package will not be unpacked. A specific source version can be retrieved by postfixing the source name with an equals and then the version to fetch, similar to the mechanism -- cgit v1.2.3 From dda7233c5d3879f2580543ead0ad7cd76196a160 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Tue, 18 Aug 2009 20:15:13 +0200 Subject: Allow empty Reason-Phase in the Status-Lines, which is allowed by rtf http://www.w3.org/Protocols/rfc2616/rfc2616.html . Fixed by removing a space which will now be visibly in the errormessages, but as this errors should never happen anyway and an extra space doesn't harm we don't removed it. * methods/http.cc: - allow empty Reason-Phase in Status-Line to please squid, thanks Modestas Vainius for noticing! (Closes: #531157, LP: #411435) --- debian/changelog | 3 +++ methods/http.cc | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 597ca91ff..4923f913f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -33,6 +33,9 @@ apt (0.7.22.3) unstable; urgency=low * doc/apt-get.8.xml: - update the source description to reflect what it actually does and how it can be used. (Closes: #413021) + * methods/http.cc: + - allow empty Reason-Phase in Status-Line to please squid, + thanks Modestas Vainius for noticing! (Closes: #531157, LP: #411435) [ George Danchev ] * cmdline/apt-cache.cc: diff --git a/methods/http.cc b/methods/http.cc index 006e89394..df62034e3 100644 --- a/methods/http.cc +++ b/methods/http.cc @@ -547,7 +547,7 @@ bool ServerState::HeaderLine(string Line) // Evil servers return no version if (Line[4] == '/') { - if (sscanf(Line.c_str(),"HTTP/%u.%u %u %[^\n]",&Major,&Minor, + if (sscanf(Line.c_str(),"HTTP/%u.%u %u%[^\n]",&Major,&Minor, &Result,Code) != 4) return _error->Error(_("The HTTP server sent an invalid reply header")); } @@ -555,7 +555,7 @@ bool ServerState::HeaderLine(string Line) { Major = 0; Minor = 9; - if (sscanf(Line.c_str(),"HTTP %u %[^\n]",&Result,Code) != 2) + if (sscanf(Line.c_str(),"HTTP %u%[^\n]",&Result,Code) != 2) return _error->Error(_("The HTTP server sent an invalid reply header")); } -- cgit v1.2.3 From e878aedb8b53b311295a2df55ce5e865b1ad92b9 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Tue, 25 Aug 2009 15:32:40 +0200 Subject: "backport" the APT::Configuration class to apt-sid We can use it to simplify the internal code to operate with Acquire::CompressionTypes group. This also made it possible to set this setting with the -o flag. --- apt-pkg/acquire-item.cc | 62 ++++++++++++++--------------------- apt-pkg/aptconfiguration.cc | 78 +++++++++++++++++++++++++++++++++++++++++++++ apt-pkg/aptconfiguration.h | 46 ++++++++++++++++++++++++++ apt-pkg/init.cc | 22 ------------- apt-pkg/makefile | 5 +-- doc/apt.conf.5.xml | 2 +- po/apt-all.pot | 22 ++++++------- 7 files changed, 163 insertions(+), 74 deletions(-) create mode 100644 apt-pkg/aptconfiguration.cc create mode 100644 apt-pkg/aptconfiguration.h diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index ffbe66d7d..94341c81a 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -15,6 +15,7 @@ // Include Files /*{{{*/ #include #include +#include #include #include #include @@ -551,21 +552,11 @@ pkgAcqIndex::pkgAcqIndex(pkgAcquire *Owner, if(comprExt.empty()) { // autoselect the compression method - Configuration::Item const *Opts = _config->Tree("Acquire::CompressionTypes"); - if (Opts != 0) - Opts = Opts->Child; - - const char dirBin[] = "Dir::Bin::"; - for (; Opts != 0; Opts = Opts->Next) - { - if (Opts->Tag.empty() == true || Opts->Value.empty() == true) - continue; - const string bin = _config->FindFile(string(dirBin).append(Opts->Value).c_str(),""); - if (bin != "" && !FileExists(bin)) - continue; - comprExt = '.' + Opts->Tag; - break; - } + std::vector types = APT::Configuration::getCompressionTypes(); + if (types.empty() == true) + comprExt = "plain"; + else + comprExt = "." + types[0]; } CompressionExtension = ((comprExt == "plain" || comprExt == ".") ? "" : comprExt); @@ -595,36 +586,31 @@ string pkgAcqIndex::Custom600Headers() /*}}}*/ void pkgAcqIndex::Failed(string Message,pkgAcquire::MethodConfig *Cnf) /*{{{*/ { - Configuration::Item const *Opts = _config->Tree("Acquire::CompressionTypes"); - if (Opts != 0) - Opts = Opts->Child; + std::vector types = APT::Configuration::getCompressionTypes(); - const char dirBin[] = "Dir::Bin::"; - for (; Opts != 0; Opts = Opts->Next) + for (std::vector::const_iterator t = types.begin(); + t != types.end(); t++) { - if (Opts->Tag.empty() == true || Opts->Value.empty() == true) + // jump over all already tried compression types + const unsigned int nameLen = Desc.URI.size() - (*t).size(); + if(Desc.URI.substr(nameLen) != *t) continue; - // jump over all already checked compression types - const unsigned int nameLen = Desc.URI.size() - Opts->Tag.size(); - if(Desc.URI.substr(nameLen) != Opts->Tag || Opts->Next == 0) - continue; - - // check if we need an external binary for this compression type - const string bin = _config->FindFile(string(dirBin).append(Opts->Next->Value).c_str(),""); - if (bin != "" && !FileExists(bin)) - continue; + // we want to try it with the next extension + t++; - // retry with the next extension - Desc.URI = Desc.URI.substr(0, nameLen) + Opts->Next->Tag; + if (t != types.end()) + { + Desc.URI = Desc.URI.substr(0, nameLen) + *t; - new pkgAcqIndex(Owner, RealURI, Desc.Description, Desc.ShortDesc, - ExpectedHash, string(".").append(Opts->Next->Tag)); + new pkgAcqIndex(Owner, RealURI, Desc.Description, Desc.ShortDesc, + ExpectedHash, string(".").append(*t)); - Status = StatDone; - Complete = false; - Dequeue(); - return; + Status = StatDone; + Complete = false; + Dequeue(); + return; + } } // on decompression failure, remove bad versions in partial/ diff --git a/apt-pkg/aptconfiguration.cc b/apt-pkg/aptconfiguration.cc new file mode 100644 index 000000000..1a8e8262f --- /dev/null +++ b/apt-pkg/aptconfiguration.cc @@ -0,0 +1,78 @@ +// -*- mode: cpp; mode: fold -*- +// Description /*{{{*/ +/* ###################################################################### + + Provide access methods to various configuration settings, + setup defaults and returns validate settings. + + ##################################################################### */ + /*}}}*/ +// Include Files /*{{{*/ +#include +#include +#include + +#include +#include + /*}}}*/ +namespace APT { +// getCompressionTypes - Return Vector of usbale compressiontypes /*{{{*/ +// --------------------------------------------------------------------- +/* return a vector of compression types in the prefered order. */ +std::vector +const Configuration::getCompressionTypes(bool const &Cached) { + static std::vector types; + if (types.empty() == false) { + if (Cached == true) + return types; + else + types.clear(); + } + + // Set default application paths to check for optional compression types + _config->CndSet("Dir::Bin::lzma", "/usr/bin/lzma"); + _config->CndSet("Dir::Bin::bzip2", "/bin/bzip2"); + + ::Configuration::Item const *Opts = _config->Tree("Acquire::CompressionTypes"); + if (Opts != 0) + Opts = Opts->Child; + + // at first, move over the options to setup at least the default options + bool foundLzma=false, foundBzip2=false, foundGzip=false; + for (; Opts != 0; Opts = Opts->Next) { + if (Opts->Value == "lzma") + foundLzma = true; + else if (Opts->Value == "bz2") + foundBzip2 = true; + else if (Opts->Value == "gz") + foundGzip = true; + } + + // setup the defaults now + if (!foundBzip2) + _config->Set("Acquire::CompressionTypes::bz2","bzip2"); + if (!foundLzma) + _config->Set("Acquire::CompressionTypes::lzma","lzma"); + if (!foundGzip) + _config->Set("Acquire::CompressionTypes::gz","gzip"); + + // move again over the option tree to finially calculate our result + ::Configuration::Item const *Types = _config->Tree("Acquire::CompressionTypes"); + if (Types != 0) + Types = Types->Child; + + for (; Types != 0; Types = Types->Next) { + string const appsetting = string("Dir::Bin::").append(Types->Value); + // ignore compression types we have no app ready to use + if (appsetting.empty() == false && _config->Exists(appsetting) == true) { + std::string const app = _config->FindFile(appsetting.c_str(), ""); + if (app.empty() == false && FileExists(app) == false) + continue; + } + types.push_back(Types->Tag); + } + + return types; +} + /*}}}*/ +} diff --git a/apt-pkg/aptconfiguration.h b/apt-pkg/aptconfiguration.h new file mode 100644 index 000000000..6a123adce --- /dev/null +++ b/apt-pkg/aptconfiguration.h @@ -0,0 +1,46 @@ +// -*- mode: cpp; mode: fold -*- +// Description /*{{{*/ +/** \class APT::Configuration + * \brief Provide access methods to various configuration settings + * + * This class and their methods providing a layer around the usual access + * methods with _config to ensure that settings are correct and to be able + * to set defaults without the need to recheck it in every method again. + */ + /*}}}*/ +#ifndef APT_CONFIGURATION_H +#define APT_CONFIGURATION_H +// Include Files /*{{{*/ +#include +#include + /*}}}*/ +namespace APT { +class Configuration { /*{{{*/ +public: /*{{{*/ + /** \brief Returns a vector of usable Compression Types + * + * Files can be compressed in various ways to decrease the size of the + * download. Therefore the Acquiremethods support a few compression types + * and some archives provide also a few different types. This option + * group exists to give the user the choice to prefer one type over the + * other (some compression types are very resource intensive - great if you + * have a limited download, bad if you have a really lowpowered hardware.) + * + * This method ensures that the defaults are set and checks at runtime + * if the type can be used. E.g. the current default is to prefer bzip2 + * over lzma and gz - if the bzip2 binary is not available it has not much + * sense in downloading the bz2 file, therefore we will not return bz2 as + * a usable compression type. The availability is checked with the settings + * in the Dir::Bin group. + * + * \param Cached saves the result so we need to calculated it only once + * this parameter should ony be used for testing purposes. + * + * \return a vector of (all) Language Codes in the prefered usage order + */ + std::vector static const getCompressionTypes(bool const &Cached = true); + /*}}}*/ +}; + /*}}}*/ +} +#endif diff --git a/apt-pkg/init.cc b/apt-pkg/init.cc index 46017bf0c..15efb1a3d 100644 --- a/apt-pkg/init.cc +++ b/apt-pkg/init.cc @@ -104,28 +104,6 @@ bool pkgInitConfig(Configuration &Cnf) if (Res == false) return false; - // we load all config files, now check the configs and setup post-defaults: - // * check for CompressionTypes setup - { - Configuration::Item const *Opts = _config->Tree("Acquire::CompressionTypes"); - if (Opts != 0) - Opts = Opts->Child; - bool foundLzma=false, foundBzip2=false, foundGzip=false; - for (; Opts != 0; Opts = Opts->Next) - { - if (Opts->Value == "lzma") foundLzma = true; - else if (Opts->Value == "bz2") foundBzip2 = true; - else if (Opts->Value == "gz") foundGzip = true; - } - if (!foundBzip2) Cnf.Set("Acquire::CompressionTypes::bz2","bzip2"); - if (!foundLzma) Cnf.Set("Acquire::CompressionTypes::lzma","lzma"); - if (!foundGzip) Cnf.Set("Acquire::CompressionTypes::gz","gzip"); - Cnf.CndSet("Dir::Bin::lzma", "/usr/bin/lzma"); - Cnf.CndSet("Dir::Bin::bzip2", "/bin/bzip2"); - } - - - if (Cnf.FindB("Debug::pkgInitConfig",false) == true) Cnf.Dump(); diff --git a/apt-pkg/makefile b/apt-pkg/makefile index 92ef58967..679d97e70 100644 --- a/apt-pkg/makefile +++ b/apt-pkg/makefile @@ -34,14 +34,15 @@ SOURCE+= pkgcache.cc version.cc depcache.cc \ acquire-worker.cc acquire-method.cc init.cc clean.cc \ srcrecords.cc cachefile.cc versionmatch.cc policy.cc \ pkgsystem.cc indexfile.cc pkgcachegen.cc acquire-item.cc \ - indexrecords.cc vendor.cc vendorlist.cc cdrom.cc indexcopy.cc + indexrecords.cc vendor.cc vendorlist.cc cdrom.cc indexcopy.cc \ + aptconfiguration.cc HEADERS+= algorithms.h depcache.h pkgcachegen.h cacheiterators.h \ orderlist.h sourcelist.h packagemanager.h tagfile.h \ init.h pkgcache.h version.h progress.h pkgrecords.h \ acquire.h acquire-worker.h acquire-item.h acquire-method.h \ clean.h srcrecords.h cachefile.h versionmatch.h policy.h \ pkgsystem.h indexfile.h metaindex.h indexrecords.h vendor.h \ - vendorlist.h cdrom.h indexcopy.h + vendorlist.h cdrom.h indexcopy.h aptconfiguration.h # Source code for the debian specific components # In theory the deb headers do not need to be exported.. diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml index d347bda67..59235f115 100644 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@ -309,7 +309,7 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; This list defines in which order the acquire methods will try to download these files. Per default bzip2 compressed files will be prefered over lzma, gzip and uncompressed files. The syntax for - the configuration fileentry (this option can't be set at runtime with the -o option) is + the configuration fileentry is Acquire::CompressionTypes::FileExtension "Methodname"; e.g. Acquire::CompressionTypes::bz2 "bzip2"; Note that at runtime the Dir::Bin::Methodname will diff --git a/po/apt-all.pot b/po/apt-all.pot index b20a3fd92..518a3a1c1 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: 2009-08-12 14:46+0200\n" +"POT-Creation-Date: 2009-08-21 11:35+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2364,12 +2364,12 @@ msgstr "" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" -#: apt-pkg/init.cc:154 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "" -#: apt-pkg/init.cc:170 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "" @@ -2497,44 +2497,44 @@ msgstr "" msgid "IO Error saving source cache" msgstr "" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "" -#: apt-pkg/acquire-item.cc:394 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "" -#: apt-pkg/acquire-item.cc:663 apt-pkg/acquire-item.cc:1425 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "" -#: apt-pkg/acquire-item.cc:1120 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: apt-pkg/acquire-item.cc:1230 +#: apt-pkg/acquire-item.cc:1216 #, 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:1289 +#: apt-pkg/acquire-item.cc:1275 #, 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:1330 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: apt-pkg/acquire-item.cc:1417 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "" -- cgit v1.2.3 From 8c75bf9e9558d062a5f3d1fe5276aeffba6403a0 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 26 Aug 2009 12:03:40 +0200 Subject: fix changelog entry for compression types reordering patch to reflect that we now use the new APT::Configuration class for this instead of the init.cc --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 4923f913f..00afc704b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -22,7 +22,7 @@ apt (0.7.22.3) unstable; urgency=low * apt-pkg/acquire-item.cc: - use configsettings for dynamic compression type use and order. Based on a patch by Jyrki Muukkonen, thanks! (LP: #71746) - * apt-pkg/init.cc: + * apt-pkg/aptconfiguration.cc: - add default configuration for compression types and add lzma support. Order is now bzip2, lzma, gzip, none (Closes: #510526) * ftparchive/writer.cc: -- cgit v1.2.3 From f0599b9c2ee704f97dbea17262107c55f527bbf0 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 26 Aug 2009 12:21:54 +0200 Subject: =?UTF-8?q?[=20Nicolas=20Fran=C3=A7ois=20]=20*=20doc/*.=3F.xml=20(?= =?UTF-8?q?manpages):=20=20=20-=20add=20contrib=20to=20author=20tags=20and?= =?UTF-8?q?=20also=20add=20refmiscinfo=20to=20fix=20warnings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- debian/changelog | 4 ++++ doc/apt-cache.8.xml | 1 + doc/apt-cdrom.8.xml | 1 + doc/apt-config.8.xml | 1 + doc/apt-extracttemplates.1.xml | 1 + doc/apt-ftparchive.1.xml | 1 + doc/apt-get.8.xml | 1 + doc/apt-key.8.xml | 1 + doc/apt-mark.8.xml | 1 + doc/apt-secure.8.xml | 1 + doc/apt-sortpkgs.1.xml | 1 + doc/apt.conf.5.xml | 1 + doc/apt.ent | 27 +++++++-------------------- doc/apt_preferences.5.xml | 1 + doc/sources.list.5.xml | 1 + 15 files changed, 24 insertions(+), 20 deletions(-) diff --git a/debian/changelog b/debian/changelog index 4923f913f..ed2c91b0e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -43,6 +43,10 @@ apt (0.7.22.3) unstable; urgency=low * apt-pkg/indexcopy.cc: - fix a memory leak then the Release file not exists (Closes: #511556) + [ Nicolas François ] + * doc/*.?.xml (manpages): + - add contrib to author tags and also add refmiscinfo to fix warnings + -- David Kalnischkies Sat, 08 Aug 2009 09:40:08 +0200 apt (0.7.22.2) unstable; urgency=low diff --git a/doc/apt-cache.8.xml b/doc/apt-cache.8.xml index 6c8938d8c..8b76f55b9 100644 --- a/doc/apt-cache.8.xml +++ b/doc/apt-cache.8.xml @@ -21,6 +21,7 @@ apt-cache 8 + APT diff --git a/doc/apt-cdrom.8.xml b/doc/apt-cdrom.8.xml index 6ab8fad9c..e57942610 100644 --- a/doc/apt-cdrom.8.xml +++ b/doc/apt-cdrom.8.xml @@ -20,6 +20,7 @@ apt-cdrom 8 + APT diff --git a/doc/apt-config.8.xml b/doc/apt-config.8.xml index 39fed5937..d4d36891f 100644 --- a/doc/apt-config.8.xml +++ b/doc/apt-config.8.xml @@ -21,6 +21,7 @@ apt-config 8 + APT diff --git a/doc/apt-extracttemplates.1.xml b/doc/apt-extracttemplates.1.xml index 0f4ac04d9..77b837022 100644 --- a/doc/apt-extracttemplates.1.xml +++ b/doc/apt-extracttemplates.1.xml @@ -21,6 +21,7 @@ apt-extracttemplates 1 + APT diff --git a/doc/apt-ftparchive.1.xml b/doc/apt-ftparchive.1.xml index de7e5f7a3..7131303ae 100644 --- a/doc/apt-ftparchive.1.xml +++ b/doc/apt-ftparchive.1.xml @@ -21,6 +21,7 @@ apt-ftparchive 1 + APT diff --git a/doc/apt-get.8.xml b/doc/apt-get.8.xml index 8db2883c4..b87e17247 100644 --- a/doc/apt-get.8.xml +++ b/doc/apt-get.8.xml @@ -21,6 +21,7 @@ apt-get 8 + APT diff --git a/doc/apt-key.8.xml b/doc/apt-key.8.xml index 4b3e7c220..7b0691b5e 100644 --- a/doc/apt-key.8.xml +++ b/doc/apt-key.8.xml @@ -13,6 +13,7 @@ apt-key 8 + APT diff --git a/doc/apt-mark.8.xml b/doc/apt-mark.8.xml index f078f2de5..35412d7c9 100644 --- a/doc/apt-mark.8.xml +++ b/doc/apt-mark.8.xml @@ -21,6 +21,7 @@ apt-mark 8 + APT diff --git a/doc/apt-secure.8.xml b/doc/apt-secure.8.xml index 9696e018d..20f473f77 100644 --- a/doc/apt-secure.8.xml +++ b/doc/apt-secure.8.xml @@ -13,6 +13,7 @@ apt-secure 8 + APT diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml index 59235f115..2412260e7 100644 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@ -27,6 +27,7 @@ apt.conf 5 + APT diff --git a/doc/apt.ent b/doc/apt.ent index 4cfc00069..43ac2f8e5 100644 --- a/doc/apt.ent +++ b/doc/apt.ent @@ -158,7 +158,10 @@
apt@packages.debian.org
- Jason Gunthorpe + + Jason Gunthorpe + + 1998-2001 Jason Gunthorpe 28 October 2008 Linux @@ -176,6 +179,7 @@ Jason Gunthorpe + "> @@ -183,12 +187,14 @@ Mike O'Connor + "> APT team + "> @@ -196,25 +202,6 @@ Linux "> - - apt@packages.debian.org - -"> - - - Jason - Gunthorpe - -"> - - - APT team - -"> - Jason Gunthorpe diff --git a/doc/apt_preferences.5.xml b/doc/apt_preferences.5.xml index ff63f1dd3..12ea606b7 100644 --- a/doc/apt_preferences.5.xml +++ b/doc/apt_preferences.5.xml @@ -20,6 +20,7 @@ apt_preferences 5 + APT diff --git a/doc/sources.list.5.xml b/doc/sources.list.5.xml index b875086ef..c758be61f 100644 --- a/doc/sources.list.5.xml +++ b/doc/sources.list.5.xml @@ -21,6 +21,7 @@ sources.list 5 + APT -- cgit v1.2.3 From 136f685a47b83a0bfd3e790461eab3856702a3da Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 26 Aug 2009 15:52:22 +0200 Subject: * doc/Doxyfile.in: - update file with doxygen 1.6.1 (current unstable) --- debian/changelog | 2 + doc/Doxyfile.in | 1359 ++++++++++++++++++++++++++++++++---------------------- 2 files changed, 820 insertions(+), 541 deletions(-) diff --git a/debian/changelog b/debian/changelog index ed2c91b0e..0b0d5f87a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -36,6 +36,8 @@ apt (0.7.22.3) unstable; urgency=low * methods/http.cc: - allow empty Reason-Phase in Status-Line to please squid, thanks Modestas Vainius for noticing! (Closes: #531157, LP: #411435) + * doc/Doxyfile.in: + - update file with doxygen 1.6.1 (current unstable) [ George Danchev ] * cmdline/apt-cache.cc: diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index f19ff93f6..19f4c54cc 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -1,4 +1,4 @@ -# Doxyfile 1.4.5 +# Doxyfile 1.6.1 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project @@ -14,536 +14,664 @@ # Project related configuration options #--------------------------------------------------------------------------- -# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# http://www.gnu.org/software/libiconv for the list of possible encodings. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = @PACKAGE@ -# The PROJECT_NUMBER tag can be used to enter a project or revision number. -# This could be handy for archiving the generated documentation or +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or # if some version control system is used. PROJECT_NUMBER = @VERSION@ -# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) -# base path where the generated documentation will be put. -# If a relative path is entered, it will be relative to the location +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location # where doxygen was started. If left blank the current directory will be used. OUTPUT_DIRECTORY = ../build/doc/doxygen -# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create -# 4096 sub-directories (in 2 levels) under the output directory of each output -# format and will distribute the generated files over these directories. -# Enabling this option can be useful when feeding doxygen a huge amount of -# source files, where putting all generated files in the same directory would +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would # otherwise cause performance problems for the file system. CREATE_SUBDIRS = NO -# The OUTPUT_LANGUAGE tag is used to specify the language in which all -# documentation generated by doxygen is written. Doxygen will use this -# information to generate all constant output in the proper language. -# The default language is English, other supported languages are: -# Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, -# Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese, -# Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian, -# Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, -# Swedish, and Ukrainian. +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, +# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English +# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, +# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, +# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. OUTPUT_LANGUAGE = English -# This tag can be used to specify the encoding used in the generated output. -# The encoding is not always determined by the language that is chosen, -# but also whether or not the output is meant for Windows or non-Windows users. -# In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES -# forces the Windows encoding (this is the default for the Windows binary), -# whereas setting the tag to NO uses a Unix-style encoding (the default for -# all platforms other than Windows). - -USE_WINDOWS_ENCODING = NO - -# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will -# include brief member descriptions after the members that are listed in -# the file and class documentation (similar to JavaDoc). +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). # Set to NO to disable this. BRIEF_MEMBER_DESC = YES -# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend -# the brief description of a member or function before the detailed description. -# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. REPEAT_BRIEF = YES -# This tag implements a quasi-intelligent brief description abbreviator -# that is used to form the text in various listings. Each string -# in this list, if found as the leading text of the brief description, will be -# stripped from the text and the result after processing the whole list, is -# used as the annotated text. Otherwise, the brief description is used as-is. -# If left blank, the following values are used ("$name" is automatically -# replaced with the name of the entity): "The $name class" "The $name widget" -# "The $name file" "is" "provides" "specifies" "contains" +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" # "represents" "a" "an" "the" -ABBREVIATE_BRIEF = +ABBREVIATE_BRIEF = -# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then -# Doxygen will generate a detailed section even if there is only a brief +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief # description. ALWAYS_DETAILED_SEC = NO -# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all -# inherited members of a class in the documentation of that class as if those -# members were ordinary class members. Constructors, destructors and assignment +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. INLINE_INHERITED_MEMB = NO -# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full -# path before files name in the file list and in the header files. If set +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set # to NO the shortest path that makes the file name unique will be used. FULL_PATH_NAMES = YES -# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag -# can be used to strip a user-defined part of the path. Stripping is -# only done if one of the specified strings matches the left-hand part of -# the path. The tag can be used to show relative paths in the file list. -# If left blank the directory from which doxygen is run is used as the +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the # path to strip. -STRIP_FROM_PATH = +STRIP_FROM_PATH = -# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of -# the path mentioned in the documentation of a class, which tells -# the reader which header file to include in order to use a class. -# If left blank only the name of the header file containing the class -# definition is used. Otherwise one should specify the include paths that +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that # are normally passed to the compiler using the -I flag. -STRIP_FROM_INC_PATH = +STRIP_FROM_INC_PATH = -# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter -# (but less readable) file names. This can be useful is your file systems +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems # doesn't support long names like on DOS, Mac, or CD-ROM. SHORT_NAMES = NO -# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen -# will interpret the first line (until the first dot) of a JavaDoc-style -# comment as the brief description. If set to NO, the JavaDoc -# comments will behave just like the Qt-style comments (thus requiring an -# explicit @brief command for a brief description. +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like regular Qt-style comments +# (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = NO -# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen -# treat a multi-line C++ special comment block (i.e. a block of //! or /// -# comments) as a brief description. This used to be the default behaviour. -# The new default is to treat a multi-line C++ comment block as a detailed -# description. Set this tag to YES if you prefer the old behaviour instead. +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will +# interpret the first line (until the first dot) of a Qt-style +# comment as the brief description. If set to NO, the comments +# will behave just like regular Qt-style comments (thus requiring +# an explicit \brief command for a brief description.) -MULTILINE_CPP_IS_BRIEF = NO +QT_AUTOBRIEF = NO -# If the DETAILS_AT_TOP tag is set to YES then Doxygen -# will output the detailed description near the top, like JavaDoc. -# If set to NO, the detailed description appears after the member -# documentation. +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. -DETAILS_AT_TOP = NO +MULTILINE_CPP_IS_BRIEF = NO -# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented -# member inherits the documentation from any documented member that it +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it # re-implements. INHERIT_DOCS = YES -# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce -# a new page for each member. If set to NO, the documentation of a member will +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will # be part of the file/class/namespace that contains it. SEPARATE_MEMBER_PAGES = NO -# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# The TAB_SIZE tag can be used to set the number of spaces in a tab. # Doxygen uses this value to replace tabs by spaces in code fragments. TAB_SIZE = 8 -# This tag can be used to specify a number of aliases that acts -# as commands in the documentation. An alias has the form "name=value". -# For example adding "sideeffect=\par Side Effects:\n" will allow you to -# put the command \sideeffect (or @sideeffect) in the documentation, which -# will result in a user-defined paragraph with heading "Side Effects:". +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". # You can put \n's in the value part of an alias to insert newlines. -ALIASES = +ALIASES = -# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C -# sources only. Doxygen will then generate output that is more tailored for C. -# For instance, some of the names that are used will be different. The list +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list # of all members will be omitted, etc. OPTIMIZE_OUTPUT_FOR_C = NO -# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java -# sources only. Doxygen will then generate output that is more tailored for Java. -# For instance, namespaces will be presented as packages, qualified scopes -# will look different, etc. +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for +# Java. For instance, namespaces will be presented as packages, qualified +# scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO -# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to -# include (a tag file for) the STL sources as input, then you should -# set this tag to YES in order to let doxygen match functions declarations and -# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. -# func(std::string) {}). This also make the inheritance and collaboration +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources only. Doxygen will then generate output that is more tailored for +# Fortran. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for +# VHDL. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it parses. +# With this tag you can assign which parser to use for a given extension. +# Doxygen has a built-in mapping, but you can override or extend it using this tag. +# The format is ext=language, where ext is a file extension, and language is one of +# the parsers supported by doxygen: IDL, Java, Javascript, C#, C, C++, D, PHP, +# Objective-C, Python, Fortran, VHDL, C, C++. For instance to make doxygen treat +# .inc files as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. Note that for custom extensions you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also make the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = YES -# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC -# tag is set to YES, then doxygen will reuse the documentation of the first -# member in the group (if any) for the other members of the group. By default +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. +# Doxygen will parse them like normal C++ but will assume all classes use public +# instead of private inheritance when no explicit protection keyword is present. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate getter +# and setter methods for a property. Setting this option to YES (the default) +# will make doxygen to replace the get and set methods by a property in the +# documentation. This will only work if the methods are indeed getting or +# setting a simple type. If this is not the case, or you want to show the +# methods anyway, you should set this option to NO. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. DISTRIBUTE_GROUP_DOC = NO -# Set the SUBGROUPING tag to YES (the default) to allow class member groups of -# the same type (for instance a group of public functions) to be put as a -# subgroup of that type (e.g. under the Public Functions section). Set it to -# NO to prevent subgrouping. Alternatively, this can be done per class using +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using # the \nosubgrouping command. SUBGROUPING = YES +# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum +# is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically +# be useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. + +TYPEDEF_HIDES_STRUCT = NO + +# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to +# determine which symbols to keep in memory and which to flush to disk. +# When the cache is full, less often used symbols will be written to disk. +# For small to medium size projects (<1000 input files) the default value is +# probably good enough. For larger projects a too small cache size can cause +# doxygen to be busy swapping symbols to and from disk most of the time +# causing a significant performance penality. +# If the system has enough physical memory increasing the cache will improve the +# performance by keeping more symbols in memory. Note that the value works on +# a logarithmic scale so increasing the size by one will rougly double the +# memory usage. The cache size is given by this formula: +# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols + +SYMBOL_CACHE_SIZE = 0 + #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- -# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in -# documentation are documented, even if no documentation was available. -# Private class members and static file members will be hidden unless +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = NO -# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO -# If the EXTRACT_STATIC tag is set to YES all static members of a file +# If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = NO -# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) -# defined locally in source files will be included in the documentation. +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. EXTRACT_LOCAL_CLASSES = YES -# This flag is only useful for Objective-C code. When set to YES local -# methods, which are defined in the implementation section but not in -# the interface are included in the documentation. +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. # If set to NO (the default) only methods in the interface are included. EXTRACT_LOCAL_METHODS = NO -# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all -# undocumented members of documented classes, files or namespaces. -# If set to NO (the default) these members will be included in the -# various overviews, but no documentation section is generated. +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base +# name of the file that contains the anonymous namespace. By default +# anonymous namespace are hidden. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. # This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_MEMBERS = NO -# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all -# undocumented classes that are normally visible in the class hierarchy. -# If set to NO (the default) these classes will be included in the various +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. HIDE_UNDOC_CLASSES = NO -# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all -# friend (class|struct|union) declarations. -# If set to NO (the default) these declarations will be included in the +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the # documentation. HIDE_FRIEND_COMPOUNDS = NO -# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any -# documentation blocks found inside the body of a function. -# If set to NO (the default) these blocks will be appended to the +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the # function's detailed documentation block. HIDE_IN_BODY_DOCS = NO -# The INTERNAL_DOCS tag determines if documentation -# that is typed after a \internal command is included. If the tag is set -# to NO (the default) then the documentation will be excluded. +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. INTERNAL_DOCS = NO -# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate -# file names in lower-case letters. If set to YES upper-case letters are also -# allowed. This is useful if you have classes or files whose names only differ -# in case and if your file system supports case sensitive file names. Windows +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows # and Mac users are advised to set this option to NO. CASE_SENSE_NAMES = YES -# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen -# will show members with their full class and namespace scopes in the +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = YES -# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen -# will put a list of the files that are included by a file in the documentation +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES -# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES -# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen -# will sort the (detailed) documentation of file and class members -# alphabetically by member name. If set to NO the members will appear in +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in # declaration order. SORT_MEMBER_DOCS = YES -# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the -# brief documentation of file, namespace and class members alphabetically -# by member name. If set to NO (the default) the members will appear in +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = NO -# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be -# sorted by fully-qualified names, including namespaces. If set to -# NO (the default), the class list will be sorted only by class name, -# not including the namespace part. +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the (brief and detailed) documentation of class members so that constructors and destructors are listed first. If set to NO (the default) the constructors will appear in the respective orders defined by SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the +# hierarchy of group names into alphabetical order. If set to NO (the default) +# the group names will appear in their defined order. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. -# Note: This option applies only to the class list, not to the +# Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO -# The GENERATE_TODOLIST tag can be used to enable (YES) or -# disable (NO) the todo list. This list is created by putting \todo +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo # commands in the documentation. GENERATE_TODOLIST = YES -# The GENERATE_TESTLIST tag can be used to enable (YES) or -# disable (NO) the test list. This list is created by putting \test +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test # commands in the documentation. GENERATE_TESTLIST = YES -# The GENERATE_BUGLIST tag can be used to enable (YES) or -# disable (NO) the bug list. This list is created by putting \bug +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug # commands in the documentation. GENERATE_BUGLIST = YES -# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or -# disable (NO) the deprecated list. This list is created by putting +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting # \deprecated commands in the documentation. GENERATE_DEPRECATEDLIST= YES -# The ENABLED_SECTIONS tag can be used to enable conditional +# The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. -ENABLED_SECTIONS = +ENABLED_SECTIONS = -# The MAX_INITIALIZER_LINES tag determines the maximum number of lines -# the initial value of a variable or define consists of for it to appear in -# the documentation. If the initializer consists of more lines than specified -# here it will be hidden. Use a value of 0 to hide initializers completely. -# The appearance of the initializer of individual variables and defines in the -# documentation can be controlled using \showinitializer or \hideinitializer +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. MAX_INITIALIZER_LINES = 30 -# Set the SHOW_USED_FILES tag to NO to disable the list of files generated -# at the bottom of the documentation of classes and structs. If set to YES the +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the # list will mention the files that were used to generate the documentation. SHOW_USED_FILES = YES -# If the sources in your project are distributed over multiple directories -# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy -# in the documentation. The default is YES. +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is NO. SHOW_DIRECTORIES = YES -# The FILE_VERSION_FILTER tag can be used to specify a program or script that -# doxygen should invoke to get the current version for each file (typically from the -# version control system). Doxygen will invoke the program by executing (via -# popen()) the command , where is the value of -# the FILE_VERSION_FILTER tag, and is the name of an input file -# provided by doxygen. Whatever the program writes to standard output +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. +# This will remove the Files entry from the Quick Index and from the +# Folder Tree View (if specified). The default is YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the +# Namespaces page. +# This will remove the Namespaces entry from the Quick Index +# and from the Folder Tree View (if specified). The default is YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. -FILE_VERSION_FILTER = +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed by +# doxygen. The layout file controls the global structure of the generated output files +# in an output format independent way. The create the layout file that represents +# doxygen's defaults, run doxygen with the -l option. You can optionally specify a +# file name after the option, if omitted DoxygenLayout.xml will be used as the name +# of the layout file. + +LAYOUT_FILE = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- -# The QUIET tag can be used to turn on/off the messages that are generated +# The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO -# The WARNINGS tag can be used to turn on/off the warning messages that are -# generated by doxygen. Possible values are YES and NO. If left blank +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES -# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings -# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will # automatically be disabled. WARN_IF_UNDOCUMENTED = YES -# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for -# potential errors in the documentation, such as not documenting some -# parameters in a documented function, or documenting parameters that +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that # don't exist or using markup commands wrongly. WARN_IF_DOC_ERROR = YES -# This WARN_NO_PARAMDOC option can be abled to get warnings for -# functions that are documented, but have no documentation for their parameters -# or return value. If set to NO (the default) doxygen will only warn about -# wrong or incomplete parameter documentation, but not about the absence of +# This WARN_NO_PARAMDOC option can be abled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = NO -# The WARN_FORMAT tag determines the format of the warning messages that -# doxygen can produce. The string should contain the $file, $line, and $text -# tags, which will be replaced by the file and line number from which the -# warning originated and the warning text. Optionally the format may contain -# $version, which will be replaced by the version of the file (if it could +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could # be obtained via FILE_VERSION_FILTER) WARN_FORMAT = "$file:$line: $text" -# The WARN_LOGFILE tag can be used to specify a file to which warning -# and error messages should be written. If left blank the output is written +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written # to stderr. -WARN_LOGFILE = +WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- -# The INPUT tag can be used to specify the files and/or directories that contain -# documented source files. You may enter file names like "myfile.cpp" or -# directories like "/usr/src/myproject". Separate the files or directories +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories # with spaces. INPUT = ../apt-pkg -# If the value of the INPUT tag contains directories, you can use the -# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp -# and *.h) to filter out the source-files in the directories. If left -# blank the following patterns are tested: -# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx -# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is +# also the default input encoding. Doxygen uses libiconv (or the iconv built +# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for +# the list of possible encodings. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx +# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 FILE_PATTERNS = *.cc \ *.h -# The RECURSIVE tag can be used to turn specify whether or not subdirectories -# should be searched for input files as well. Possible values are YES and NO. +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = YES -# The EXCLUDE tag can be used to specify files and/or directories that should -# excluded from the INPUT source files. This way you can easily exclude a +# The EXCLUDE tag can be used to specify files and/or directories that should +# excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. -EXCLUDE = +EXCLUDE = -# The EXCLUDE_SYMLINKS tag can be used select whether or not files or -# directories that are symbolic links (a Unix filesystem feature) are excluded +# The EXCLUDE_SYMLINKS tag can be used select whether or not files or +# directories that are symbolic links (a Unix filesystem feature) are excluded # from the input. EXCLUDE_SYMLINKS = NO -# If the value of the INPUT tag contains directories, you can use the -# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude -# certain files from those directories. Note that the wildcards are matched -# against the file with absolute path, so to exclude all test directories +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories # for example use the pattern */test/* -EXCLUDE_PATTERNS = +EXCLUDE_PATTERNS = -# The EXAMPLE_PATH tag can be used to specify one or more files or -# directories that contain example code fragments that are included (see +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see # the \include command). -EXAMPLE_PATH = +EXAMPLE_PATH = -# If the value of the EXAMPLE_PATH tag contains directories, you can use the -# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp -# and *.h) to filter out the source-files in the directories. If left +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left # blank all files are included. -EXAMPLE_PATTERNS = +EXAMPLE_PATTERNS = -# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be -# searched for input files to be used with the \include or \dontinclude -# commands irrespective of the value of the RECURSIVE tag. +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO -# The IMAGE_PATH tag can be used to specify one or more files or -# directories that contain image that are included in the documentation (see +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see # the \image command). -IMAGE_PATH = +IMAGE_PATH = -# The INPUT_FILTER tag can be used to specify a program that doxygen should -# invoke to filter for each input file. Doxygen will invoke the filter program -# by executing (via popen()) the command , where -# is the value of the INPUT_FILTER tag, and is the name of an -# input file. Doxygen will then use the output that the filter program writes -# to standard output. If FILTER_PATTERNS is specified, this tag will be +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. +# If FILTER_PATTERNS is specified, this tag will be # ignored. -INPUT_FILTER = +INPUT_FILTER = -# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern -# basis. Doxygen will compare the file name with each pattern and apply the -# filter if there is a match. The filters are a list of the form: -# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further -# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. +# Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. +# The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER # is applied to all files. -FILTER_PATTERNS = +FILTER_PATTERNS = -# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using -# INPUT_FILTER) will be used to filter the input files when producing source +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO @@ -552,46 +680,54 @@ FILTER_SOURCE_FILES = NO # configuration options related to source browsing #--------------------------------------------------------------------------- -# If the SOURCE_BROWSER tag is set to YES then a list of source files will -# be generated. Documented entities will be cross-referenced with these sources. -# Note: To get rid of all source code in the generated output, make sure also +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = NO -# Setting the INLINE_SOURCES tag to YES will include the body +# Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO -# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct -# doxygen to hide any special comment blocks from generated source code +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. STRIP_CODE_COMMENTS = YES -# If the REFERENCED_BY_RELATION tag is set to YES (the default) -# then for each documented function all documented +# If the REFERENCED_BY_RELATION tag is set to YES +# then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = YES -# If the REFERENCES_RELATION tag is set to YES (the default) -# then for each documented function all documented entities +# If the REFERENCES_RELATION tag is set to YES +# then for each documented function all documented entities # called/used by that function will be listed. REFERENCES_RELATION = YES -# If the USE_HTAGS tag is set to YES then the references to source code -# will point to the HTML generated by the htags(1) tool instead of doxygen -# built-in source browser. The htags tool is part of GNU's global source -# tagging system (see http://www.gnu.org/software/global/global.html). You +# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) +# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from +# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will +# link to the source code. +# Otherwise they will link to the documentation. + +REFERENCES_LINK_SOURCE = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO -# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen -# will generate a verbatim copy of the header file for each class for +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for # which an include is specified. Set to NO to disable this. VERBATIM_HEADERS = YES @@ -600,279 +736,393 @@ VERBATIM_HEADERS = YES # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- -# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index -# of all compounds will be generated. Enable this if the project +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project # contains a lot of classes, structs, unions or interfaces. ALPHABETICAL_INDEX = NO -# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then -# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) COLS_IN_ALPHA_INDEX = 5 -# In case all classes in a project start with a common prefix, all -# classes will be put under the same header in the alphabetical index. -# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that # should be ignored while generating the index headers. -IGNORE_PREFIX = +IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- -# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. GENERATE_HTML = YES -# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `html' will be used as the default path. HTML_OUTPUT = html -# The HTML_FILE_EXTENSION tag can be used to specify the file extension for -# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html -# The HTML_HEADER tag can be used to specify a personal HTML header for -# each generated HTML page. If it is left blank doxygen will generate a +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a # standard header. -HTML_HEADER = +HTML_HEADER = -# The HTML_FOOTER tag can be used to specify a personal HTML footer for -# each generated HTML page. If it is left blank doxygen will generate a +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a # standard footer. -HTML_FOOTER = +HTML_FOOTER = -# The HTML_STYLESHEET tag can be used to specify a user-defined cascading -# style sheet that is used by each HTML page. It can be used to -# fine-tune the look of the HTML output. If the tag is left blank doxygen -# will generate a default style sheet. Note that doxygen will try to copy -# the style sheet file to the HTML output directory, so don't put your own +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own # stylesheet in the HTML output directory as well, or it will be erased! -HTML_STYLESHEET = +HTML_STYLESHEET = -# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, -# files or namespaces will be aligned in HTML using tables. If set to +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = YES -# If the GENERATE_HTMLHELP tag is set to YES, additional index files -# will be generated that can be used as input for tools like the -# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. For this to work a browser that supports +# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox +# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). + +HTML_DYNAMIC_SECTIONS = NO + +# If the GENERATE_DOCSET tag is set to YES, additional index files +# will be generated that can be used as input for Apple's Xcode 3 +# integrated development environment, introduced with OSX 10.5 (Leopard). +# To create a documentation set, doxygen will generate a Makefile in the +# HTML output directory. Running make will produce the docset in that +# directory and running "make install" will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find +# it at startup. +# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html for more information. + +GENERATE_DOCSET = NO + +# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the +# feed. A documentation feed provides an umbrella under which multiple +# documentation sets from a single provider (such as a company or product suite) +# can be grouped. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that +# should uniquely identify the documentation set bundle. This should be a +# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen +# will append .docset to the name. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO -# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can -# be used to specify the file name of the resulting .chm file. You -# can add a path in front of the file if the result should not be +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be # written to the html output directory. -CHM_FILE = +CHM_FILE = -# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can -# be used to specify the location (absolute path including file name) of -# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run # the HTML help compiler on the generated index.hhp. -HHC_LOCATION = +HHC_LOCATION = -# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag -# controls if a separate .chi index file is generated (YES) or that +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that # it should be included in the master .chm file (NO). GENERATE_CHI = NO -# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag -# controls whether a binary table of contents is generated (YES) or a +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING +# is used to encode HtmlHelp index (hhk), content (hhc) and project file +# content. + +CHM_INDEX_ENCODING = + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a # normal table of contents (NO) in the .chm file. BINARY_TOC = NO -# The TOC_EXPAND flag can be set to YES to add extra items for group members +# The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. TOC_EXPAND = NO -# The DISABLE_INDEX tag can be used to turn on/off the condensed index at -# top of each HTML page. The value NO (the default) enables the index and +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and QHP_VIRTUAL_FOLDER +# are set, an additional index file will be generated that can be used as input for +# Qt's qhelpgenerator to generate a Qt Compressed Help (.qch) of the generated +# HTML documentation. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can +# be used to specify the file name of the resulting .qch file. +# The path specified is relative to the HTML output folder. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#namespace + +QHP_NAMESPACE = + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#virtual-folders + +QHP_VIRTUAL_FOLDER = doc + +# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to add. +# For more information please see +# http://doc.trolltech.com/qthelpproject.html#custom-filters + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the custom filter to add.For more information please see +# Qt Help Project / Custom Filters. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this project's +# filter section matches. +# Qt Help Project / Filter Attributes. + +QHP_SECT_FILTER_ATTRS = + +# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can +# be used to specify the location of Qt's qhelpgenerator. +# If non-empty doxygen will try to run qhelpgenerator on the generated +# .qhp file. + +QHG_LOCATION = + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index at +# top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO -# This tag can be used to set the number of enum values (range [1..20]) +# This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation. ENUM_VALUES_PER_LINE = 4 -# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be -# generated containing a tree-like index structure (just like the one that -# is generated for HTML Help). For this to work a browser that supports -# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, -# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are -# probably better off using the HTML help feature. +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. +# If the tag value is set to YES, a side panel will be generated +# containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). +# Windows users are probably better off using the HTML help feature. GENERATE_TREEVIEW = NO -# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be -# used to set the initial width (in pixels) of the frame in which the tree +# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, +# and Class Hierarchy pages using a tree view instead of an ordered list. + +USE_INLINE_TREES = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree # is shown. TREEVIEW_WIDTH = 250 +# Use this tag to change the font size of Latex formulas included +# as images in the HTML documentation. The default is 10. Note that +# when you change the font size after a successful doxygen run you need +# to manually remove any form_*.png images from the HTML output directory +# to force them to be regenerated. + +FORMULA_FONTSIZE = 10 + +# When the SEARCHENGINE tag is enable doxygen will generate a search box for the HTML output. The underlying search engine uses javascript +# and DHTML and should work on any modern browser. Note that when using HTML help (GENERATE_HTMLHELP) or Qt help (GENERATE_QHP) +# there is already a search function so this one should typically +# be disabled. + +SEARCHENGINE = NO + #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- -# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = YES -# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex -# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. LATEX_CMD_NAME = latex -# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to -# generate index for LaTeX. If left blank `makeindex' will be used as the +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = makeindex -# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact -# LaTeX documents. This may be useful for small projects and may help to +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO -# The PAPER_TYPE tag can be used to set the paper type that is used -# by the printer. Possible values are: a4, a4wide, letter, legal and +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide -# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. -EXTRA_PACKAGES = +EXTRA_PACKAGES = -# The LATEX_HEADER tag can be used to specify a personal LaTeX header for -# the generated latex document. The header should contain everything until -# the first chapter. If it is left blank doxygen will generate a +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! -LATEX_HEADER = +LATEX_HEADER = -# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated -# is prepared for conversion to pdf (using ps2pdf). The pdf file will -# contain links (just like the HTML output) instead of page references +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = NO -# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of -# plain latex in the generated Makefile. Set this option to YES to get a +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = NO -# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. -# command to the generated LaTeX files. This will instruct LaTeX to keep -# running if errors occur, instead of asking the user for help. +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = NO -# If LATEX_HIDE_INDICES is set to YES then doxygen will not -# include the index chapters (such as File Index, Compound Index, etc.) +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO +# If LATEX_SOURCE_CODE is set to YES then doxygen will include source code with syntax highlighting in the LaTeX output. Note that which sources are shown also depends on other settings such as SOURCE_BROWSER. + +LATEX_SOURCE_CODE = NO + #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- -# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output -# The RTF output is optimized for Word 97 and may not look very pretty with +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO -# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf -# If the COMPACT_RTF tag is set to YES Doxygen generates more compact -# RTF documents. This may be useful for small projects and may help to +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO -# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated -# will contain hyperlink fields. The RTF file will -# contain links (just like the HTML output) instead of page references. -# This makes the output suitable for online browsing using WORD or other -# programs which support those fields. +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO -# Load stylesheet definitions from file. Syntax is similar to doxygen's -# config file, i.e. a series of assignments. You only have to provide +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. -RTF_STYLESHEET_FILE = +RTF_STYLESHEET_FILE = -# Set optional variables used in the generation of an rtf document. +# Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. -RTF_EXTENSIONS_FILE = +RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- -# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO -# The MAN_OUTPUT tag is used to specify where the man pages will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man -# The MAN_EXTENSION tag determines the extension that is added to +# The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 -# If the MAN_LINKS tag is set to YES and Doxygen generates man output, -# then it will generate one additional man file for each entity -# documented in the real man page(s). These additional files -# only source the real man page, but without them the man command +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO @@ -881,33 +1131,33 @@ MAN_LINKS = NO # configuration options related to the XML output #--------------------------------------------------------------------------- -# If the GENERATE_XML tag is set to YES Doxygen will -# generate an XML file that captures the structure of +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO -# The XML_OUTPUT tag is used to specify where the XML pages will be put. -# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml -# The XML_SCHEMA tag can be used to specify an XML schema, -# which can be used by a validating XML parser to check the +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the # syntax of the XML files. -XML_SCHEMA = +XML_SCHEMA = -# The XML_DTD tag can be used to specify an XML DTD, -# which can be used by a validating XML parser to check the +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the # syntax of the XML files. -XML_DTD = +XML_DTD = -# If the XML_PROGRAMLISTING tag is set to YES Doxygen will -# dump the program listings (including syntax highlighting -# and cross-referencing information) to the XML output. Note that +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES @@ -916,10 +1166,10 @@ XML_PROGRAMLISTING = YES # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- -# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will -# generate an AutoGen Definitions (see autogen.sf.net) file -# that captures the structure of the code including all -# documentation. Note that this feature is still experimental +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO @@ -928,311 +1178,338 @@ GENERATE_AUTOGEN_DEF = NO # configuration options related to the Perl module output #--------------------------------------------------------------------------- -# If the GENERATE_PERLMOD tag is set to YES Doxygen will -# generate a Perl module file that captures the structure of -# the code including all documentation. Note that this -# feature is still experimental and incomplete at the +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO -# If the PERLMOD_LATEX tag is set to YES Doxygen will generate -# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO -# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be -# nicely formatted so it can be parsed by a human reader. This is useful -# if you want to understand what is going on. On the other hand, if this -# tag is set to NO the size of the Perl module output will be much smaller +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. +# This is useful +# if you want to understand what is going on. +# On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES -# The names of the make variables in the generated doxyrules.make file -# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. -# This is useful so different doxyrules.make files included by the same +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. -PERLMOD_MAKEVAR_PREFIX = +PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- -# Configuration options related to the preprocessor +# Configuration options related to the preprocessor #--------------------------------------------------------------------------- -# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will -# evaluate all C-preprocessor directives found in the sources and include +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES -# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro -# names in the source code. If set to NO (the default) only conditional -# compilation will be performed. Macro expansion can be done in a controlled +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO -# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES -# then the macro expansion is limited to the macros specified with the +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO -# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES -# The INCLUDE_PATH tag can be used to specify one or more directories that -# contain include files that are not input files but should be processed by +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by # the preprocessor. -INCLUDE_PATH = +INCLUDE_PATH = -# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard -# patterns (like *.h and *.hpp) to filter out the header-files in the -# directories. If left blank, the patterns specified with FILE_PATTERNS will +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. -INCLUDE_FILE_PATTERNS = +INCLUDE_FILE_PATTERNS = -# The PREDEFINED tag can be used to specify one or more macro names that -# are defined before the preprocessor is started (similar to the -D option of -# gcc). The argument of the tag is a list of macros of the form: name -# or name=definition (no spaces). If the definition and the = are -# omitted =1 is assumed. To prevent a macro definition from being -# undefined via #undef or recursively expanded use the := operator +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator # instead of the = operator. -PREDEFINED = +PREDEFINED = -# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then -# this tag can be used to specify a list of macro names that should be expanded. -# The macro definition that is found in the sources will be used. +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. -EXPAND_AS_DEFINED = +EXPAND_AS_DEFINED = -# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then -# doxygen's preprocessor will remove all function-like macros that are alone -# on a line, have an all uppercase name, and do not end with a semicolon. Such -# function macros are typically used for boiler-plate code, and will confuse +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all function-like macros that are alone +# on a line, have an all uppercase name, and do not end with a semicolon. Such +# function macros are typically used for boiler-plate code, and will confuse # the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- -# Configuration::additions related to external references +# Configuration::additions related to external references #--------------------------------------------------------------------------- -# The TAGFILES option can be used to specify one or more tagfiles. -# Optionally an initial location of the external documentation -# can be added for each tagfile. The format of a tag file without -# this location is as follows: -# TAGFILES = file1 file2 ... -# Adding location for the tag files is done as follows: -# TAGFILES = file1=loc1 "file2 = loc2" ... -# where "loc1" and "loc2" can be relative or absolute paths or -# URLs. If a location is present for each tag, the installdox tool +# The TAGFILES option can be used to specify one or more tagfiles. +# Optionally an initial location of the external documentation +# can be added for each tagfile. The format of a tag file without +# this location is as follows: +# +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths or +# URLs. If a location is present for each tag, the installdox tool # does not have to be run to correct the links. # Note that each tag file must have a unique name # (where the name does NOT include the path) -# If a tag file is not located in the directory in which doxygen +# If a tag file is not located in the directory in which doxygen # is run, you must also specify the path to the tagfile here. -TAGFILES = +TAGFILES = -# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. -GENERATE_TAGFILE = +GENERATE_TAGFILE = -# If the ALLEXTERNALS tag is set to YES all external classes will be listed -# in the class index. If set to NO only the inherited external classes +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO -# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed -# in the modules index. If set to NO, only the current project's groups will +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES -# The PERL_PATH should be the absolute path and name of the perl script +# The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- -# Configuration options related to the dot tool +# Configuration options related to the dot tool #--------------------------------------------------------------------------- -# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will -# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base -# or super classes. Setting the tag to NO turns the diagrams off. Note that -# this option is superseded by the HAVE_DOT option below. This is only a -# fallback. It is recommended to install and use dot, since it yields more +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option is superseded by the HAVE_DOT option below. This is only a +# fallback. It is recommended to install and use dot, since it yields more # powerful graphs. CLASS_DIAGRAMS = YES -# If set to YES, the inheritance and collaboration graphs will hide -# inheritance and usage relations if the target is undocumented +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see +# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = YES -# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is -# available from the path. This tool is part of Graphviz, a graph visualization -# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = @HAVE_DOT@ -# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for each documented class showing the direct and -# indirect inheritance relations. Setting this tag to YES will force the +# By default doxygen will write a font called FreeSans.ttf to the output +# directory and reference it in all dot files that doxygen generates. This +# font does not include all possible unicode characters however, so when you need +# these (or just want a differently looking font) you can specify the font name +# using DOT_FONTNAME. You need need to make sure dot is able to find the font, +# which can be done by putting it in a standard location or by setting the +# DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory +# containing the font. + +DOT_FONTNAME = FreeSans + +# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. +# The default size is 10pt. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the output directory to look for the +# FreeSans.ttf font (which doxygen will put there itself). If you specify a +# different font using DOT_FONTNAME you can set the path where dot +# can find it using this tag. + +DOT_FONTPATH = + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the # the CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES -# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for each documented class showing the direct and -# indirect implementation dependencies (inheritance, containment, and +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES -# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES -# If the UML_LOOK tag is set to YES doxygen will generate inheritance and -# collaboration diagrams in a style similar to the OMG's Unified Modeling +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO -# If set to YES, the inheritance and collaboration graphs will show the +# If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO -# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT -# tags are set to YES then doxygen will generate a graph for each documented -# file showing the direct and indirect include dependencies of the file with +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES -# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and -# HAVE_DOT tags are set to YES then doxygen will generate a graph for each -# documented header file showing the documented files that directly or +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES -# If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will -# generate a call dependency graph for every global function or class method. -# Note that enabling this option will significantly increase the time of a run. -# So in most cases it will be better to enable call graphs for selected -# functions only using the \callgraph command. +# If the CALL_GRAPH and HAVE_DOT options are set to YES then +# doxygen will generate a call dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable call graphs +# for selected functions only using the \callgraph command. CALL_GRAPH = NO -# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then +# doxygen will generate a caller dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable caller +# graphs for selected functions only using the \callergraph command. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES -# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES -# then doxygen will show the dependencies a directory has on other directories +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES -# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are png, jpg, or gif # If left blank png will be used. DOT_IMAGE_FORMAT = png -# The tag DOT_PATH can be used to specify the path where the dot tool can be +# The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = @DOTDIR@ -# The DOTFILE_DIRS tag can be used to specify one or more directories that -# contain dot files that are included in the documentation (see the +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the # \dotfile command). -DOTFILE_DIRS = +DOTFILE_DIRS = -# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width -# (in pixels) of the graphs generated by dot. If a graph becomes larger than -# this value, doxygen will try to truncate the graph, so that it fits within -# the specified constraint. Beware that most browsers cannot cope with very -# large images. +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of +# nodes that will be shown in the graph. If the number of nodes in a graph +# becomes larger than this value, doxygen will truncate the graph, which is +# visualized by representing a node as a red box. Note that doxygen if the +# number of direct children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note +# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. -MAX_DOT_GRAPH_WIDTH = 1024 +DOT_GRAPH_MAX_NODES = 50 -# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height -# (in pixels) of the graphs generated by dot. If a graph becomes larger than -# this value, doxygen will try to truncate the graph, so that it fits within -# the specified constraint. Beware that most browsers cannot cope with very -# large images. - -MAX_DOT_GRAPH_HEIGHT = 1024 - -# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the -# graphs generated by dot. A depth value of 3 means that only nodes reachable -# from the root by following a path via at most 3 edges will be shown. Nodes -# that lay further from the root node will be omitted. Note that setting this -# option to 1 or 2 may greatly reduce the computation time needed for large -# code bases. Also note that a graph may be further truncated if the graph's -# image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH -# and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default), -# the graph is not depth-constrained. +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 0 -# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent -# background. This is disabled by default, which results in a white background. -# Warning: Depending on the platform used, enabling this option may lead to -# badly anti-aliased labels on the edges of a graph (i.e. they become hard to -# read). +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not +# seem to support this out of the box. Warning: Depending on the platform used, +# enabling this option may lead to badly anti-aliased labels on the edges of +# a graph (i.e. they become hard to read). DOT_TRANSPARENT = NO -# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output -# files in one run (i.e. multiple -o and -T options on the command line). This -# makes dot run faster, but since only newer versions of dot (>1.8.10) +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = NO -# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will -# generate a legend page explaining the meaning of the various boxes and +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES -# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will -# remove the intermediate dot files that are used to generate +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES - -#--------------------------------------------------------------------------- -# Configuration::additions related to the search engine -#--------------------------------------------------------------------------- - -# The SEARCHENGINE tag specifies whether or not a search engine should be -# used. If set to NO the values of all tags below this one will be ignored. - -SEARCHENGINE = NO -- cgit v1.2.3 From a6f7fd36c8b456651568fecac6a29bbd7f4f0e7b Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 26 Aug 2009 16:02:39 +0200 Subject: * doc/Doxyfile.in - activate DOT_MULTI_TARGETS, it is default on since doxygen 1.5.9 The description for this option is: # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. Even oldstable has a newer dot version, so the debian package doxygen activate it per default and we will follow this recommendation now. --- debian/changelog | 1 + doc/Doxyfile.in | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 0b0d5f87a..0230e16ff 100644 --- a/debian/changelog +++ b/debian/changelog @@ -38,6 +38,7 @@ apt (0.7.22.3) unstable; urgency=low thanks Modestas Vainius for noticing! (Closes: #531157, LP: #411435) * doc/Doxyfile.in: - update file with doxygen 1.6.1 (current unstable) + - activate DOT_MULTI_TARGETS, it is default on since doxygen 1.5.9 [ George Danchev ] * cmdline/apt-cache.cc: diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index 19f4c54cc..43d961443 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -1500,7 +1500,7 @@ DOT_TRANSPARENT = NO # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. -DOT_MULTI_TARGETS = NO +DOT_MULTI_TARGETS = YES # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and -- cgit v1.2.3 From f30c4b6adaa6729630b15a354569ecbae92ec9a8 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 26 Aug 2009 16:38:54 +0200 Subject: =?UTF-8?q?=20=20[=20Nicolas=20Fran=C3=A7ois=20]=20=20=20*=20doc/s?= =?UTF-8?q?tyle.txt,=20buildlib/defaults.mak,=20buildlib/manpage.mak:=20?= =?UTF-8?q?=20=20=20=20-=20fix=20a=20few=20typos=20in=20the=20comments=20o?= =?UTF-8?q?f=20this=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- buildlib/defaults.mak | 22 +++++++++++----------- buildlib/manpage.mak | 2 +- debian/changelog | 2 ++ doc/style.txt | 6 +++--- 4 files changed, 17 insertions(+), 15 deletions(-) diff --git a/buildlib/defaults.mak b/buildlib/defaults.mak index a171522d5..8c57da05b 100644 --- a/buildlib/defaults.mak +++ b/buildlib/defaults.mak @@ -6,26 +6,26 @@ # for it to operate as expected. When included the module generates # the requested rules based on the contents of its control variables. -# This works out very well and allows a good degree of flexability. -# To accomidate some of the features we introduce the concept of +# This works out very well and allows a good degree of flexibility. +# To accommodate some of the features we introduce the concept of # local variables. To do this we use the 'Computed Names' feature of # gmake. Each module declares a LOCAL scope and access it with, # $($(LOCAL)-VAR) -# This works very well but it is important to rembember that within -# a rule the LOCAL var is unavailble, it will have to be constructed -# from the information in the rule invokation. For stock rules like +# This works very well but it is important to remember that within +# a rule the LOCAL var is unavailable, it will have to be constructed +# from the information in the rule invocation. For stock rules like # clean this is simple, we use a local clean rule called clean/$(LOCAL) # and then within the rule $(@F) gets back $(LOCAL)! Other rules will # have to use some other mechanism (filter perhaps?) The reason such # lengths are used is so that each directory can contain several 'instances' # of any given module. I notice that the very latest gmake has the concept # of local variables for rules. It is possible this feature in conjunction -# with the generated names will provide a very powerfull solution indeed! +# with the generated names will provide a very powerful solution indeed! # A build directory is used by default, all generated items get put into # there. However unlike automake this is not done with a VPATH build # (vpath builds break the distinction between #include "" and #include <>) -# but by explicly setting the BUILD variable. Make is invoked from +# but by explicitly setting the BUILD variable. Make is invoked from # within the source itself which is much more compatible with compilation # environments. ifndef NOISY @@ -99,12 +99,12 @@ endif # Source location control # SUBDIRS specifies sub components of the module that -# may be located in subdrictories of the source dir. +# may be located in subdirectories of the source dir. # This should be declared before including this file SUBDIRS+= # Header file control. -# TARGETDIRS indicitates all of the locations that public headers +# TARGETDIRS indicates all of the locations that public headers # will be published to. # This should be declared before including this file HEADER_TARGETDIRS+= @@ -133,7 +133,7 @@ dirs: mkdir -p $(patsubst %/,%,$(sort $(MKDIRS))) # Header file control. We want all published interface headers to go -# into the build directory from thier source dirs. We setup some +# into the build directory from their source dirs. We setup some # search paths here vpath %.h $(SUBDIRS) $(INCLUDE)/%.h $(addprefix $(INCLUDE)/,$(addsuffix /%.h,$(HEADER_TARGETDIRS))) : %.h @@ -142,7 +142,7 @@ $(INCLUDE)/%.h $(addprefix $(INCLUDE)/,$(addsuffix /%.h,$(HEADER_TARGETDIRS))) : # Dependency generation. We want to generate a .d file using gnu cpp. # For GNU systems the compiler can spit out a .d file while it is compiling, # this is specified with the INLINEDEPFLAG. Other systems might have a -# makedep program that can be called after compiling, that's illistrated +# makedep program that can be called after compiling, that's illustrated # by the DEPFLAG case. # Compile rules are expected to call this macro after calling the compiler ifdef GCC3DEP diff --git a/buildlib/manpage.mak b/buildlib/manpage.mak index 1f2644c01..6cdf73ccf 100644 --- a/buildlib/manpage.mak +++ b/buildlib/manpage.mak @@ -5,7 +5,7 @@ # Input # $(SOURCE) - The documents to use -# All output is writtin to files in the build doc directory +# All output is written to files in the build doc directory # See defaults.mak for information about LOCAL diff --git a/debian/changelog b/debian/changelog index 0230e16ff..35ce8b7dd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -49,6 +49,8 @@ apt (0.7.22.3) unstable; urgency=low [ Nicolas François ] * doc/*.?.xml (manpages): - add contrib to author tags and also add refmiscinfo to fix warnings + * doc/style.txt, buildlib/defaults.mak, buildlib/manpage.mak: + - fix a few typos in the comments of this files -- David Kalnischkies Sat, 08 Aug 2009 09:40:08 +0200 diff --git a/doc/style.txt b/doc/style.txt index 8d0778b4a..2072251d0 100644 --- a/doc/style.txt +++ b/doc/style.txt @@ -17,8 +17,8 @@ this style are: Each file gets a block at the top that should describe what the file does, basically a summary of purpose along with any special notes and attributions. The }}} and {{{ are folding marks if you have a folding -editor such as jed, the function seperators are intended to give -a visual seperate between functions for easier browsing of the larger files, +editor such as jed, the function separators are intended to give +a visual separate between functions for easier browsing of the larger files, or indexed folding if you have such an editor. Each file should have 1 or 0 primary include files, that include @@ -71,5 +71,5 @@ almost always designates a change in ownership rules). pointer is an 'input' parameter (designated generally by an =0, indicating a default of 'none') -Non-ownership transfering arrays/lists should probably return an iterator +Non-ownership transferring arrays/lists should probably return an iterator typedef or references.. -- cgit v1.2.3 From 2a52e8c56b71fa894c52ff93d6b98c39c00dc4e2 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 26 Aug 2009 17:23:58 +0200 Subject: =?UTF-8?q?=20=20[=20Nicolas=20Fran=C3=A7ois=20]=20=20=20*=20Clean?= =?UTF-8?q?ed=20up=20the=20first=20patch=20draft=20from=20KURASAWA=20Nozom?= =?UTF-8?q?u=20to=20finally=20=20=20=20=20get=20po4a=20support=20for=20tra?= =?UTF-8?q?nslating=20the=20man=20pages.=20=20=20=20=20Many=20thanks=20to?= =?UTF-8?q?=20both=20for=20this=20excellent=20work!=20(Closes:=20#441608)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- debian/apt-utils.manpages | 6 - debian/apt.manpages | 33 - debian/changelog | 3 + debian/control | 2 +- debian/rules | 6 +- doc/makefile | 27 +- doc/po/apt-doc.pot | 6430 +++++++++++++++++++++++++++++++++++++++++++++ doc/po4a.conf | 50 + 8 files changed, 6504 insertions(+), 53 deletions(-) delete mode 100644 debian/apt-utils.manpages delete mode 100644 debian/apt.manpages create mode 100644 doc/po/apt-doc.pot create mode 100644 doc/po4a.conf diff --git a/debian/apt-utils.manpages b/debian/apt-utils.manpages deleted file mode 100644 index a68e909fc..000000000 --- a/debian/apt-utils.manpages +++ /dev/null @@ -1,6 +0,0 @@ -doc/apt-extracttemplates.1 -doc/apt-ftparchive.1 -doc/apt-sortpkgs.1 -doc/fr/apt-extracttemplates.fr.1 -doc/fr/apt-ftparchive.fr.1 -doc/fr/apt-sortpkgs.fr.1 diff --git a/debian/apt.manpages b/debian/apt.manpages deleted file mode 100644 index 3c9c8a460..000000000 --- a/debian/apt.manpages +++ /dev/null @@ -1,33 +0,0 @@ -doc/apt-cache.8 -doc/apt-cdrom.8 -doc/apt-config.8 -doc/apt-get.8 -doc/apt-key.8 -doc/apt-mark.8 -doc/apt-secure.8 -doc/apt.8 -doc/apt.conf.5 -doc/apt_preferences.5 -doc/fr/apt-cache.fr.8 -doc/fr/apt-cdrom.fr.8 -doc/fr/apt-config.fr.8 -doc/fr/apt-get.fr.8 -doc/fr/apt-key.fr.8 -doc/fr/apt.conf.fr.5 -doc/fr/apt_preferences.fr.5 -doc/fr/sources.list.fr.5 -doc/es/apt-cache.es.8 -doc/es/apt-cdrom.es.8 -doc/es/apt-config.es.8 -doc/es/apt-get.es.8 -doc/es/apt.conf.es.5 -doc/es/apt_preferences.es.5 -doc/es/sources.list.es.5 -doc/es/apt.es.8 -doc/pt_BR/apt_preferences.pt_BR.5 -doc/ja/apt-cache.ja.8 -doc/ja/apt-cdrom.ja.8 -doc/ja/apt-get.ja.8 -doc/ja/apt.conf.ja.5 -doc/sources.list.5 -doc/de/apt.de.8 diff --git a/debian/changelog b/debian/changelog index 35ce8b7dd..e279633fc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -47,6 +47,9 @@ apt (0.7.22.3) unstable; urgency=low - fix a memory leak then the Release file not exists (Closes: #511556) [ Nicolas François ] + * Cleaned up the first patch draft from KURASAWA Nozomu to finally + get po4a support for translating the man pages. + Many thanks to both for this excellent work! (Closes: #441608) * doc/*.?.xml (manpages): - add contrib to author tags and also add refmiscinfo to fix warnings * doc/style.txt, buildlib/defaults.mak, buildlib/manpage.mak: diff --git a/debian/control b/debian/control index cb20e2864..bcf89da9b 100644 --- a/debian/control +++ b/debian/control @@ -6,7 +6,7 @@ Uploaders: Michael Vogt , Otavio Salvador , Christian Perrier , Daniel Burrows , Luca Bruno , Julian Andres Klode Standards-Version: 3.8.2.0 -Build-Depends: debhelper (>= 5.0), libdb-dev, gettext (>= 0.12), libcurl4-gnutls-dev | libcurl3-gnutls-dev (>= 7.15.5), debiandoc-sgml, docbook-utils (>= 0.6.12), xsltproc, docbook-xsl, xmlto +Build-Depends: debhelper (>= 5.0), libdb-dev, gettext (>= 0.12), libcurl4-gnutls-dev | libcurl3-gnutls-dev (>= 7.15.5), debiandoc-sgml, docbook-utils (>= 0.6.12), xsltproc, docbook-xsl, xmlto, po4a (>= 0.34-2) Vcs-Bzr: http://bzr.debian.org/apt/debian-sid/ Package: apt diff --git a/debian/rules b/debian/rules index f1eb62b57..d19531dfc 100755 --- a/debian/rules +++ b/debian/rules @@ -186,6 +186,7 @@ apt-doc: build-doc # Build architecture-dependent files here. binary-arch: apt libapt-pkg-dev apt-utils apt-transport-https +apt_MANPAGES = apt-cache apt-cdrom apt-config apt-get apt-key apt-mark apt-secure apt apt.conf apt_preferences sources.list apt: build build-doc debian/shlibs.local dh_testdir -p$@ dh_testroot -p$@ @@ -226,7 +227,7 @@ apt: build build-doc debian/shlibs.local rm -f po/*.pot dh_installexamples -p$@ $(BLD)/docs/examples/* - dh_installman -p$@ + dh_installman -p$@ $(wildcard $(patsubst %,doc/%.[158],$(apt_MANPAGES)) $(patsubst %,doc/*/%.*.[158],$(apt_MANPAGES))) dh_installcron -p$@ dh_installdocs -p$@ dh_installchangelogs -p$@ @@ -269,6 +270,7 @@ libapt-pkg-dev: build debian/shlibs.local dh_md5sums -p$@ dh_builddeb -p$@ +apt-utils_MANPAGES = apt-sortpkgs apt-ftparchive apt-extracttemplates apt-utils: build debian/shlibs.local dh_testdir -p$@ dh_testroot -p$@ @@ -284,7 +286,7 @@ apt-utils: build debian/shlibs.local dh_installexamples -p$@ # Install the man pages.. - dh_installman -p$@ + dh_installman -p$@ $(wildcard $(patsubst %,doc/%.[158],$(apt-utils_MANPAGES)) $(patsubst %,doc/*/%.*.[158],$(apt-utils_MANPAGES))) dh_installchangelogs -p$@ dh_strip -p$@ diff --git a/doc/makefile b/doc/makefile index 6ea1c1343..e12de7228 100644 --- a/doc/makefile +++ b/doc/makefile @@ -26,22 +26,27 @@ TARGET = binary include $(COPY_H) #.PHONY: headers library clean veryclean all binary program doc doc.pt_BR doc.fr -doc: doc.fr doc.ja doc.pl doc.pt_BR doc.es +doc: po4a + for dir in $(SUBDIRS); do\ + $(MAKE) -C $$dir $@; \ + done -doc.fr: %.fr: - $(MAKE) -C fr $* +.PHONY: update-po po4a +update-po: + po4a --previous --no-backups --force --no-translations po4a.conf -doc.pt_BR: %.pt_BR: - $(MAKE) -C pt_BR $* +clean: po4a-clean clean-subdirs -doc.es: %.es: - $(MAKE) -C es $* +clean-subdirs: + for dir in $(SUBDIRS); do\ + $(MAKE) -C $$dir $@; \ + done -doc.ja: %.ja: - $(MAKE) -C ja $* +po4a-clean: + po4a --previous --rm-backups --rm-translations po4a.conf -doc.pl: %.pl: - $(MAKE) -C pl $* +po4a: + po4a --previous --no-backups po4a.conf ifdef DOXYGEN DOXYGEN_SOURCES = $(shell find $(BASE)/apt-pkg -not -name .\\\#* -and \( -name \*.cc -or -name \*.h \) ) diff --git a/doc/po/apt-doc.pot b/doc/po/apt-doc.pot new file mode 100644 index 000000000..ff42c7ee9 --- /dev/null +++ b/doc/po/apt-doc.pot @@ -0,0 +1,6430 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2009-07-30 22:55+0900\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: apt.8:17 +#, no-wrap +msgid "apt" +msgstr "" + +#. type: TH +#: apt.8:17 +#, no-wrap +msgid "16 June 1998" +msgstr "" + +#. type: TH +#: apt.8:17 +#, no-wrap +msgid "Debian GNU/Linux" +msgstr "" + +#. type: SH +#: apt.8:18 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: Plain text +#: apt.8:20 +msgid "apt - Advanced Package Tool" +msgstr "" + +#. type: SH +#: apt.8:20 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: Plain text +#: apt.8:22 +msgid "B" +msgstr "" + +#. type: SH +#: apt.8:22 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: Plain text +#: apt.8:31 +msgid "" +"APT is a management system for software packages. For normal day to day " +"package management there are several frontends available, such as " +"B(8) for the command line or B(8) for the X Window " +"System. Some options are only implemented in B(8) though." +msgstr "" + +#. type: SH +#: apt.8:31 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: Plain text +#: apt.8:33 apt.8:35 +msgid "None." +msgstr "" + +#. type: SH +#: apt.8:33 +#, no-wrap +msgid "FILES" +msgstr "" + +#. type: SH +#: apt.8:35 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: apt.8:42 +msgid "" +"B(8), B(8), B(5), B(5), " +"B(5), B(8)" +msgstr "" + +#. type: SH +#: apt.8:42 +#, no-wrap +msgid "DIAGNOSTICS" +msgstr "" + +#. type: Plain text +#: apt.8:44 +msgid "apt returns zero on normal operation, decimal 100 on error." +msgstr "" + +#. type: SH +#: apt.8:44 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: apt.8:46 +msgid "This manpage isn't even started." +msgstr "" + +#. type: Plain text +#: apt.8:55 +msgid "" +"See Ehttp://bugs.debian.org/aptE. If you wish to report a bug in " +"B, please see I or the " +"B(1) command." +msgstr "" + +#. type: SH +#: apt.8:55 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: apt.8:56 +msgid "apt was written by the APT team Eapt@packages.debian.orgE." +msgstr "" + +#. type: Plain text +#: apt.ent:2 +msgid "" +msgstr "" + +#. type: Plain text +#: apt.ent:10 +msgid "" +" " +" &docdir;examples/configure-index.gz\"> /etc/apt.conf\"> " +msgstr "" + +#. type: Plain text +#: apt.ent:17 +#, no-wrap +msgid "" +"\n" +"\n" +" apt.conf\n" +" 5\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:23 +#, no-wrap +msgid "" +"\n" +" apt-get\n" +" 8\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:29 +#, no-wrap +msgid "" +"\n" +" apt-config\n" +" 8\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:35 +#, no-wrap +msgid "" +"\n" +" apt-cdrom\n" +" 8\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:41 +#, no-wrap +msgid "" +"\n" +" apt-cache\n" +" 8\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:47 +#, no-wrap +msgid "" +"\n" +" apt_preferences\n" +" 5\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:53 +#, no-wrap +msgid "" +"\n" +" apt-key\n" +" 8\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:59 +#, no-wrap +msgid "" +"\n" +" apt-secure\n" +" 8\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:65 +#, no-wrap +msgid "" +"\n" +" apt-ftparchive\n" +" 1\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:72 +#, no-wrap +msgid "" +"\n" +" sources.list\n" +" 5\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:78 +#, no-wrap +msgid "" +"\n" +" reportbug\n" +" 1\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:84 +#, no-wrap +msgid "" +"\n" +" dpkg\n" +" 8\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:90 +#, no-wrap +msgid "" +"\n" +" dpkg-buildpackage\n" +" 1\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:96 +#, no-wrap +msgid "" +"\n" +" gzip\n" +" 1\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:102 +#, no-wrap +msgid "" +"\n" +" dpkg-scanpackages\n" +" 8\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:108 +#, no-wrap +msgid "" +"\n" +" dpkg-scansources\n" +" 8\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:114 +#, no-wrap +msgid "" +"\n" +" dselect\n" +" 8\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:120 +#, no-wrap +msgid "" +"\n" +" aptitude\n" +" 8\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:126 +#, no-wrap +msgid "" +"\n" +" synaptic\n" +" 8\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:132 +#, no-wrap +msgid "" +"\n" +" debsign\n" +" 1\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:138 +#, no-wrap +msgid "" +"\n" +" debsig-verify\n" +" 1\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:144 +#, no-wrap +msgid "" +"\n" +" gpg\n" +" 1\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:150 +#, no-wrap +msgid "" +"\n" +" gnome-apt\n" +" 1\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:156 +#, no-wrap +msgid "" +"\n" +" wajig\n" +" 1\n" +" \"\n" +">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:165 +#, no-wrap +msgid "" +"\n" +"\n" +"
apt@packages.debian.org
\n" +" Jason " +"Gunthorpe\n" +" 1998-2001 Jason " +"Gunthorpe\n" +" 28 October 2008\n" +" Linux\n" +msgstr "" + +#. type: Plain text +#: apt.ent:168 +#, no-wrap +msgid "" +" \n" +"\"> \n" +msgstr "" + +#. type: Plain text +#: apt.ent:174 apt.ent:204 +#, no-wrap +msgid "" +"\n" +" apt@packages.debian.org\n" +" \n" +"\">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:181 apt.ent:211 +#, no-wrap +msgid "" +"\n" +" Jason\n" +" Gunthorpe\n" +" \n" +"\">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:188 +#, no-wrap +msgid "" +"\n" +" Mike\n" +" O'Connor\n" +" \n" +"\">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:194 apt.ent:217 +#, no-wrap +msgid "" +"\n" +" APT team\n" +" \n" +"\">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:198 apt.ent:228 +#, no-wrap +msgid "" +"Linux\n" +"\">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:224 +#, no-wrap +msgid "" +"\n" +" Jason Gunthorpe\n" +" 1998-2001\n" +" \n" +"\">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:234 +#, no-wrap +msgid "" +"\n" +"\t\tQA Page\n" +"\t
\n" +"\">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:245 +#, no-wrap +msgid "" +"\n" +"Bugs\n" +" APT bug " +"page. \n" +" If you wish to report a bug in APT, please see\n" +" /usr/share/doc/debian/bug-reporting.txt or the\n" +" &reportbug; command.\n" +" \n" +" \n" +"\">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:253 +#, no-wrap +msgid "" +"\n" +"Author\n" +" APT was written by the APT team " +"apt@packages.debian.org.\n" +" \n" +" \n" +"\">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:263 +#, no-wrap +msgid "" +"\n" +"\n" +" \n" +" Show a short usage summary.\n" +" \n" +" \n" +" \n" +msgstr "" + +#. type: Plain text +#: apt.ent:271 +#, no-wrap +msgid "" +" \n" +" \n" +" \n" +" Show the program version.\n" +" \n" +" \n" +" \n" +msgstr "" + +#. type: Plain text +#: apt.ent:281 +#, no-wrap +msgid "" +" \n" +" \n" +" \n" +" Configuration File; Specify a configuration file to " +"use. \n" +" The program will read the default configuration file and then this \n" +" configuration file. See &apt-conf; for syntax information. \n" +" \n" +" \n" +" \n" +msgstr "" + +#. type: Plain text +#: apt.ent:293 +#, no-wrap +msgid "" +" \n" +" \n" +" \n" +" Set a Configuration Option; This will set an " +"arbitrary\n" +" configuration option. The syntax is .\n" +" and can be used " +"multiple\n" +" times to set different options.\n" +" \n" +" \n" +" \n" +"\">\n" +msgstr "" + +#. type: Plain text +#: apt.ent:304 +#, no-wrap +msgid "" +"\n" +"All command line options may be set using the configuration file, " +"the\n" +" descriptions indicate the configuration option to set. For boolean\n" +" options you can override the config file by using something like \n" +" ,, \n" +" or several other variations.\n" +" \n" +"\">\n" +msgstr "" + +#. The last update date +#. type: Content of: +#: apt-cache.8.xml:13 apt-config.8.xml:13 apt-extracttemplates.1.xml:13 apt-ftparchive.1.xml:13 apt-sortpkgs.1.xml:13 sources.list.5.xml:13 +msgid "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 29 " +"February 2004" +msgstr "" + +#. type: Content of: +#: apt-cache.8.xml:22 apt-cache.8.xml:28 +msgid "apt-cache" +msgstr "" + +#. type: Content of: +#: apt-cache.8.xml:23 apt-cdrom.8.xml:22 apt-config.8.xml:23 apt-get.8.xml:23 apt-key.8.xml:15 apt-mark.8.xml:23 apt-secure.8.xml:15 +msgid "8" +msgstr "" + +#. type: Content of: +#: apt-cache.8.xml:29 +msgid "APT package handling utility -- cache manipulator" +msgstr "" + +#. type: Content of: +#: apt-cache.8.xml:35 +msgid "" +"apt-cache " +" " +" add file " +"gencaches showpkg pkg showsrc pkg " +"stats dump dumpavail unmet " +"search regex show pkg " +"depends pkg rdepends pkg " +"pkgnames prefix dotty " +"pkg xvcg pkg " +"policy pkgs madison pkgs " +"" +msgstr "" + +#. type: Content of: +#: apt-cache.8.xml:61 apt-cdrom.8.xml:46 apt-config.8.xml:46 apt-extracttemplates.1.xml:42 apt-ftparchive.1.xml:54 apt-get.8.xml:114 apt-key.8.xml:33 apt-mark.8.xml:43 apt-secure.8.xml:39 apt-sortpkgs.1.xml:43 apt.conf.5.xml:38 apt_preferences.5.xml:32 sources.list.5.xml:32 +msgid "Description" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-cache.8.xml:62 +msgid "" +"<command>apt-cache</command> performs a variety of operations on APT's " +"package cache. <command>apt-cache</command> does not manipulate the state of " +"the system but does provide operations to search and generate interesting " +"output from the package metadata." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-cache.8.xml:67 apt-get.8.xml:120 +msgid "" +"Unless the <option>-h</option>, or <option>--help</option> option is given, " +"one of the commands below must be present." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:71 +msgid "add <replaceable>file(s)</replaceable>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:72 +msgid "" +"<literal>add</literal> adds the named package index files to the package " +"cache. This is for debugging only." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:76 +msgid "gencaches" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:77 +msgid "" +"<literal>gencaches</literal> performs the same operation as <command>apt-get " +"check</command>. It builds the source and package caches from the sources in " +"&sources-list; and from <filename>/var/lib/dpkg/status</filename>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:83 +msgid "showpkg <replaceable>pkg(s)</replaceable>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:84 +msgid "" +"<literal>showpkg</literal> displays information about the packages listed on " +"the command line. Remaining arguments are package names. The available " +"versions and reverse dependencies of each package listed are listed, as well " +"as forward dependencies for each version. Forward (normal) dependencies are " +"those packages upon which the package in question depends; reverse " +"dependencies are those packages that depend upon the package in " +"question. Thus, forward dependencies must be satisfied for a package, but " +"reverse dependencies need not be. For instance, <command>apt-cache showpkg " +"libreadline2</command> would produce output similar to the following:" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> +#: apt-cache.8.xml:96 +#, no-wrap +msgid "" +"Package: libreadline2\n" +"Versions: 2.1-12(/var/state/apt/lists/foo_Packages),\n" +"Reverse Depends: \n" +" libreadlineg2,libreadline2\n" +" libreadline2-altdev,libreadline2\n" +"Dependencies:\n" +"2.1-12 - libc5 (2 5.4.0-0) ncurses3.0 (0 (null))\n" +"Provides:\n" +"2.1-12 - \n" +"Reverse Provides: \n" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:108 +msgid "" +"Thus it may be seen that libreadline2, version 2.1-12, depends on libc5 and " +"ncurses3.0 which must be installed for libreadline2 to work. In turn, " +"libreadlineg2 and libreadline2-altdev depend on libreadline2. If " +"libreadline2 is installed, libc5 and ncurses3.0 (and ldso) must also be " +"installed; libreadlineg2 and libreadline2-altdev do not have to be " +"installed. For the specific meaning of the remainder of the output it is " +"best to consult the apt source code." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:117 +msgid "stats" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:117 +msgid "" +"<literal>stats</literal> displays some statistics about the cache. No " +"further arguments are expected. Statistics reported are:" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:120 +msgid "" +"<literal>Total package names</literal> is the number of package names found " +"in the cache." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:124 +msgid "" +"<literal>Normal packages</literal> is the number of regular, ordinary " +"package names; these are packages that bear a one-to-one correspondence " +"between their names and the names used by other packages for them in " +"dependencies. The majority of packages fall into this category." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:130 +msgid "" +"<literal>Pure virtual packages</literal> is the number of packages that " +"exist only as a virtual package name; that is, packages only \"provide\" the " +"virtual package name, and no package actually uses the name. For instance, " +"\"mail-transport-agent\" in the Debian GNU/Linux system is a pure virtual " +"package; several packages provide \"mail-transport-agent\", but there is no " +"package named \"mail-transport-agent\"." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:138 +msgid "" +"<literal>Single virtual packages</literal> is the number of packages with " +"only one package providing a particular virtual package. For example, in the " +"Debian GNU/Linux system, \"X11-text-viewer\" is a virtual package, but only " +"one package, xless, provides \"X11-text-viewer\"." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:144 +msgid "" +"<literal>Mixed virtual packages</literal> is the number of packages that " +"either provide a particular virtual package or have the virtual package name " +"as the package name. For instance, in the Debian GNU/Linux system, " +"\"debconf\" is both an actual package, and provided by the debconf-tiny " +"package." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:151 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:158 +msgid "" +"<literal>Total distinct</literal> versions is the number of package versions " +"found in the cache; this value is therefore at least equal to the number of " +"total package names. If more than one distribution (both \"stable\" and " +"\"unstable\", for instance), is being accessed, this value can be " +"considerably larger than the number of total package names." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:165 +msgid "" +"<literal>Total dependencies</literal> is the number of dependency " +"relationships claimed by all of the packages in the cache." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:172 +msgid "showsrc <replaceable>pkg(s)</replaceable>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:173 +msgid "" +"<literal>showsrc</literal> displays all the source package records that " +"match the given package names. All versions are shown, as well as all " +"records that declare the name to be a Binary." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:178 apt-config.8.xml:83 +msgid "dump" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:179 +msgid "" +"<literal>dump</literal> shows a short listing of every package in the " +"cache. It is primarily for debugging." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:183 +msgid "dumpavail" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:184 +msgid "" +"<literal>dumpavail</literal> prints out an available list to stdout. This is " +"suitable for use with &dpkg; and is used by the &dselect; method." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:188 +msgid "unmet" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:189 +msgid "" +"<literal>unmet</literal> displays a summary of all unmet dependencies in the " +"package cache." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:193 +msgid "show <replaceable>pkg(s)</replaceable>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:194 +msgid "" +"<literal>show</literal> performs a function similar to <command>dpkg " +"--print-avail</command>; it displays the package records for the named " +"packages." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:199 +msgid "search <replaceable>regex [ regex ... ]</replaceable>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:200 +msgid "" +"<literal>search</literal> performs a full text search on all available " +"package lists for the POSIX regex pattern given, see " +"<citerefentry><refentrytitle><command>regex</command></refentrytitle> " +"<manvolnum>7</manvolnum></citerefentry>. It searches the package names and " +"the descriptions for an occurrence of the regular expression and prints out " +"the package name and the short description, including virtual package " +"names. If <option>--full</option> is given then output identical to " +"<literal>show</literal> is produced for each matched package, and if " +"<option>--names-only</option> is given then the long description is not " +"searched, only the package name is." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:213 +msgid "" +"Separate arguments can be used to specify multiple search patterns that are " +"and'ed together." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:217 +msgid "depends <replaceable>pkg(s)</replaceable>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:218 +msgid "" +"<literal>depends</literal> shows a listing of each dependency a package has " +"and all the possible other packages that can fulfill that dependency." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:222 +msgid "rdepends <replaceable>pkg(s)</replaceable>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:223 +msgid "" +"<literal>rdepends</literal> shows a listing of each reverse dependency a " +"package has." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:227 +msgid "pkgnames <replaceable>[ prefix ]</replaceable>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:228 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:235 +msgid "dotty <replaceable>pkg(s)</replaceable>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:236 +msgid "" +"<literal>dotty</literal> takes a list of packages on the command line and " +"generates output suitable for use by dotty from the <ulink " +"url=\"http://www.research.att.com/sw/tools/graphviz/\">GraphViz</ulink> " +"package. The result will be a set of nodes and edges representing the " +"relationships between the packages. By default the given packages will trace " +"out all dependent packages; this can produce a very large graph. To limit " +"the output to only the packages listed on the command line, set the " +"<literal>APT::Cache::GivenOnly</literal> option." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:245 +msgid "" +"The resulting nodes will have several shapes; normal packages are boxes, " +"pure provides are triangles, mixed provides are diamonds, missing packages " +"are hexagons. Orange boxes mean recursion was stopped [leaf packages], blue " +"lines are pre-depends, green lines are conflicts." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:250 +msgid "Caution, dotty cannot graph larger sets of packages." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:253 +msgid "xvcg <replaceable>pkg(s)</replaceable>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:254 +msgid "" +"The same as <literal>dotty</literal>, only for xvcg from the <ulink " +"url=\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG " +"tool</ulink>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:258 +msgid "policy <replaceable>[ pkg(s) ]</replaceable>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:259 +msgid "" +"<literal>policy</literal> is meant to help debug issues relating to the " +"preferences file. With no arguments it will print out the priorities of each " +"source. Otherwise it prints out detailed information about the priority " +"selection of the named package." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:265 +msgid "madison <replaceable>/[ pkg(s) ]</replaceable>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:266 +msgid "" +"<literal>apt-cache</literal>'s <literal>madison</literal> command attempts " +"to mimic the output format and a subset of the functionality of the Debian " +"archive management tool, <literal>madison</literal>. It displays available " +"versions of a package in a tabular format. Unlike the original " +"<literal>madison</literal>, it can only display information for the " +"architecture for which APT has retrieved package lists " +"(<literal>APT::Architecture</literal>)." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:277 apt-config.8.xml:92 apt-extracttemplates.1.xml:55 apt-ftparchive.1.xml:491 apt-get.8.xml:299 apt-mark.8.xml:73 apt-sortpkgs.1.xml:53 apt.conf.5.xml:373 apt.conf.5.xml:395 +msgid "options" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:281 +msgid "<option>-p</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:281 +msgid "<option>--pkg-cache</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:282 +msgid "" +"Select the file to store the package cache. The package cache is the primary " +"cache used by all operations. Configuration Item: " +"<literal>Dir::Cache::pkgcache</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:287 apt-ftparchive.1.xml:534 apt-get.8.xml:356 apt-sortpkgs.1.xml:57 +msgid "<option>-s</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:287 +msgid "<option>--src-cache</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:288 +msgid "" +"Select the file to store the source cache. The source is used only by " +"<literal>gencaches</literal> and it stores a parsed version of the package " +"information from remote sources. When building the package cache the source " +"cache is used to avoid reparsing all of the package files. Configuration " +"Item: <literal>Dir::Cache::srcpkgcache</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:295 apt-ftparchive.1.xml:508 apt-get.8.xml:346 +msgid "<option>-q</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:295 apt-ftparchive.1.xml:508 apt-get.8.xml:346 +msgid "<option>--quiet</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:296 +msgid "" +"Quiet; produces output suitable for logging, omitting progress indicators. " +"More q's will produce more quietness up to a maximum of 2. You can also use " +"<option>-q=#</option> to set the quietness level, overriding the " +"configuration file. Configuration Item: <literal>quiet</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:302 +msgid "<option>-i</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:302 +msgid "<option>--important</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:303 +msgid "" +"Print only important dependencies; for use with unmet and depends. Causes " +"only Depends and Pre-Depends relations to be printed. Configuration Item: " +"<literal>APT::Cache::Important</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:308 apt-cdrom.8.xml:120 apt-get.8.xml:313 +msgid "<option>-f</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:308 +msgid "<option>--full</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:309 +msgid "" +"Print full package records when searching. Configuration Item: " +"<literal>APT::Cache::ShowFull</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:313 apt-cdrom.8.xml:130 +msgid "<option>-a</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:313 +msgid "<option>--all-versions</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:314 +msgid "" +"Print full records for all available versions. This is the default; to turn " +"it off, use <option>--no-all-versions</option>. If " +"<option>--no-all-versions</option> is specified, only the candidate version " +"will displayed (the one which would be selected for installation). This " +"option is only applicable to the <literal>show</literal> command. " +"Configuration Item: <literal>APT::Cache::AllVersions</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:322 +msgid "<option>-g</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:322 +msgid "<option>--generate</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:323 +msgid "" +"Perform automatic package cache regeneration, rather than use the cache as " +"it is. This is the default; to turn it off, use " +"<option>--no-generate</option>. Configuration Item: " +"<literal>APT::Cache::Generate</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:328 +msgid "<option>--names-only</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:328 apt-cdrom.8.xml:138 +msgid "<option>-n</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:329 +msgid "" +"Only search on the package names, not the long descriptions. Configuration " +"Item: <literal>APT::Cache::NamesOnly</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:333 +msgid "<option>--all-names</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:334 +msgid "" +"Make <literal>pkgnames</literal> print all names, including virtual packages " +"and missing dependencies. Configuration Item: " +"<literal>APT::Cache::AllNames</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:339 +msgid "<option>--recurse</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:340 +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>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:345 +msgid "<option>--installed</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:347 +msgid "" +"Limit the output of <literal>depends</literal> and " +"<literal>rdepends</literal> to packages which are currently installed. " +"Configuration Item: <literal>APT::Cache::Installed</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist> +#: apt-cache.8.xml:352 apt-cdrom.8.xml:149 apt-config.8.xml:97 apt-extracttemplates.1.xml:66 apt-ftparchive.1.xml:546 apt-get.8.xml:534 apt-sortpkgs.1.xml:63 +msgid "&apt-commonoptions;" +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt-cache.8.xml:357 apt-get.8.xml:539 apt-key.8.xml:137 apt.conf.5.xml:824 +msgid "Files" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:359 apt-get.8.xml:541 +msgid "<filename>/etc/apt/sources.list</filename>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:360 apt-get.8.xml:542 +msgid "" +"Locations to fetch packages from. Configuration Item: " +"<literal>Dir::Etc::SourceList</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:364 apt-get.8.xml:575 +msgid "<filename>&statedir;/lists/</filename>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:365 apt-get.8.xml:576 +msgid "" +"Storage area for state information for each package resource specified in " +"&sources-list; Configuration Item: <literal>Dir::State::Lists</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:370 apt-get.8.xml:581 +msgid "<filename>&statedir;/lists/partial/</filename>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:371 apt-get.8.xml:582 +msgid "" +"Storage area for state information in transit. Configuration Item: " +"<literal>Dir::State::Lists</literal> (implicit partial)." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt-cache.8.xml:377 apt-cdrom.8.xml:154 apt-config.8.xml:102 apt-extracttemplates.1.xml:73 apt-ftparchive.1.xml:562 apt-get.8.xml:588 apt-key.8.xml:161 apt-mark.8.xml:104 apt-secure.8.xml:180 apt-sortpkgs.1.xml:68 apt.conf.5.xml:828 apt_preferences.5.xml:613 sources.list.5.xml:220 +msgid "See Also" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-cache.8.xml:378 +msgid "&apt-conf;, &sources-list;, &apt-get;" +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt-cache.8.xml:382 apt-cdrom.8.xml:159 apt-config.8.xml:107 apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:566 apt-get.8.xml:594 apt-mark.8.xml:108 apt-sortpkgs.1.xml:72 +msgid "Diagnostics" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-cache.8.xml:383 +msgid "" +"<command>apt-cache</command> returns zero on normal operation, decimal 100 " +"on error." +msgstr "" + +#. type: Content of: <refentry><refentryinfo> +#: apt-cdrom.8.xml:13 +msgid "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>14 " +"February 2004</date>" +msgstr "" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-cdrom.8.xml:21 apt-cdrom.8.xml:27 +msgid "apt-cdrom" +msgstr "" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-cdrom.8.xml:28 +msgid "APT CDROM management utility" +msgstr "" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-cdrom.8.xml:34 +msgid "" +"<command>apt-cdrom</command> <arg><option>-hvrmfan</option></arg> " +"<arg><option>-d=<replaceable>cdrom mount point</replaceable></option></arg> " +"<arg><option>-o=<replaceable>config string</replaceable></option></arg> " +"<arg><option>-c=<replaceable>file</replaceable></option></arg> <group> " +"<arg>add</arg> <arg>ident</arg> </group>" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:47 +msgid "" +"<command>apt-cdrom</command> is used to add a new CDROM to APTs list of " +"available sources. <command>apt-cdrom</command> takes care of determining " +"the structure of the disc as well as correcting for several possible " +"mis-burns and verifying the index files." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:54 +msgid "" +"It is necessary to use <command>apt-cdrom</command> to add CDs to the APT " +"system, it cannot be done by hand. Furthermore each disk in a multi-cd set " +"must be inserted and scanned separately to account for possible mis-burns." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:64 +msgid "add" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:65 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:73 +msgid "" +"APT uses a CDROM ID to track which disc is currently in the drive and " +"maintains a database of these IDs in " +"<filename>&statedir;/cdroms.list</filename>" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:80 +msgid "ident" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:81 +msgid "" +"A debugging tool to report the identity of the current disc as well as the " +"stored file name" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:60 +msgid "" +"Unless the <option>-h</option>, or <option>--help</option> option is given " +"one of the commands below must be present. <placeholder " +"type=\"variablelist\" id=\"0\"/>" +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt-cdrom.8.xml:90 +msgid "Options" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:94 apt-ftparchive.1.xml:502 apt-get.8.xml:308 +msgid "<option>-d</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:94 +msgid "<option>--cdrom</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:95 +msgid "" +"Mount point; specify the location to mount the cdrom. This mount point must " +"be listed in <filename>/etc/fstab</filename> and properly configured. " +"Configuration Item: <literal>Acquire::cdrom::mount</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:103 +msgid "<option>-r</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:103 +msgid "<option>--rename</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:104 +msgid "" +"Rename a disc; change the label of a disk or override the disks given " +"label. This option will cause <command>apt-cdrom</command> to prompt for a " +"new label. Configuration Item: <literal>APT::CDROM::Rename</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:112 apt-get.8.xml:327 +msgid "<option>-m</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:112 +msgid "<option>--no-mount</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:113 +msgid "" +"No mounting; prevent <command>apt-cdrom</command> from mounting and " +"unmounting the mount point. Configuration Item: " +"<literal>APT::CDROM::NoMount</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:120 +msgid "<option>--fast</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:121 +msgid "" +"Fast Copy; Assume the package files are valid and do not check every " +"package. This option should be used only if <command>apt-cdrom</command> has " +"been run on this disc before and did not detect any errors. Configuration " +"Item: <literal>APT::CDROM::Fast</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:130 +msgid "<option>--thorough</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:131 +msgid "" +"Thorough Package Scan; This option may be needed with some old Debian " +"1.1/1.2 discs that have Package files in strange places. It takes much " +"longer to scan the CD but will pick them all up." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:139 apt-get.8.xml:358 +msgid "<option>--just-print</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:140 apt-get.8.xml:360 +msgid "<option>--recon</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:141 apt-get.8.xml:361 +msgid "<option>--no-act</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:142 +msgid "" +"No Changes; Do not change the &sources-list; file and do not write index " +"files. Everything is still checked however. Configuration Item: " +"<literal>APT::CDROM::NoAct</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:155 +msgid "&apt-conf;, &apt-get;, &sources-list;" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:160 +msgid "" +"<command>apt-cdrom</command> returns zero on normal operation, decimal 100 " +"on error." +msgstr "" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-config.8.xml:22 apt-config.8.xml:28 +msgid "apt-config" +msgstr "" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-config.8.xml:29 +msgid "APT Configuration Query program" +msgstr "" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-config.8.xml:35 +msgid "" +"<command>apt-config</command> <arg><option>-hv</option></arg> " +"<arg><option>-o=<replaceable>config string</replaceable></option></arg> " +"<arg><option>-c=<replaceable>file</replaceable></option></arg> <group " +"choice=\"req\"> <arg>shell</arg> <arg>dump</arg> </group>" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-config.8.xml:47 +msgid "" +"<command>apt-config</command> is an internal program used by various " +"portions of the APT suite to provide consistent configurability. It accesses " +"the main configuration file <filename>/etc/apt/apt.conf</filename> in a " +"manner that is easy to use by scripted applications." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-config.8.xml:52 apt-ftparchive.1.xml:70 +msgid "" +"Unless the <option>-h</option>, or <option>--help</option> option is given " +"one of the commands below must be present." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-config.8.xml:57 +msgid "shell" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-config.8.xml:59 +msgid "" +"shell is used to access the configuration information from a shell " +"script. It is given pairs of arguments, the first being a shell variable and " +"the second the configuration value to query. As output it lists a series of " +"shell assignments commands for each present value. In a shell script it " +"should be used like:" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> +#: apt-config.8.xml:67 +#, no-wrap +msgid "" +"OPTS=\"-f\"\n" +"RES=`apt-config shell OPTS MyApp::options`\n" +"eval $RES\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-config.8.xml:72 +msgid "" +"This will set the shell environment variable $OPTS to the value of " +"MyApp::options with a default of <option>-f</option>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-config.8.xml:76 +msgid "" +"The configuration item may be postfixed with a /[fdbi]. f returns file " +"names, d returns directories, b returns true or false and i returns an " +"integer. Each of the returns is normalized and verified internally." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-config.8.xml:85 +msgid "Just show the contents of the configuration space." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-config.8.xml:103 apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-mark.8.xml:105 apt-sortpkgs.1.xml:69 +msgid "&apt-conf;" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-config.8.xml:108 +msgid "" +"<command>apt-config</command> returns zero on normal operation, decimal 100 " +"on error." +msgstr "" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-extracttemplates.1.xml:22 apt-extracttemplates.1.xml:28 +msgid "apt-extracttemplates" +msgstr "" + +#. type: Content of: <refentry><refmeta><manvolnum> +#: apt-extracttemplates.1.xml:23 apt-ftparchive.1.xml:23 apt-sortpkgs.1.xml:23 +msgid "1" +msgstr "" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-extracttemplates.1.xml:29 +msgid "Utility to extract DebConf config and templates from Debian packages" +msgstr "" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-extracttemplates.1.xml:35 +msgid "" +"<command>apt-extracttemplates</command> <arg><option>-hv</option></arg> " +"<arg><option>-t=<replaceable>temporary " +"directory</replaceable></option></arg> <arg choice=\"plain\" " +"rep=\"repeat\"><replaceable>file</replaceable></arg>" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-extracttemplates.1.xml:43 +msgid "" +"<command>apt-extracttemplates</command> will take one or more Debian package " +"files as input and write out (to a temporary directory) all associated " +"config scripts and template files. For each passed in package that contains " +"config scripts and templates, one line of output will be generated in the " +"format:" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-extracttemplates.1.xml:48 +msgid "package version template-file config-script" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-extracttemplates.1.xml:49 +msgid "" +"template-file and config-script are written to the temporary directory " +"specified by the -t or --tempdir " +"(<literal>APT::ExtractTemplates::TempDir</literal>) directory, with " +"filenames of the form <filename>package.template.XXXX</filename> and " +"<filename>package.config.XXXX</filename>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-extracttemplates.1.xml:59 apt-get.8.xml:468 +msgid "<option>-t</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-extracttemplates.1.xml:59 +msgid "<option>--tempdir</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-extracttemplates.1.xml:61 +msgid "" +"Temporary directory in which to write extracted debconf template files and " +"config scripts Configuration Item: " +"<literal>APT::ExtractTemplates::TempDir</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-extracttemplates.1.xml:78 +msgid "" +"<command>apt-extracttemplates</command> returns zero on normal operation, " +"decimal 100 on error." +msgstr "" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-ftparchive.1.xml:22 apt-ftparchive.1.xml:28 +msgid "apt-ftparchive" +msgstr "" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-ftparchive.1.xml:29 +msgid "Utility to generate index files" +msgstr "" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-ftparchive.1.xml:35 +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>" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:55 +msgid "" +"<command>apt-ftparchive</command> is the command line tool that generates " +"the index files that APT uses to access a distribution source. The index " +"files should be generated on the origin site based on the content of that " +"site." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:59 +msgid "" +"<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; " +"program, incorporating its entire functionality via the " +"<literal>packages</literal> command. It also contains a contents file " +"generator, <literal>contents</literal>, and an elaborate means to 'script' " +"the generation process for a complete archive." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:65 +msgid "" +"Internally <command>apt-ftparchive</command> can make use of binary " +"databases to cache the contents of a .deb file and it does not rely on any " +"external programs aside from &gzip;. When doing a full generate it " +"automatically performs file-change checks and builds the desired compressed " +"output files." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:74 +msgid "packages" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:76 +msgid "" +"The packages command generates a package file from a directory tree. It " +"takes the given directory and recursively searches it for .deb files, " +"emitting a package record to stdout for each. This command is approximately " +"equivalent to &dpkg-scanpackages;." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:81 apt-ftparchive.1.xml:105 +msgid "The option <option>--db</option> can be used to specify a binary caching DB." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:84 +msgid "sources" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:86 +msgid "" +"The <literal>sources</literal> command generates a source index file from a " +"directory tree. It takes the given directory and recursively searches it " +"for .dsc files, emitting a source record to stdout for each. This command is " +"approximately equivalent to &dpkg-scansources;." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:91 +msgid "" +"If an override file is specified then a source override file will be looked " +"for with an extension of .src. The --source-override option can be used to " +"change the source override file that will be used." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:96 +msgid "contents" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:98 +msgid "" +"The <literal>contents</literal> command generates a contents file from a " +"directory tree. It takes the given directory and recursively searches it for " +".deb files, and reads the file list from each file. It then sorts and writes " +"to stdout the list of files matched to packages. Directories are not written " +"to the output. If multiple packages own the same file then each package is " +"separated by a comma in the output." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:108 +msgid "release" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:110 +msgid "" +"The <literal>release</literal> command generates a Release file from a " +"directory tree. It recursively searches the given directory for Packages, " +"Packages.gz, Packages.bz2, Sources, Sources.gz, Sources.bz2, Release and " +"md5sum.txt files. It then writes to stdout a Release file containing an MD5 " +"digest and SHA1 digest for each file." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:117 +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>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:127 +msgid "generate" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:129 +msgid "" +"The <literal>generate</literal> command is designed to be runnable from a " +"cron script and builds indexes according to the given config file. The " +"config language provides a flexible means of specifying which index files " +"are built from which directories, as well as providing a simple means of " +"maintaining the required settings." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:136 apt-get.8.xml:272 +msgid "clean" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:138 +msgid "" +"The <literal>clean</literal> command tidies the databases used by the given " +"configuration file by removing any records that are no longer necessary." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:144 +msgid "The Generate Configuration" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:146 +msgid "" +"The <literal>generate</literal> command uses a configuration file to " +"describe the archives that are going to be generated. It follows the typical " +"ISC configuration format as seen in ISC tools like bind 8 and dhcpd. " +"&apt-conf; contains a description of the syntax. Note that the generate " +"configuration is parsed in sectional manner, but &apt-conf; is parsed in a " +"tree manner. This only effects how the scope tag is handled." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:154 +msgid "The generate configuration has 4 separate sections, each described below." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:156 +msgid "Dir Section" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:158 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:163 +msgid "ArchiveDir" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:165 +msgid "" +"Specifies the root of the FTP archive, in a standard Debian configuration " +"this is the directory that contains the <filename>ls-LR</filename> and dist " +"nodes." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:170 +msgid "OverrideDir" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:172 +msgid "Specifies the location of the override files." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:175 +msgid "CacheDir" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:177 +msgid "Specifies the location of the cache files" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:180 +msgid "FileListDir" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:182 +msgid "" +"Specifies the location of the file list files, if the " +"<literal>FileList</literal> setting is used below." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:188 +msgid "Default Section" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:190 +msgid "" +"The <literal>Default</literal> section specifies default values, and " +"settings that control the operation of the generator. Other sections may " +"override these defaults with a per-section setting." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:194 +msgid "Packages::Compress" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:196 +msgid "" +"Sets the default compression schemes to use for the Package index files. It " +"is a string that contains a space separated list of at least one of: '.' (no " +"compression), 'gzip' and 'bzip2'. The default for all compression schemes is " +"'. gzip'." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:202 +msgid "Packages::Extensions" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:204 +msgid "" +"Sets the default list of file extensions that are package files. This " +"defaults to '.deb'." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:208 +msgid "Sources::Compress" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:210 +msgid "" +"This is similar to <literal>Packages::Compress</literal> except that it " +"controls the compression for the Sources files." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:214 +msgid "Sources::Extensions" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:216 +msgid "" +"Sets the default list of file extensions that are source files. This " +"defaults to '.dsc'." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:220 +msgid "Contents::Compress" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:222 +msgid "" +"This is similar to <literal>Packages::Compress</literal> except that it " +"controls the compression for the Contents files." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:226 +msgid "DeLinkLimit" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:228 +msgid "" +"Specifies the number of kilobytes to delink (and replace with hard links) " +"per run. This is used in conjunction with the per-section " +"<literal>External-Links</literal> setting." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:233 +msgid "FileMode" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:235 +msgid "" +"Specifies the mode of all created index files. It defaults to 0644. All " +"index files are set to this mode with no regard to the umask." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:242 +msgid "TreeDefault Section" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:244 +msgid "" +"Sets defaults specific to <literal>Tree</literal> sections. All of these " +"variables are substitution variables and have the strings $(DIST), " +"$(SECTION) and $(ARCH) replaced with their respective values." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:249 +msgid "MaxContentsChange" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:251 +msgid "" +"Sets the number of kilobytes of contents files that are generated each " +"day. The contents files are round-robined so that over several days they " +"will all be rebuilt." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:256 +msgid "ContentsAge" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:258 +msgid "" +"Controls the number of days a contents file is allowed to be checked without " +"changing. If this limit is passed the mtime of the contents file is " +"updated. This case can occur if the package file is changed in such a way " +"that does not result in a new contents file [override edit for instance]. A " +"hold off is allowed in hopes that new .debs will be installed, requiring a " +"new file anyhow. The default is 10, the units are in days." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:267 +msgid "Directory" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:269 +msgid "" +"Sets the top of the .deb directory tree. Defaults to " +"<filename>$(DIST)/$(SECTION)/binary-$(ARCH)/</filename>" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:273 +msgid "SrcDirectory" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:275 +msgid "" +"Sets the top of the source package directory tree. Defaults to " +"<filename>$(DIST)/$(SECTION)/source/</filename>" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:279 apt-ftparchive.1.xml:405 +msgid "Packages" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:281 +msgid "" +"Sets the output Packages file. Defaults to " +"<filename>$(DIST)/$(SECTION)/binary-$(ARCH)/Packages</filename>" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:285 apt-ftparchive.1.xml:410 +msgid "Sources" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:287 +msgid "" +"Sets the output Packages file. Defaults to " +"<filename>$(DIST)/$(SECTION)/source/Sources</filename>" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:291 +msgid "InternalPrefix" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:293 +msgid "" +"Sets the path prefix that causes a symlink to be considered an internal link " +"instead of an external link. Defaults to " +"<filename>$(DIST)/$(SECTION)/</filename>" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:298 apt-ftparchive.1.xml:416 +msgid "Contents" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:300 +msgid "" +"Sets the output Contents file. Defaults to " +"<filename>$(DIST)/Contents-$(ARCH)</filename>. If this setting causes " +"multiple Packages files to map onto a single Contents file (such as the " +"default) then <command>apt-ftparchive</command> will integrate those " +"package files together automatically." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:307 +msgid "Contents::Header" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:309 +msgid "Sets header file to prepend to the contents output." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:312 apt-ftparchive.1.xml:441 +msgid "BinCacheDB" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:314 +msgid "" +"Sets the binary cache database to use for this section. Multiple sections " +"can share the same database." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:318 +msgid "FileList" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:320 +msgid "" +"Specifies that instead of walking the directory tree, " +"<command>apt-ftparchive</command> should read the list of files from the " +"given file. Relative files names are prefixed with the archive directory." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:325 +msgid "SourceFileList" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:327 +msgid "" +"Specifies that instead of walking the directory tree, " +"<command>apt-ftparchive</command> should read the list of files from the " +"given file. Relative files names are prefixed with the archive directory. " +"This is used when processing source indexes." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:335 +msgid "Tree Section" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:337 +msgid "" +"The <literal>Tree</literal> section defines a standard Debian file tree " +"which consists of a base directory, then multiple sections in that base " +"directory and finally multiple Architectures in each section. The exact " +"pathing used is defined by the <literal>Directory</literal> substitution " +"variable." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:342 +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>." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:347 +msgid "" +"All of the settings defined in the <literal>TreeDefault</literal> section " +"can be use in a <literal>Tree</literal> section as well as three new " +"variables." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:350 +msgid "" +"When processing a <literal>Tree</literal> section " +"<command>apt-ftparchive</command> performs an operation similar to:" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><informalexample><programlisting> +#: apt-ftparchive.1.xml:353 +#, 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 "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:359 +msgid "Sections" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:361 +msgid "" +"This is a space separated list of sections which appear under the " +"distribution, typically this is something like <literal>main contrib " +"non-free</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:366 +msgid "Architectures" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:368 +msgid "" +"This is a space separated list of all the architectures that appear under " +"search section. The special architecture 'source' is used to indicate that " +"this tree has a source archive." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:373 apt-ftparchive.1.xml:421 +msgid "BinOverride" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:375 +msgid "" +"Sets the binary override file. The override file contains section, priority " +"and maintainer address information." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:379 apt-ftparchive.1.xml:426 +msgid "SrcOverride" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:381 +msgid "" +"Sets the source override file. The override file contains section " +"information." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:385 apt-ftparchive.1.xml:431 +msgid "ExtraOverride" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:387 apt-ftparchive.1.xml:433 +msgid "Sets the binary extra override file." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:390 apt-ftparchive.1.xml:436 +msgid "SrcExtraOverride" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:392 apt-ftparchive.1.xml:438 +msgid "Sets the source extra override file." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:397 +msgid "BinDirectory Section" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:399 +msgid "" +"The <literal>bindirectory</literal> section defines a binary directory tree " +"with no special structure. The scope tag specifies the location of the " +"binary directory and the settings are similar to the <literal>Tree</literal> " +"section with no substitution variables or " +"<literal>Section</literal><literal>Architecture</literal> settings." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:407 +msgid "Sets the Packages file output." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:412 +msgid "" +"Sets the Sources file output. At least one of <literal>Packages</literal> or " +"<literal>Sources</literal> is required." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:418 +msgid "Sets the Contents file output. (optional)" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:423 +msgid "Sets the binary override file." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:428 +msgid "Sets the source override file." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:443 +msgid "Sets the cache DB." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:446 +msgid "PathPrefix" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:448 +msgid "Appends a path to all the output paths." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:451 +msgid "FileList, SourceFileList" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:453 +msgid "Specifies the file list file." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:460 +msgid "The Binary Override File" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:461 +msgid "" +"The binary override file is fully compatible with &dpkg-scanpackages;. It " +"contains 4 fields separated by spaces. The first field is the package name, " +"the second is the priority to force that package to, the third is the the " +"section to force that package to and the final field is the maintainer " +"permutation field." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><literallayout> +#: apt-ftparchive.1.xml:467 +#, no-wrap +msgid "old [// oldn]* => new" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><literallayout> +#: apt-ftparchive.1.xml:469 +#, no-wrap +msgid "new" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:466 +msgid "" +"The general form of the maintainer field is: <placeholder " +"type=\"literallayout\" id=\"0\"/> or simply, <placeholder " +"type=\"literallayout\" id=\"1\"/> The first form allows a double-slash " +"separated list of old email addresses to be specified. If any of those are " +"found then new is substituted for the maintainer field. The second form " +"unconditionally substitutes the maintainer field." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:477 +msgid "The Source Override File" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:479 +msgid "" +"The source override file is fully compatible with &dpkg-scansources;. It " +"contains 2 fields separated by spaces. The first fields is the source " +"package name, the second is the section to assign it." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:484 +msgid "The Extra Override File" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:486 +msgid "" +"The extra override file allows any arbitrary tag to be added or replaced in " +"the output. It has 3 columns, the first is the package, the second is the " +"tag and the remainder of the line is the new value." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:495 +msgid "<option>--md5</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:497 +msgid "" +"Generate MD5 sums. This defaults to on, when turned off the generated index " +"files will not have MD5Sum fields where possible. Configuration Item: " +"<literal>APT::FTPArchive::MD5</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:502 +msgid "<option>--db</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:504 +msgid "" +"Use a binary caching DB. This has no effect on the generate command. " +"Configuration Item: <literal>APT::FTPArchive::DB</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:510 +msgid "" +"Quiet; produces output suitable for logging, omitting progress indicators. " +"More q's will produce more quiet up to a maximum of 2. You can also use " +"<option>-q=#</option> to set the quiet level, overriding the configuration " +"file. Configuration Item: <literal>quiet</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:516 +msgid "<option>--delink</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:518 +msgid "" +"Perform Delinking. If the <literal>External-Links</literal> setting is used " +"then this option actually enables delinking of the files. It defaults to on " +"and can be turned off with <option>--no-delink</option>. Configuration " +"Item: <literal>APT::FTPArchive::DeLinkAct</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:524 +msgid "<option>--contents</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:526 +msgid "" +"Perform contents generation. When this option is set and package indexes are " +"being generated with a cache DB then the file listing will also be extracted " +"and stored in the DB for later use. When using the generate command this " +"option also allows the creation of any Contents files. The default is on. " +"Configuration Item: <literal>APT::FTPArchive::Contents</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:534 +msgid "<option>--source-override</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:536 +msgid "" +"Select the source override file to use with the <literal>sources</literal> " +"command. Configuration Item: " +"<literal>APT::FTPArchive::SourceOverride</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:540 +msgid "<option>--readonly</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:542 +msgid "" +"Make the caching databases read only. Configuration Item: " +"<literal>APT::FTPArchive::ReadOnlyDB</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:551 apt.conf.5.xml:818 apt_preferences.5.xml:460 sources.list.5.xml:180 +msgid "Examples" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><programlisting> +#: apt-ftparchive.1.xml:557 +#, no-wrap +msgid "" +"<command>apt-ftparchive</command> packages " +"<replaceable>directory</replaceable> | <command>gzip</command> > " +"<filename>Packages.gz</filename>\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:553 +msgid "" +"To create a compressed Packages file for a directory containing binary " +"packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:567 +msgid "" +"<command>apt-ftparchive</command> returns zero on normal operation, decimal " +"100 on error." +msgstr "" + +#. The last update date +#. type: Content of: <refentry><refentryinfo> +#: apt-get.8.xml:13 +msgid "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>08 " +"November 2008</date>" +msgstr "" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-get.8.xml:22 apt-get.8.xml:28 +msgid "apt-get" +msgstr "" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-get.8.xml:29 +msgid "APT package handling utility -- command-line interface" +msgstr "" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-get.8.xml:35 +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>" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:115 +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;." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:124 apt-key.8.xml:122 +msgid "update" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:125 +msgid "" +"<literal>update</literal> is used to resynchronize the package index files " +"from their sources. The indexes of available packages are fetched from the " +"location(s) specified in <filename>/etc/apt/sources.list</filename>. For " +"example, when using a Debian archive, this command retrieves and scans the " +"<filename>Packages.gz</filename> files, so that information about new and " +"updated packages is available. An <literal>update</literal> should always be " +"performed before an <literal>upgrade</literal> or " +"<literal>dist-upgrade</literal>. Please be aware that the overall progress " +"meter will be incorrect as the size of the package files cannot be known in " +"advance." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:136 +msgid "upgrade" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:137 +msgid "" +"<literal>upgrade</literal> is used to install the newest versions of all " +"packages currently installed on the system from the sources enumerated in " +"<filename>/etc/apt/sources.list</filename>. Packages currently installed " +"with new versions available are retrieved and upgraded; under no " +"circumstances are currently installed packages removed, or packages not " +"already installed retrieved and installed. New versions of currently " +"installed packages that cannot be upgraded without changing the install " +"status of another package will be left at their current version. An " +"<literal>update</literal> must be performed first so that " +"<command>apt-get</command> knows that new versions of packages are " +"available." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:149 +msgid "dselect-upgrade" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:150 +msgid "" +"<literal>dselect-upgrade</literal> is used in conjunction with the " +"traditional Debian packaging front-end, " +"&dselect;. <literal>dselect-upgrade</literal> follows the changes made by " +"&dselect; to the <literal>Status</literal> field of available packages, and " +"performs the actions necessary to realize that state (for instance, the " +"removal of old and the installation of new packages)." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:159 +msgid "dist-upgrade" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:160 +msgid "" +"<literal>dist-upgrade</literal> in addition to performing the function of " +"<literal>upgrade</literal>, also intelligently handles changing dependencies " +"with new versions of packages; <command>apt-get</command> has a \"smart\" " +"conflict resolution system, and it will attempt to upgrade the most " +"important packages at the expense of less important ones if necessary. So, " +"<literal>dist-upgrade</literal> command may remove some packages. The " +"<filename>/etc/apt/sources.list</filename> file contains a list of locations " +"from which to retrieve desired package files. See also &apt-preferences; " +"for a mechanism for overriding the general settings for individual packages." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:172 +msgid "install" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:174 +msgid "" +"<literal>install</literal> is followed by one or more packages desired for " +"installation or upgrading. Each package is a package name, not a fully " +"qualified filename (for instance, in a Debian GNU/Linux system, libc6 would " +"be the argument provided, not <literal>libc6_1.9.6-2.deb</literal>). All " +"packages required by the package(s) specified for installation will also be " +"retrieved and installed. The <filename>/etc/apt/sources.list</filename> " +"file is used to locate the desired packages. If a hyphen is appended to the " +"package name (with no intervening space), the identified package will be " +"removed if it is installed. Similarly a plus sign can be used to designate " +"a package to install. These latter features may be used to override " +"decisions made by apt-get's conflict resolution system." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:192 +msgid "" +"A specific version of a package can be selected for installation by " +"following the package name with an equals and the version of the package to " +"select. This will cause that version to be located and selected for " +"install. Alternatively a specific distribution can be selected by following " +"the package name with a slash and the version of the distribution or the " +"Archive name (stable, testing, unstable)." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:199 +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:202 +msgid "" +"This is also the target to use if you want to upgrade one or more " +"already-installed packages without upgrading every package you have on your " +"system. Unlike the \"upgrade\" target, which installs the newest version of " +"all currently installed packages, \"install\" will install the newest " +"version of only the package(s) specified. Simply provide the name of the " +"package(s) you wish to upgrade, and if a newer version is available, it (and " +"its dependencies, as described above) will be downloaded and installed." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:213 +msgid "" +"Finally, the &apt-preferences; mechanism allows you to create an alternative " +"installation policy for individual packages." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:217 +msgid "" +"If no package matches the given expression and the expression contains one " +"of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and " +"it is applied to all package names in the database. Any matches are then " +"installed (or removed). Note that matching is done by substring so 'lo.*' " +"matches 'how-lo' and 'lowest'. If this is undesired, anchor the regular " +"expression with a '^' or '$' character, or create a more specific regular " +"expression." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:226 +msgid "remove" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:227 +msgid "" +"<literal>remove</literal> is identical to <literal>install</literal> except " +"that packages are removed instead of installed. Note the removing a package " +"leaves its configuration files in system. If a plus sign is appended to the " +"package name (with no intervening space), the identified package will be " +"installed instead of removed." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:234 +msgid "purge" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:235 +msgid "" +"<literal>purge</literal> is identical to <literal>remove</literal> except " +"that packages are removed and purged (any configuration files are deleted " +"too)." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:239 +msgid "source" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:240 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:251 +msgid "" +"A specific source version can be retrieved by postfixing the source name " +"with an equals and then the version to fetch, similar to the mechanism used " +"for the package files. This enables exact matching of the source package " +"name and version, implicitly enabling the " +"<literal>APT::Get::Only-Source</literal> option." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:257 +msgid "" +"Note that source packages are not tracked like binary packages, they exist " +"only in the current directory and are similar to downloading source tar " +"balls." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:262 +msgid "build-dep" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:263 +msgid "" +"<literal>build-dep</literal> causes apt-get to install/remove packages in an " +"attempt to satisfy the build dependencies for a source package." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:267 +msgid "check" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:268 +msgid "" +"<literal>check</literal> is a diagnostic tool; it updates the package cache " +"and checks for broken dependencies." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:273 +msgid "" +"<literal>clean</literal> clears out the local repository of retrieved " +"package files. It removes everything but the lock file from " +"<filename>&cachedir;/archives/</filename> and " +"<filename>&cachedir;/archives/partial/</filename>. When APT is used as a " +"&dselect; method, <literal>clean</literal> is run automatically. Those who " +"do not use dselect will likely want to run <literal>apt-get clean</literal> " +"from time to time to free up disk space." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:282 +msgid "autoclean" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:283 +msgid "" +"Like <literal>clean</literal>, <literal>autoclean</literal> clears out the " +"local repository of retrieved package files. The difference is that it only " +"removes package files that can no longer be downloaded, and are largely " +"useless. This allows a cache to be maintained over a long period without it " +"growing out of control. The configuration option " +"<literal>APT::Clean-Installed</literal> will prevent installed packages from " +"being erased if it is set to off." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:292 +msgid "autoremove" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:293 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:303 apt-get.8.xml:409 +msgid "<option>--no-install-recommends</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:304 +msgid "" +"Do not consider recommended packages as a dependency for installing. " +"Configuration Item: <literal>APT::Install-Recommends</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:308 +msgid "<option>--download-only</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:309 +msgid "" +"Download only; package files are only retrieved, not unpacked or installed. " +"Configuration Item: <literal>APT::Get::Download-Only</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:313 +msgid "<option>--fix-broken</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:314 +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>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:327 +msgid "<option>--ignore-missing</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:328 +msgid "<option>--fix-missing</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:329 +msgid "" +"Ignore missing packages; If packages cannot be retrieved or fail the " +"integrity check after retrieval (corrupted package files), hold back those " +"packages and handle the result. Use of this option together with " +"<option>-f</option> may produce an error in some situations. If a package is " +"selected for installation (particularly if it is mentioned on the command " +"line) and it could not be downloaded then it will be silently held back. " +"Configuration Item: <literal>APT::Get::Fix-Missing</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:339 +msgid "<option>--no-download</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:340 +msgid "" +"Disables downloading of packages. This is best used with " +"<option>--ignore-missing</option> to force APT to use only the .debs it has " +"already downloaded. Configuration Item: " +"<literal>APT::Get::Download</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:347 +msgid "" +"Quiet; produces output suitable for logging, omitting progress indicators. " +"More q's will produce more quiet up to a maximum of 2. You can also use " +"<option>-q=#</option> to set the quiet level, overriding the configuration " +"file. Note that quiet level 2 implies <option>-y</option>, you should never " +"use -qq without a no-action modifier such as -d, --print-uris or -s as APT " +"may decided to do something you did not expect. Configuration Item: " +"<literal>quiet</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:357 +msgid "<option>--simulate</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:359 +msgid "<option>--dry-run</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:362 +msgid "" +"No action; perform a simulation of events that would occur but do not " +"actually change the system. Configuration Item: " +"<literal>APT::Get::Simulate</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:366 +msgid "" +"Simulation run as user will deactivate locking " +"(<literal>Debug::NoLocking</literal>) automatical. Also a notice will be " +"displayed indicating that this is only a simulation, if the option " +"<literal>APT::Get::Show-User-Simulation-Note</literal> is set (Default: " +"true) Neigther NoLocking nor the notice will be triggered if run as root " +"(root should know what he is doing without further warnings by " +"<literal>apt-get</literal>)." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:372 +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)." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:379 +msgid "<option>-y</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:379 +msgid "<option>--yes</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:380 +msgid "<option>--assume-yes</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:381 +msgid "" +"Automatic yes to prompts; assume \"yes\" as answer to all prompts and run " +"non-interactively. If an undesirable situation, such as changing a held " +"package, trying to install a unauthenticated package or removing an " +"essential package occurs then <literal>apt-get</literal> will abort. " +"Configuration Item: <literal>APT::Get::Assume-Yes</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:388 +msgid "<option>-u</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:388 +msgid "<option>--show-upgraded</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:389 +msgid "" +"Show upgraded packages; Print out a list of all packages that are to be " +"upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:394 +msgid "<option>-V</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:394 +msgid "<option>--verbose-versions</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:395 +msgid "" +"Show full versions for upgraded and installed packages. Configuration Item: " +"<literal>APT::Get::Show-Versions</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:399 +msgid "<option>-b</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:399 +msgid "<option>--compile</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:400 +msgid "<option>--build</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:401 +msgid "" +"Compile source packages after downloading them. Configuration Item: " +"<literal>APT::Get::Compile</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:405 +msgid "<option>--install-recommends</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:406 +msgid "Also install recommended packages." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:410 +msgid "Do not install recommended packages." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:413 +msgid "<option>--ignore-hold</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:414 +msgid "" +"Ignore package Holds; This causes <command>apt-get</command> to ignore a " +"hold placed on a package. This may be useful in conjunction with " +"<literal>dist-upgrade</literal> to override a large number of undesired " +"holds. Configuration Item: <literal>APT::Ignore-Hold</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:420 +msgid "<option>--no-upgrade</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:421 +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>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:427 +msgid "<option>--force-yes</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:428 +msgid "" +"Force yes; This is a dangerous option that will cause apt to continue " +"without prompting if it is doing something potentially harmful. It should " +"not be used except in very special situations. Using " +"<literal>force-yes</literal> can potentially destroy your system! " +"Configuration Item: <literal>APT::Get::force-yes</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:435 +msgid "<option>--print-uris</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:436 +msgid "" +"Instead of fetching the files to install their URIs are printed. Each URI " +"will have the path, the destination file name, the size and the expected md5 " +"hash. Note that the file name to write to will not always match the file " +"name on the remote site! This also works with the <literal>source</literal> " +"and <literal>update</literal> commands. When used with the " +"<literal>update</literal> command the MD5 and size are not included, and it " +"is up to the user to decompress any compressed files. Configuration Item: " +"<literal>APT::Get::Print-URIs</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:446 +msgid "<option>--purge</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:447 +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>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:454 +msgid "<option>--reinstall</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:455 +msgid "" +"Re-Install packages that are already installed and at the newest version. " +"Configuration Item: <literal>APT::Get::ReInstall</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:459 +msgid "<option>--list-cleanup</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:460 +msgid "" +"This option defaults to on, use <literal>--no-list-cleanup</literal> to turn " +"it off. When on <command>apt-get</command> will automatically manage the " +"contents of <filename>&statedir;/lists</filename> to ensure that obsolete " +"files are erased. The only reason to turn it off is if you frequently " +"change your source list. Configuration Item: " +"<literal>APT::Get::List-Cleanup</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:469 +msgid "<option>--target-release</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:470 +msgid "<option>--default-release</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:471 +msgid "" +"This option controls the default input to the policy engine, it creates a " +"default pin at priority 990 using the specified release string. This " +"overrides the general settings in " +"<filename>/etc/apt/preferences</filename>. Specifically pinned packages are " +"not affected by the value of this option. In short, this option lets you " +"have simple control over which distribution packages will be retrieved " +"from. Some common examples might be <option>-t '2.1*'</option>, <option>-t " +"unstable</option> or <option>-t sid</option>. Configuration Item: " +"<literal>APT::Default-Release</literal>; see also the &apt-preferences; " +"manual page." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:484 +msgid "<option>--trivial-only</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:486 +msgid "" +"Only perform operations that are 'trivial'. Logically this can be considered " +"related to <option>--assume-yes</option>, where " +"<option>--assume-yes</option> will answer yes to any prompt, " +"<option>--trivial-only</option> will answer no. Configuration Item: " +"<literal>APT::Get::Trivial-Only</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:492 +msgid "<option>--no-remove</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:493 +msgid "" +"If any packages are to be removed apt-get immediately aborts without " +"prompting. Configuration Item: <literal>APT::Get::Remove</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:498 +msgid "<option>--auto-remove</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:499 +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>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:505 +msgid "<option>--only-source</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:506 +msgid "" +"Only has meaning for the <literal>source</literal> and " +"<literal>build-dep</literal> commands. Indicates that the given source " +"names are not to be mapped through the binary table. This means that if " +"this option is specified, these commands will only accept source package " +"names as arguments, rather than accepting binary package names and looking " +"up the corresponding source package. Configuration Item: " +"<literal>APT::Get::Only-Source</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:516 +msgid "<option>--diff-only</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:516 +msgid "<option>--dsc-only</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:516 +msgid "<option>--tar-only</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:517 +msgid "" +"Download only the diff, dsc, or tar file of a source archive. Configuration " +"Item: <literal>APT::Get::Diff-Only</literal>, " +"<literal>APT::Get::Dsc-Only</literal>, and " +"<literal>APT::Get::Tar-Only</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:522 +msgid "<option>--arch-only</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:523 +msgid "" +"Only process architecture-dependent build-dependencies. Configuration Item: " +"<literal>APT::Get::Arch-Only</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:527 +msgid "<option>--allow-unauthenticated</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:528 +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::AllowUnauthenticated</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:546 apt.conf.5.xml:825 +msgid "<filename>/etc/apt/apt.conf</filename>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:547 +msgid "" +"APT configuration file. Configuration Item: " +"<literal>Dir::Etc::Main</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:551 +msgid "<filename>/etc/apt/apt.conf.d/</filename>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:552 +msgid "" +"APT configuration file fragments. Configuration Item: " +"<literal>Dir::Etc::Parts</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:556 +msgid "<filename>/etc/apt/preferences</filename>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:557 +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>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:565 +msgid "<filename>&cachedir;/archives/</filename>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:566 +msgid "" +"Storage area for retrieved package files. Configuration Item: " +"<literal>Dir::Cache::Archives</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:570 +msgid "<filename>&cachedir;/archives/partial/</filename>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:571 +msgid "" +"Storage area for package files in transit. Configuration Item: " +"<literal>Dir::Cache::Archives</literal> (implicit partial)." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:589 +msgid "" +"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " +"&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, " +"&apt-preferences;, the APT Howto." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:595 +msgid "" +"<command>apt-get</command> returns zero on normal operation, decimal 100 on " +"error." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt-get.8.xml:598 +msgid "ORIGINAL AUTHORS" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:599 +msgid "&apt-author.jgunthorpe;" +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt-get.8.xml:602 +msgid "CURRENT AUTHORS" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:604 +msgid "&apt-author.team;" +msgstr "" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-key.8.xml:14 apt-key.8.xml:20 +msgid "apt-key" +msgstr "" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-key.8.xml:21 +msgid "APT key management utility" +msgstr "" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-key.8.xml:27 +msgid "" +"<command>apt-key</command> <arg><replaceable>command</replaceable>/</arg> " +"<arg " +"rep=\"repeat\"><option><replaceable>arguments</replaceable></option></arg>" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-key.8.xml:35 +msgid "" +"<command>apt-key</command> is used to manage the list of keys used by apt to " +"authenticate packages. Packages which have been authenticated using these " +"keys will be considered trusted." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt-key.8.xml:41 +msgid "Commands" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:43 +msgid "add <replaceable>filename</replaceable>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:47 +msgid "" +"Add a new key to the list of trusted keys. The key is read from " +"<replaceable>filename</replaceable>, or standard input if " +"<replaceable>filename</replaceable> is <literal>-</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:55 +msgid "del <replaceable>keyid</replaceable>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:59 +msgid "Remove a key from the list of trusted keys." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:66 +msgid "export <replaceable>keyid</replaceable>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:70 +msgid "Output the key <replaceable>keyid</replaceable> to standard output." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:77 +msgid "exportall" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:81 +msgid "Output all trusted keys to standard output." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:88 +msgid "list" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:92 +msgid "List trusted keys." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:99 +msgid "finger" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:103 +msgid "List fingerprints of trusted keys." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:110 +msgid "adv" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:114 +msgid "" +"Pass advanced options to gpg. With adv --recv-key you can download the " +"public key." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:126 +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 "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:139 +msgid "<filename>/etc/apt/trusted.gpg</filename>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:140 +msgid "Keyring of local trusted keys, new keys will be added here." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:143 +msgid "<filename>/etc/apt/trustdb.gpg</filename>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:144 +msgid "Local trust database of archive keys." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:147 +msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:148 +msgid "Keyring of Debian archive trusted keys." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:151 +msgid "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:152 +msgid "Keyring of Debian archive removed trusted keys." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-key.8.xml:163 +msgid "&apt-get;, &apt-secure;" +msgstr "" + +#. The last update date +#. type: Content of: <refentry><refentryinfo> +#: apt-mark.8.xml:13 +msgid "" +"&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>2 " +"November 2007</date>" +msgstr "" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-mark.8.xml:22 apt-mark.8.xml:28 +msgid "apt-mark" +msgstr "" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-mark.8.xml:29 +msgid "mark/unmark a package as being automatically-installed" +msgstr "" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-mark.8.xml:35 +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>" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-mark.8.xml:44 +msgid "" +"<command>apt-mark</command> will change whether a package has been marked as " +"being automatically installed." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-mark.8.xml:48 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:55 +msgid "markauto" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:56 +msgid "" +"<literal>markauto</literal> is used to mark a package as being automatically " +"installed, which will cause the package to be removed when no more manually " +"installed packages depend on this package." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:63 +msgid "unmarkauto" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:64 +msgid "" +"<literal>unmarkauto</literal> is used to mark a package as being manually " +"installed, which will prevent the package from being automatically removed " +"if no other packages depend on it." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:76 +msgid "<option>-f=<filename>FILENAME</filename></option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:76 +msgid "<option>--file=<filename>FILENAME</filename></option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:79 +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>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:85 +msgid "<option>-h</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:86 +msgid "<option>--help</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:87 +msgid "Show a short usage summary." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:93 +msgid "<option>-v</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:94 +msgid "<option>--version</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:95 +msgid "Show the program version." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-mark.8.xml:109 +msgid "" +"<command>apt-mark</command> returns zero on normal operation, non-zero on " +"error." +msgstr "" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-secure.8.xml:14 apt-secure.8.xml:35 +msgid "apt-secure" +msgstr "" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-secure.8.xml:36 +msgid "Archive authentication support for APT" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:41 +msgid "" +"Starting with version 0.6, <command>apt</command> contains code that does " +"signature checking of the Release file for all archives. This ensures that " +"packages in the archive can't be modified by people who have no access to " +"the Release file signing key." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:49 +msgid "" +"If a package comes from a archive without a signature or with a signature " +"that apt does not have a key for that package is considered untrusted and " +"installing it will result in a big warning. <command>apt-get</command> will " +"currently only warn for unsigned archives, future releases might force all " +"sources to be verified before downloading packages from them." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:58 +msgid "" +"The package frontends &apt-get;, &aptitude; and &synaptic; support this new " +"authentication feature." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml:63 +msgid "Trusted archives" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:66 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:74 +msgid "" +"apt-secure does not review signatures at a package level. If you require " +"tools to do this you should look at <command>debsig-verify</command> and " +"<command>debsign</command> (provided in the debsig-verify and devscripts " +"packages respectively)." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:81 +msgid "" +"The chain of trust in Debian starts when a maintainer uploads a new package " +"or a new version of a package to the Debian archive. This upload in order to " +"become effective needs to be signed by a key of a maintainer within the " +"Debian maintainer's keyring (available in the debian-keyring " +"package). Maintainer's keys are signed by other maintainers following " +"pre-established procedures to ensure the identity of the key holder." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:91 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:101 +msgid "" +"Any end user can check the signature of the Release file, extract the MD5 " +"sum of a package from it and compare it with the MD5 sum of the package he " +"downloaded. Prior to version 0.6 only the MD5 sum of the downloaded Debian " +"package was checked. Now both the MD5 sum and the signature of the Release " +"file are checked." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:108 +msgid "" +"Notice that this is distinct from checking signatures on a per package " +"basis. It is designed to prevent two possible attacks:" +msgstr "" + +#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: apt-secure.8.xml:113 +msgid "" +"<literal>Network \"man in the middle\" attacks</literal>. Without signature " +"checking, a malicious agent can introduce himself in the package download " +"process and provide malicious software either by controlling a network " +"element (router, switch, etc.) or by redirecting traffic to a rogue server " +"(through arp or DNS spoofing attacks)." +msgstr "" + +#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: apt-secure.8.xml:121 +msgid "" +"<literal>Mirror network compromise</literal>. Without signature checking, a " +"malicious agent can compromise a mirror host and modify the files in it to " +"propagate malicious software to all users downloading packages from that " +"host." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:128 +msgid "" +"However, it does not defend against a compromise of the Debian master server " +"itself (which signs the packages) or against a compromise of the key used to " +"sign the Release files. In any case, this mechanism can complement a " +"per-package signature." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml:134 +msgid "User configuration" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:136 +msgid "" +"<command>apt-key</command> is the program that manages the list of keys used " +"by apt. It can be used to add or remove keys although an installation of " +"this release will automatically provide the default Debian archive signing " +"keys used in the Debian package repositories." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:143 +msgid "" +"In order to add a new key you need to first download it (you should make " +"sure you are using a trusted communication channel when retrieving it), add " +"it with <command>apt-key</command> and then run <command>apt-get " +"update</command> so that apt can download and verify the " +"<filename>Release.gpg</filename> files from the archives you have " +"configured." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml:152 +msgid "Archive configuration" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:154 +msgid "" +"If you want to provide archive signatures in an archive under your " +"maintenance you have to:" +msgstr "" + +#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: apt-secure.8.xml:159 +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)." +msgstr "" + +#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: apt-secure.8.xml:164 +msgid "" +"<literal>Sign it</literal>. You can do this by running <command>gpg -abs -o " +"Release.gpg Release</command>." +msgstr "" + +#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: apt-secure.8.xml:167 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:174 +msgid "" +"Whenever the contents of the archive changes (new packages are added or " +"removed) the archive maintainer has to follow the first two steps previously " +"outlined." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:182 +msgid "" +"&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " +"&debsign; &debsig-verify;, &gpg;" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:186 +msgid "" +"For more background information you might want to review the <ulink " +"url=\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7.en.html\">Debian " +"Security Infrastructure</ulink> chapter of the Securing Debian Manual " +"(available also in the harden-doc package) and the <ulink " +"url=\"http://www.cryptnet.net/fdp/crypto/strong_distro.html\" >Strong " +"Distribution HOWTO</ulink> by V. Alex Brennen." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml:199 +msgid "Manpage Authors" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:201 +msgid "" +"This man-page is based on the work of Javier Fernández-Sanguino Peña, Isaac " +"Jones, Colin Walters, Florian Weimer and Michael Vogt." +msgstr "" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-sortpkgs.1.xml:22 apt-sortpkgs.1.xml:28 +msgid "apt-sortpkgs" +msgstr "" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-sortpkgs.1.xml:29 +msgid "Utility to sort package index files" +msgstr "" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-sortpkgs.1.xml:35 +msgid "" +"<command>apt-sortpkgs</command> <arg><option>-hvs</option></arg> " +"<arg><option>-o=<replaceable>config string</replaceable></option></arg> " +"<arg><option>-c=<replaceable>file</replaceable></option></arg> <arg " +"choice=\"plain\" rep=\"repeat\"><replaceable>file</replaceable></arg>" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-sortpkgs.1.xml:44 +msgid "" +"<command>apt-sortpkgs</command> will take an index file (Source index or " +"Package index) and sort the records so that they are ordered by the package " +"name. It will also sort the internal fields of each record according to the " +"internal sorting rules." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-sortpkgs.1.xml:50 +msgid "All output is sent to stdout, the input must be a seekable file." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-sortpkgs.1.xml:57 +msgid "<option>--source</option>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-sortpkgs.1.xml:59 +msgid "" +"Use Source index field ordering. Configuration Item: " +"<literal>APT::SortPkgs::Source</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-sortpkgs.1.xml:73 +msgid "" +"<command>apt-sortpkgs</command> returns zero on normal operation, decimal " +"100 on error." +msgstr "" + +#. The last update date +#. type: Content of: <refentry><refentryinfo> +#: apt.conf.5.xml:13 +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>" +msgstr "" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt.conf.5.xml:28 apt.conf.5.xml:34 +msgid "apt.conf" +msgstr "" + +#. type: Content of: <refentry><refmeta><manvolnum> +#: apt.conf.5.xml:29 apt_preferences.5.xml:22 sources.list.5.xml:23 +msgid "5" +msgstr "" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt.conf.5.xml:35 +msgid "Configuration file for APT" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:39 +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 "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:49 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:55 +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:" +msgstr "" + +#. type: Content of: <refentry><refsect1><informalexample><programlisting> +#: apt.conf.5.xml:65 +#, no-wrap +msgid "" +"APT {\n" +" Get {\n" +" Assume-Yes \"true\";\n" +" Fix-Broken \"true\";\n" +" };\n" +"};\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:73 +msgid "" +"with newlines placed to make it more readable. Lists can be created by " +"opening a scope and including a single string enclosed in quotes followed by " +"a semicolon. Multiple entries can be included, each separated by a " +"semicolon." +msgstr "" + +#. type: Content of: <refentry><refsect1><informalexample><programlisting> +#: apt.conf.5.xml:78 +#, no-wrap +msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:81 +msgid "" +"In general the sample configuration file in " +"<filename>&docdir;examples/apt.conf</filename> &configureindex; is a good " +"guide for how it should look." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:85 +msgid "" +"The names of the configuration items are not case-sensitive. So in the " +"previous example you could use <literal>dpkg::pre-install-pkgs</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:88 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:94 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:101 +msgid "The APT Group" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:102 +msgid "" +"This group of options controls general APT behavior as well as holding the " +"options for all of the tools." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:106 +msgid "Architecture" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:107 +msgid "" +"System Architecture; sets the architecture to use when fetching files and " +"parsing package lists. The internal default is the architecture apt was " +"compiled for." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:112 +msgid "Default-Release" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:113 +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;." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:117 +msgid "Ignore-Hold" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:118 +msgid "" +"Ignore Held packages; This global option causes the problem resolver to " +"ignore held packages in its decision making." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:122 +msgid "Clean-Installed" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:123 +msgid "" +"Defaults to on. When turned on the autoclean feature will remove any " +"packages which can no longer be downloaded from the cache. If turned off " +"then packages that are locally installed are also excluded from cleaning - " +"but note that APT provides no direct means to reinstall them." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:129 +msgid "Immediate-Configure" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:130 +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 "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:137 +msgid "Force-LoopBreak" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:138 +msgid "" +"Never Enable this option unless you -really- know what you are doing. It " +"permits APT to temporarily remove an essential package to break a " +"Conflicts/Conflicts or Conflicts/Pre-Depend loop between two essential " +"packages. SUCH A LOOP SHOULD NEVER EXIST AND IS A GRAVE BUG. This option " +"will work if the essential packages are not tar, gzip, libc, dpkg, bash or " +"anything that those packages depend on." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:146 +msgid "Cache-Limit" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:147 +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 "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:151 +msgid "Build-Essential" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:152 +msgid "Defines which package(s) are considered essential build dependencies." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:155 +msgid "Get" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:156 +msgid "" +"The Get subsection controls the &apt-get; tool, please see its documentation " +"for more information about the options here." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:160 +msgid "Cache" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:161 +msgid "" +"The Cache subsection controls the &apt-cache; tool, please see its " +"documentation for more information about the options here." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:165 +msgid "CDROM" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:166 +msgid "" +"The CDROM subsection controls the &apt-cdrom; tool, please see its " +"documentation for more information about the options here." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:172 +msgid "The Acquire Group" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:177 +msgid "PDiffs" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:178 +msgid "" +"Try to download deltas called <literal>PDiffs</literal> for Packages or " +"Sources files instead of downloading whole ones. True by default." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:183 +msgid "Queue-Mode" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:184 +msgid "" +"Queuing mode; <literal>Queue-Mode</literal> can be one of " +"<literal>host</literal> or <literal>access</literal> which determines how " +"APT parallelizes outgoing connections. <literal>host</literal> means that " +"one connection per target host will be opened, <literal>access</literal> " +"means that one connection per URI type will be opened." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:191 +msgid "Retries" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:192 +msgid "" +"Number of retries to perform. If this is non-zero APT will retry failed " +"files the given number of times." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:196 +msgid "Source-Symlinks" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:197 +msgid "" +"Use symlinks for source archives. If set to true then source archives will " +"be symlinked when possible instead of copying. True is the default." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:201 sources.list.5.xml:138 +msgid "http" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:202 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:209 +msgid "" +"Three settings are provided for cache control with HTTP/1.1 compliant proxy " +"caches. <literal>No-Cache</literal> tells the proxy to not use its cached " +"response under any circumstances, <literal>Max-Age</literal> is sent only " +"for index files and tells the cache to refresh its object if it is older " +"than the given number of seconds. Debian updates its index files daily so " +"the default is 1 day. <literal>No-Store</literal> specifies that the cache " +"should never store this request, it is only set for archive files. This may " +"be useful to prevent polluting a proxy cache with very large .deb " +"files. Note: Squid 2.0.2 does not support any of these options." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:219 apt.conf.5.xml:267 +msgid "" +"The option <literal>timeout</literal> sets the timeout timer used by the " +"method, this applies to all things including connection timeout and data " +"timeout." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:222 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:231 +msgid "https" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:232 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:236 +msgid "" +"<literal>CaInfo</literal> suboption specifies place of file that holds info " +"about trusted certificates. <literal><host>::CaInfo</literal> is " +"corresponding per-host option. <literal>Verify-Peer</literal> boolean " +"suboption determines whether verify server's host certificate against " +"trusted certificates or not. <literal><host>::Verify-Peer</literal> " +"is corresponding per-host option. <literal>Verify-Host</literal> boolean " +"suboption determines whether verify server's hostname or not. " +"<literal><host>::Verify-Host</literal> is corresponding per-host " +"option. <literal>SslCert</literal> determines what certificate to use for " +"client authentication. <literal><host>::SslCert</literal> is " +"corresponding per-host option. <literal>SslKey</literal> determines what " +"private key to use for client " +"authentication. <literal><host>::SslKey</literal> is corresponding " +"per-host option. <literal>SslForceVersion</literal> overrides default SSL " +"version to use. Can contain 'TLSv1' or 'SSLv3' string. " +"<literal><host>::SslForceVersion</literal> is corresponding per-host " +"option." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:254 sources.list.5.xml:149 +msgid "ftp" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:255 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:270 +msgid "" +"Several settings are provided to control passive mode. Generally it is safe " +"to leave passive mode on, it works in nearly every environment. However " +"some situations require that passive mode be disabled and port mode ftp used " +"instead. This can be done globally, for connections that go through a proxy " +"or for a specific host (See the sample config file for examples)." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:277 +msgid "" +"It is possible to proxy FTP over HTTP by setting the " +"<envar>ftp_proxy</envar> environment variable to a http url - see the " +"discussion of the http method above for syntax. You cannot set this in the " +"configuration file and it is not recommended to use FTP over HTTP due to its " +"low efficiency." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:282 +msgid "" +"The setting <literal>ForceExtended</literal> controls the use of RFC2428 " +"<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " +"false, which means these commands are only used if the control connection is " +"IPv6. Setting this to true forces their use even on IPv4 connections. Note " +"that most FTP servers do not support RFC2428." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:289 sources.list.5.xml:131 +msgid "cdrom" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> +#: apt.conf.5.xml:295 +#, no-wrap +msgid "\"/cdrom/\"::Mount \"foo\";" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:290 +msgid "" +"CDROM URIs; the only setting for CDROM URIs is the mount point, " +"<literal>cdrom::Mount</literal> which must be the mount point for the CDROM " +"drive as specified in <filename>/etc/fstab</filename>. It is possible to " +"provide alternate mount and unmount commands if your mount point cannot be " +"listed in the fstab (such as an SMB mount and old mount packages). The " +"syntax is to put <placeholder type=\"literallayout\" id=\"0\"/> within the " +"cdrom block. It is important to have the trailing slash. Unmount commands " +"can be specified using UMount." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:300 +msgid "gpgv" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:301 +msgid "" +"GPGV URIs; the only option for GPGV URIs is the option to pass additional " +"parameters to gpgv. <literal>gpgv::Options</literal> Additional options " +"passed to gpgv." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:173 +msgid "" +"The <literal>Acquire</literal> group of options controls the download of " +"packages and the URI handlers. <placeholder type=\"variablelist\" " +"id=\"0\"/>" +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:310 +msgid "Directories" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:312 +msgid "" +"The <literal>Dir::State</literal> section has directories that pertain to " +"local state information. <literal>lists</literal> is the directory to place " +"downloaded package lists in and <literal>status</literal> is the name of the " +"dpkg status file. <literal>preferences</literal> is the name of the APT " +"preferences file. <literal>Dir::State</literal> contains the default " +"directory to prefix on all sub items if they do not start with " +"<filename>/</filename> or <filename>./</filename>." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:319 +msgid "" +"<literal>Dir::Cache</literal> contains locations pertaining to local cache " +"information, such as the two package caches <literal>srcpkgcache</literal> " +"and <literal>pkgcache</literal> as well as the location to place downloaded " +"archives, <literal>Dir::Cache::archives</literal>. Generation of caches can " +"be turned off by setting their names to be blank. This will slow down " +"startup but save disk space. It is probably preferred to turn off the " +"pkgcache rather than the srcpkgcache. Like <literal>Dir::State</literal> the " +"default directory is contained in <literal>Dir::Cache</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:328 +msgid "" +"<literal>Dir::Etc</literal> contains the location of configuration files, " +"<literal>sourcelist</literal> gives the location of the sourcelist and " +"<literal>main</literal> is the default configuration file (setting has no " +"effect, unless it is done from the config file specified by " +"<envar>APT_CONFIG</envar>)." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:334 +msgid "" +"The <literal>Dir::Parts</literal> setting reads in all the config fragments " +"in lexical order from the directory specified. After this is done then the " +"main config file is loaded." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:338 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:345 +msgid "" +"The configuration item <literal>RootDir</literal> has a special meaning. If " +"set, all paths in <literal>Dir::</literal> will be relative to " +"<literal>RootDir</literal>, <emphasis>even paths that are specified " +"absolutely</emphasis>. So, for instance, if <literal>RootDir</literal> is " +"set to <filename>/tmp/staging</filename> and " +"<literal>Dir::State::status</literal> is set to " +"<filename>/var/lib/dpkg/status</filename>, then the status file will be " +"looked up in <filename>/tmp/staging/var/lib/dpkg/status</filename>." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:358 +msgid "APT in DSelect" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:360 +msgid "" +"When APT is used as a &dselect; method several configuration directives " +"control the default behaviour. These are in the <literal>DSelect</literal> " +"section." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:364 +msgid "Clean" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:365 +msgid "" +"Cache Clean mode; this value may be one of always, prompt, auto, pre-auto " +"and never. always and prompt will remove all packages from the cache after " +"upgrading, prompt (the default) does so conditionally. auto removes only " +"those packages which are no longer downloadable (replaced with a new version " +"for instance). pre-auto performs this action before downloading new " +"packages." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:374 +msgid "" +"The contents of this variable is passed to &apt-get; as command line options " +"when it is run for the install phase." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:378 +msgid "Updateoptions" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:379 +msgid "" +"The contents of this variable is passed to &apt-get; as command line options " +"when it is run for the update phase." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:383 +msgid "PromptAfterUpdate" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:384 +msgid "" +"If true the [U]pdate operation in &dselect; will always prompt to continue. " +"The default is to prompt only on error." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:390 +msgid "How APT calls dpkg" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:391 +msgid "" +"Several configuration directives control how APT invokes &dpkg;. These are " +"in the <literal>DPkg</literal> section." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:396 +msgid "" +"This is a list of options to pass to dpkg. The options must be specified " +"using the list notation and each list item is passed as a single argument to " +"&dpkg;." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:401 +msgid "Pre-Invoke" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:401 +msgid "Post-Invoke" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:402 +msgid "" +"This is a list of shell commands to run before/after invoking &dpkg;. Like " +"<literal>options</literal> this must be specified in list notation. The " +"commands are invoked in order using <filename>/bin/sh</filename>, should any " +"fail APT will abort." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:408 +msgid "Pre-Install-Pkgs" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:409 +msgid "" +"This is a list of shell commands to run before invoking dpkg. Like " +"<literal>options</literal> this must be specified in list notation. The " +"commands are invoked in order using <filename>/bin/sh</filename>, should any " +"fail APT will abort. APT will pass to the commands on standard input the " +"filenames of all .deb files it is going to install, one per line." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:415 +msgid "" +"Version 2 of this protocol dumps more information, including the protocol " +"version, the APT configuration space and the packages, files and versions " +"being changed. Version 2 is enabled by setting " +"<literal>DPkg::Tools::options::cmd::Version</literal> to " +"2. <literal>cmd</literal> is a command given to " +"<literal>Pre-Install-Pkgs</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:422 +msgid "Run-Directory" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:423 +msgid "" +"APT chdirs to this directory before invoking dpkg, the default is " +"<filename>/</filename>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:427 +msgid "Build-options" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:428 +msgid "" +"These options are passed to &dpkg-buildpackage; when compiling packages, the " +"default is to disable signing and produce all binaries." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:435 +msgid "Periodic and Archives options" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:436 +msgid "" +"<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " +"of options configure behavior of apt periodic updates, which is done by " +"<literal>/etc/cron.daily/apt</literal> script. See header of this script for " +"the brief documentation of these options." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:444 +msgid "Debug options" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:446 +msgid "" +"Enabling options in the <literal>Debug::</literal> section will cause " +"debugging information to be sent to the standard error stream of the program " +"utilizing the <literal>apt</literal> libraries, or enable special program " +"modes that are primarily useful for debugging the behavior of " +"<literal>apt</literal>. Most of these options are not interesting to a " +"normal user, but a few may be:" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.conf.5.xml:457 +msgid "" +"<literal>Debug::pkgProblemResolver</literal> enables output about the " +"decisions made by <literal>dist-upgrade, upgrade, install, remove, " +"purge</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.conf.5.xml:465 +msgid "" +"<literal>Debug::NoLocking</literal> disables all file locking. This can be " +"used to run some operations (for instance, <literal>apt-get -s " +"install</literal>) as a non-root user." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.conf.5.xml:474 +msgid "" +"<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " +"time that <literal>apt</literal> invokes &dpkg;." +msgstr "" + +#. TODO: provide a +#. motivating example, except I haven't a clue why you'd want +#. to do this. +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.conf.5.xml:482 +msgid "" +"<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " +"in CDROM IDs." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:492 +msgid "A full list of debugging options to apt follows." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:497 +msgid "<literal>Debug::Acquire::cdrom</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:501 +msgid "Print information related to accessing <literal>cdrom://</literal> sources." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:508 +msgid "<literal>Debug::Acquire::ftp</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:512 +msgid "Print information related to downloading packages using FTP." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:519 +msgid "<literal>Debug::Acquire::http</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:523 +msgid "Print information related to downloading packages using HTTP." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:530 +msgid "<literal>Debug::Acquire::https</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:534 +msgid "Print information related to downloading packages using HTTPS." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:541 +msgid "<literal>Debug::Acquire::gpgv</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:545 +msgid "" +"Print information related to verifying cryptographic signatures using " +"<literal>gpg</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:552 +msgid "<literal>Debug::aptcdrom</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:556 +msgid "" +"Output information about the process of accessing collections of packages " +"stored on CD-ROMs." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:563 +msgid "<literal>Debug::BuildDeps</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:566 +msgid "Describes the process of resolving build-dependencies in &apt-get;." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:573 +msgid "<literal>Debug::Hashes</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:576 +msgid "" +"Output each cryptographic hash that is generated by the " +"<literal>apt</literal> libraries." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:583 +msgid "<literal>Debug::IdentCDROM</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:586 +msgid "" +"Do not include information from <literal>statfs</literal>, namely the number " +"of used and free blocks on the CD-ROM filesystem, when generating an ID for " +"a CD-ROM." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:594 +msgid "<literal>Debug::NoLocking</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:597 +msgid "" +"Disable all file locking. For instance, this will allow two instances of " +"<quote><literal>apt-get update</literal></quote> to run at the same time." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:605 +msgid "<literal>Debug::pkgAcquire</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:609 +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:616 +msgid "<literal>Debug::pkgAcquire::Auth</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:619 +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:626 +msgid "<literal>Debug::pkgAcquire::Diffs</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:629 +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:637 +msgid "<literal>Debug::pkgAcquire::RRed</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:641 +msgid "" +"Output information related to patching apt package lists when downloading " +"index diffs instead of full indices." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:648 +msgid "<literal>Debug::pkgAcquire::Worker</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:652 +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:659 +msgid "<literal>Debug::pkgAutoRemove</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:663 +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:670 +msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:673 +msgid "" +"Generate debug messages describing which packages are being automatically " +"installed to resolve dependencies. This corresponds to the initial " +"auto-install pass performed in, e.g., <literal>apt-get install</literal>, " +"and not to the full <literal>apt</literal> dependency resolver; see " +"<literal>Debug::pkgProblemResolver</literal> for that." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:684 +msgid "<literal>Debug::pkgDepCache::Marker</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:687 +msgid "" +"Generate debug messages describing which package is marked as " +"keep/install/remove while the ProblemResolver does his work. Each addition " +"or deletion may trigger additional actions; they are shown indented two " +"additional space under the original entry. The format for each line is " +"<literal>MarkKeep</literal>, <literal>MarkDelete</literal> or " +"<literal>MarkInstall</literal> followed by <literal>package-name <a.b.c " +"-> d.e.f | x.y.z> (section)</literal> where <literal>a.b.c</literal> " +"is the current version of the package, <literal>d.e.f</literal> is the " +"version considered for installation and <literal>x.y.z</literal> is a newer " +"version, but not considered for installation (because of a low pin " +"score). The later two can be omitted if there is none or if it is the same " +"version as the installed. <literal>section</literal> is the name of the " +"section the package appears in." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:706 +msgid "<literal>Debug::pkgInitConfig</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:709 +msgid "Dump the default configuration to standard error on startup." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:716 +msgid "<literal>Debug::pkgDPkgPM</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:719 +msgid "" +"When invoking &dpkg;, output the precise command line with which it is being " +"invoked, with arguments separated by a single space character." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:727 +msgid "<literal>Debug::pkgDPkgProgressReporting</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:730 +msgid "" +"Output all the data received from &dpkg; on the status file descriptor and " +"any errors encountered while parsing it." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:737 +msgid "<literal>Debug::pkgOrderList</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:741 +msgid "" +"Generate a trace of the algorithm that decides the order in which " +"<literal>apt</literal> should pass packages to &dpkg;." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:749 +msgid "<literal>Debug::pkgPackageManager</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:753 +msgid "Output status messages tracing the steps performed when invoking &dpkg;." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:760 +msgid "<literal>Debug::pkgPolicy</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:764 +msgid "Output the priority of each package list on startup." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:770 +msgid "<literal>Debug::pkgProblemResolver</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:774 +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:782 +msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:785 +msgid "" +"Display a list of all installed packages with their calculated score used by " +"the pkgProblemResolver. The description of the package is the same as " +"described in <literal>Debug::pkgDepCache::Marker</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:793 +msgid "<literal>Debug::sourceList</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:797 +msgid "" +"Print information about the vendors read from " +"<filename>/etc/apt/vendors.list</filename>." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:819 +msgid "" +"&configureindex; is a configuration file showing example values for all " +"possible options." +msgstr "" + +#. ? reading apt.conf +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:829 +msgid "&apt-cache;, &apt-config;, &apt-preferences;." +msgstr "" + +#. The last update date +#. type: Content of: <refentry><refentryinfo> +#: apt_preferences.5.xml:13 +msgid "&apt-author.team; &apt-email; &apt-product; <date>04 May 2009</date>" +msgstr "" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt_preferences.5.xml:21 apt_preferences.5.xml:27 +msgid "apt_preferences" +msgstr "" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt_preferences.5.xml:28 +msgid "Preference control file for APT" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt_preferences.5.xml:33 +msgid "" +"The APT preferences file <filename>/etc/apt/preferences</filename> can be " +"used to control which versions of packages will be selected for " +"installation." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt_preferences.5.xml:37 +msgid "" +"Several versions of a package may be available for installation when the " +"&sources-list; file contains references to more than one distribution (for " +"example, <literal>stable</literal> and <literal>testing</literal>). APT " +"assigns a priority to each version that is available. Subject to dependency " +"constraints, <command>apt-get</command> selects the version with the highest " +"priority for installation. The APT preferences file overrides the " +"priorities that APT assigns to package versions by default, thus giving the " +"user control over which one is selected for installation." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt_preferences.5.xml:47 +msgid "" +"Several instances of the same version of a package may be available when the " +"&sources-list; file contains references to more than one source. In this " +"case <command>apt-get</command> downloads the instance listed earliest in " +"the &sources-list; file. The APT preferences file does not affect the " +"choice of instance, only the choice of version." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:54 +msgid "APT's Default Priority Assignments" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:69 +#, no-wrap +msgid "" +"<command>apt-get install -t testing " +"<replaceable>some-package</replaceable></command>\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:72 +#, no-wrap +msgid "APT::Default-Release \"stable\";\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:56 +msgid "" +"If there is no preferences file or if there is no entry in the file that " +"applies to a particular version then the priority assigned to that version " +"is the priority of the distribution to which that version belongs. It is " +"possible to single out a distribution, \"the target release\", which " +"receives a higher priority than other distributions do by default. The " +"target release can be set on the <command>apt-get</command> command line or " +"in the APT configuration file <filename>/etc/apt/apt.conf</filename>. Note " +"that this has precedence over any general priority you set in the " +"<filename>/etc/apt/preferences</filename> file described later, but not over " +"specifically pinned packages. For example, <placeholder " +"type=\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" " +"id=\"1\"/>" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:81 +msgid "priority 100" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:82 +msgid "to the version that is already installed (if any)." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:86 +msgid "priority 500" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:87 +msgid "" +"to the versions that are not installed and do not belong to the target " +"release." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:91 +msgid "priority 990" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:92 +msgid "to the versions that are not installed and belong to the target release." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:76 +msgid "" +"If the target release has been specified then APT uses the following " +"algorithm to set the priorities of the versions of a package. Assign: " +"<placeholder type=\"variablelist\" id=\"0\"/>" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:97 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:101 +msgid "" +"APT then applies the following rules, listed in order of precedence, to " +"determine which version of a package to install." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:104 +msgid "" +"Never downgrade unless the priority of an available version exceeds 1000. " +"(\"Downgrading\" is installing a less recent version of a package in place " +"of a more recent version. Note that none of APT's default priorities " +"exceeds 1000; such high priorities can only be set in the preferences file. " +"Note also that downgrading a package can be risky.)" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:110 +msgid "Install the highest priority version." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:111 +msgid "" +"If two or more versions have the same priority, install the most recent one " +"(that is, the one with the higher version number)." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:114 +msgid "" +"If two or more versions have the same priority and version number but either " +"the packages differ in some of their metadata or the " +"<literal>--reinstall</literal> option is given, install the uninstalled one." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:120 +msgid "" +"In a typical situation, the installed version of a package (priority 100) " +"is not as recent as one of the versions available from the sources listed in " +"the &sources-list; file (priority 500 or 990). Then the package will be " +"upgraded when <command>apt-get install " +"<replaceable>some-package</replaceable></command> or <command>apt-get " +"upgrade</command> is executed." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:127 +msgid "" +"More rarely, the installed version of a package is <emphasis>more</emphasis> " +"recent than any of the other available versions. The package will not be " +"downgraded when <command>apt-get install " +"<replaceable>some-package</replaceable></command> or <command>apt-get " +"upgrade</command> is executed." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:132 +msgid "" +"Sometimes the installed version of a package is more recent than the version " +"belonging to the target release, but not as recent as a version belonging to " +"some other distribution. Such a package will indeed be upgraded when " +"<command>apt-get install <replaceable>some-package</replaceable></command> " +"or <command>apt-get upgrade</command> is executed, because at least " +"<emphasis>one</emphasis> of the available versions has a higher priority " +"than the installed version." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:141 +msgid "The Effect of APT Preferences" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:143 +msgid "" +"The APT preferences file allows the system administrator to control the " +"assignment of priorities. The file consists of one or more multi-line " +"records separated by blank lines. Records can have one of two forms, a " +"specific form and a general form." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:149 +msgid "" +"The specific form assigns a priority (a \"Pin-Priority\") to one or more " +"specified packages and specified version or version range. For example, the " +"following record assigns a high priority to all versions of the " +"<filename>perl</filename> package whose version number begins with " +"\"<literal>5.8</literal>\". Multiple packages can be separated by spaces." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:156 +#, no-wrap +msgid "" +"Package: perl\n" +"Pin: version 5.8*\n" +"Pin-Priority: 1001\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:162 +msgid "" +"The general form assigns a priority to all of the package versions in a " +"given distribution (that is, to all the versions of packages that are listed " +"in a certain <filename>Release</filename> file) or to all of the package " +"versions coming from a particular Internet site, as identified by the site's " +"fully qualified domain name." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:168 +msgid "" +"This general-form entry in the APT preferences file applies only to groups " +"of packages. For example, the following record assigns a high priority to " +"all package versions available from the local site." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:173 +#, no-wrap +msgid "" +"Package: *\n" +"Pin: origin \"\"\n" +"Pin-Priority: 999\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:178 +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\"." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:184 +msgid "" +"The following record assigns a low priority to all package versions " +"belonging to any distribution whose Archive name is " +"\"<literal>unstable</literal>\"." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:188 +#, no-wrap +msgid "" +"Package: *\n" +"Pin: release a=unstable\n" +"Pin-Priority: 50\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:193 +msgid "" +"The following record assigns a high priority to all package versions " +"belonging to any distribution whose Codename is " +"\"<literal>squeeze</literal>\"." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:197 +#, no-wrap +msgid "" +"Package: *\n" +"Pin: release n=squeeze\n" +"Pin-Priority: 900\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:202 +msgid "" +"The following record assigns a high priority to all package versions " +"belonging to any release whose Archive name is \"<literal>stable</literal>\" " +"and whose release Version number is \"<literal>3.0</literal>\"." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:207 +#, no-wrap +msgid "" +"Package: *\n" +"Pin: release a=stable, v=3.0\n" +"Pin-Priority: 500\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:218 +msgid "How APT Interprets Priorities" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:226 +msgid "P > 1000" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:227 +msgid "" +"causes a version to be installed even if this constitutes a downgrade of the " +"package" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:231 +msgid "990 < P <=1000" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:232 +msgid "" +"causes a version to be installed even if it does not come from the target " +"release, unless the installed version is more recent" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:237 +msgid "500 < P <=990" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:238 +msgid "" +"causes a version to be installed unless there is a version available " +"belonging to the target release or the installed version is more recent" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:243 +msgid "100 < P <=500" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:244 +msgid "" +"causes a version to be installed unless there is a version available " +"belonging to some other distribution or the installed version is more recent" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:249 +msgid "0 < P <=100" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:250 +msgid "" +"causes a version to be installed only if there is no installed version of " +"the package" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:254 +msgid "P < 0" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:255 +msgid "prevents the version from being installed" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:221 +msgid "" +"Priorities (P) assigned in the APT preferences file must be positive or " +"negative integers. They are interpreted as follows (roughly speaking): " +"<placeholder type=\"variablelist\" id=\"0\"/>" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:260 +msgid "" +"If any specific-form records match an available package version then the " +"first such record determines the priority of the package version. Failing " +"that, if any general-form records match an available package version then " +"the first such record determines the priority of the package version." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:266 +msgid "" +"For example, suppose the APT preferences file contains the three records " +"presented earlier:" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><programlisting> +#: apt_preferences.5.xml:270 +#, no-wrap +msgid "" +"Package: perl\n" +"Pin: version 5.8*\n" +"Pin-Priority: 1001\n" +"\n" +"Package: *\n" +"Pin: origin \"\"\n" +"Pin-Priority: 999\n" +"\n" +"Package: *\n" +"Pin: release unstable\n" +"Pin-Priority: 50\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:283 +msgid "Then:" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:285 +msgid "" +"The most recent available version of the <literal>perl</literal> package " +"will be installed, so long as that version's version number begins with " +"\"<literal>5.8</literal>\". If <emphasis>any</emphasis> 5.8* version of " +"<literal>perl</literal> is available and the installed version is 5.9*, then " +"<literal>perl</literal> will be downgraded." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:290 +msgid "" +"A version of any package other than <literal>perl</literal> that is " +"available from the local system has priority over other versions, even " +"versions belonging to the target release." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:294 +msgid "" +"A version of a package whose origin is not the local system but some other " +"site listed in &sources-list; and which belongs to an " +"<literal>unstable</literal> distribution is only installed if it is selected " +"for installation and no version of the package is already installed." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:304 +msgid "Determination of Package Version and Distribution Properties" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:306 +msgid "" +"The locations listed in the &sources-list; file should provide " +"<filename>Packages</filename> and <filename>Release</filename> files to " +"describe the packages available at that location." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:318 +msgid "the <literal>Package:</literal> line" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:319 +msgid "gives the package name" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:322 apt_preferences.5.xml:372 +msgid "the <literal>Version:</literal> line" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:323 +msgid "gives the version number for the named package" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:310 +msgid "" +"The <filename>Packages</filename> file is normally found in the directory " +"<filename>.../dists/<replaceable>dist-name</replaceable>/<replaceable>component</replaceable>/<replaceable>arch</replaceable></filename>: " +"for example, " +"<filename>.../dists/stable/main/binary-i386/Packages</filename>. It " +"consists of a series of multi-line records, one for each package available " +"in that directory. Only two lines in each record are relevant for setting " +"APT priorities: <placeholder type=\"variablelist\" id=\"0\"/>" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:339 +msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:340 +msgid "" +"names the archive to which all the packages in the directory tree belong. " +"For example, the line \"Archive: stable\" or \"Suite: stable\" specifies " +"that all of the packages in the directory tree below the parent of the " +"<filename>Release</filename> file are in a <literal>stable</literal> " +"archive. Specifying this value in the APT preferences file would require " +"the line:" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> +#: apt_preferences.5.xml:350 +#, no-wrap +msgid "Pin: release a=stable\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:356 +msgid "the <literal>Codename:</literal> line" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:357 +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:" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> +#: apt_preferences.5.xml:366 +#, no-wrap +msgid "Pin: release n=squeeze\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:373 +msgid "" +"names the release version. For example, the packages in the tree might " +"belong to Debian GNU/Linux release version 3.0. Note that there is normally " +"no version number for the <literal>testing</literal> and " +"<literal>unstable</literal> distributions because they have not been " +"released yet. Specifying this in the APT preferences file would require one " +"of the following lines." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> +#: apt_preferences.5.xml:382 +#, no-wrap +msgid "" +"Pin: release v=3.0\n" +"Pin: release a=stable, v=3.0\n" +"Pin: release 3.0\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:391 +msgid "the <literal>Component:</literal> line" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:392 +msgid "" +"names the licensing component associated with the packages in the directory " +"tree of the <filename>Release</filename> file. For example, the line " +"\"Component: main\" specifies that all the packages in the directory tree " +"are from the <literal>main</literal> component, which entails that they are " +"licensed under terms listed in the Debian Free Software Guidelines. " +"Specifying this component in the APT preferences file would require the " +"line:" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> +#: apt_preferences.5.xml:401 +#, no-wrap +msgid "Pin: release c=main\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:407 +msgid "the <literal>Origin:</literal> line" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:408 +msgid "" +"names the originator of the packages in the directory tree of the " +"<filename>Release</filename> file. Most commonly, this is " +"<literal>Debian</literal>. Specifying this origin in the APT preferences " +"file would require the line:" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> +#: apt_preferences.5.xml:414 +#, no-wrap +msgid "Pin: release o=Debian\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:420 +msgid "the <literal>Label:</literal> line" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:421 +msgid "" +"names the label of the packages in the directory tree of the " +"<filename>Release</filename> file. Most commonly, this is " +"<literal>Debian</literal>. Specifying this label in the APT preferences " +"file would require the line:" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> +#: apt_preferences.5.xml:427 +#, no-wrap +msgid "Pin: release l=Debian\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:328 +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\"/>" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:434 +msgid "" +"All of the <filename>Packages</filename> and <filename>Release</filename> " +"files retrieved from locations listed in the &sources-list; file are stored " +"in the directory <filename>/var/lib/apt/lists</filename>, or in the file " +"named by the variable <literal>Dir::State::Lists</literal> in the " +"<filename>apt.conf</filename> file. For example, the file " +"<filename>debian.lcs.mit.edu_debian_dists_unstable_contrib_binary-i386_Release</filename> " +"contains the <filename>Release</filename> file retrieved from the site " +"<literal>debian.lcs.mit.edu</literal> for <literal>binary-i386</literal> " +"architecture files from the <literal>contrib</literal> component of the " +"<literal>unstable</literal> distribution." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:447 +msgid "Optional Lines in an APT Preferences Record" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:449 +msgid "" +"Each record in the APT preferences file can optionally begin with one or " +"more lines beginning with the word <literal>Explanation:</literal>. This " +"provides a place for comments." +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:453 +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 "" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:462 +msgid "Tracking Stable" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:470 +#, no-wrap +msgid "" +"Explanation: Uninstall or do not install any Debian-originated\n" +"Explanation: package versions other than those in the stable distro\n" +"Package: *\n" +"Pin: release a=stable\n" +"Pin-Priority: 900\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:464 +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 " +"<literal>stable</literal> distribution and a prohibitively low priority to " +"package versions belonging to other <literal>Debian</literal> " +"distributions. <placeholder type=\"programlisting\" id=\"0\"/>" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:487 apt_preferences.5.xml:533 apt_preferences.5.xml:591 +#, no-wrap +msgid "" +"apt-get install <replaceable>package-name</replaceable>\n" +"apt-get upgrade\n" +"apt-get dist-upgrade\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:482 +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 "" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:499 +#, no-wrap +msgid "apt-get install <replaceable>package</replaceable>/testing\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:493 +msgid "" +"The following command will cause APT to upgrade the specified package to the " +"latest version from the <literal>testing</literal> distribution; the package " +"will not be upgraded again unless this command is given again. <placeholder " +"type=\"programlisting\" id=\"0\"/>" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:505 +msgid "Tracking Testing or Unstable" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:514 +#, no-wrap +msgid "" +"Package: *\n" +"Pin: release a=testing\n" +"Pin-Priority: 900\n" +"\n" +"Package: *\n" +"Pin: release a=unstable\n" +"Pin-Priority: 800\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:507 +msgid "" +"The following APT preferences file will cause APT to assign a high priority " +"to package versions from the <literal>testing</literal> distribution, a " +"lower priority to package versions from the <literal>unstable</literal> " +"distribution, and a prohibitively low priority to package versions from " +"other <literal>Debian</literal> distributions. <placeholder " +"type=\"programlisting\" id=\"0\"/>" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:528 +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 "" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:548 +#, no-wrap +msgid "apt-get install <replaceable>package</replaceable>/unstable\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:539 +msgid "" +"The following command will cause APT to upgrade the specified package to the " +"latest version from the <literal>unstable</literal> distribution. " +"Thereafter, <command>apt-get upgrade</command> will upgrade the package to " +"the most recent <literal>testing</literal> version if that is more recent " +"than the installed version, otherwise, to the most recent " +"<literal>unstable</literal> version if that is more recent than the " +"installed version. <placeholder type=\"programlisting\" id=\"0\"/>" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:555 +msgid "Tracking the evolution of a codename release" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:569 +#, 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" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:557 +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 " +"specified codename of a distribution and a prohibitively low priority to " +"package versions belonging to other <literal>Debian</literal> distributions, " +"codenames and archives. Note that with this APT preference APT will follow " +"the migration of a release from the archive <literal>testing</literal> to " +"<literal>stable</literal> and later <literal>oldstable</literal>. If you " +"want to follow for example the progress in <literal>testing</literal> " +"notwithstanding the codename changes you should use the example " +"configurations above. <placeholder type=\"programlisting\" id=\"0\"/>" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:586 +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\"/>" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:606 +#, no-wrap +msgid "apt-get install <replaceable>package</replaceable>/sid\n" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:597 +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\"/>" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt_preferences.5.xml:614 +msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;" +msgstr "" + +#. type: Content of: <refentry><refnamediv><refname> +#: sources.list.5.xml:22 sources.list.5.xml:28 +msgid "sources.list" +msgstr "" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: sources.list.5.xml:29 +msgid "Package resource list for APT" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:33 +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>" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:38 +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 #." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: sources.list.5.xml:49 +msgid "sources.list.d" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:50 +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 " +"the regular <filename>sources.list</filename> file. File names need to end " +"with <filename>.list</filename> and may only contain letters (a-z and A-Z), " +"digits (0-9), underscore (_), hyphen (-) and period (.) characters. " +"Otherwise they will be silently ignored." +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: sources.list.5.xml:59 +msgid "The deb and deb-src types" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:60 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:72 +msgid "" +"The format for a <filename>sources.list</filename> entry using the " +"<literal>deb</literal> and <literal>deb-src</literal> types are:" +msgstr "" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:75 +#, no-wrap +msgid "deb uri distribution [component1] [component2] [...]" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:77 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:86 +msgid "" +"<literal>distribution</literal> may also contain a variable, " +"<literal>$(ARCH)</literal> which expands to the Debian architecture (i386, " +"m68k, powerpc, ...) used on the system. This permits " +"architecture-independent <filename>sources.list</filename> files to be " +"used. In general this is only of interest when specifying an exact path, " +"<literal>APT</literal> will automatically generate a URI with the current " +"architecture otherwise." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:94 +msgid "" +"Since only one distribution can be specified per line it may be necessary to " +"have multiple lines for the same URI, if a subset of all available " +"distributions or components at that location is desired. APT will sort the " +"URI list after it has generated a complete set internally, and will collapse " +"multiple references to the same Internet host, for instance, into a single " +"connection, so that it does not inefficiently establish an FTP connection, " +"close it, do something else, and then re-establish a connection to that same " +"host. This feature is useful for accessing busy FTP sites with limits on the " +"number of simultaneous anonymous users. APT also parallelizes connections to " +"different hosts to more effectively deal with sites with low bandwidth." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:106 +msgid "" +"It is important to list sources in order of preference, with the most " +"preferred source listed first. Typically this will result in sorting by " +"speed from fastest to slowest (CD-ROM followed by hosts on a local network, " +"followed by distant Internet hosts, for example)." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:111 +msgid "Some examples:" +msgstr "" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:113 +#, 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" +" " +msgstr "" + +#. type: Content of: <refentry><refsect1><title> +#: sources.list.5.xml:119 +msgid "URI specification" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: sources.list.5.xml:124 +msgid "file" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:126 +msgid "" +"The file scheme allows an arbitrary directory in the file system to be " +"considered an archive. This is useful for NFS mounts and local mirrors or " +"archives." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:133 +msgid "" +"The cdrom scheme allows APT to use a local CDROM drive with media " +"swapping. Use the &apt-cdrom; program to create cdrom entries in the source " +"list." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:140 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:151 +msgid "" +"The ftp scheme specifies an FTP server for the archive. APT's FTP behavior " +"is highly configurable; for more information see the &apt-conf; manual " +"page. Please note that a ftp proxy can be specified by using the " +"<envar>ftp_proxy</envar> environment variable. It is possible to specify a " +"http proxy (http proxy servers often understand ftp urls) using this method " +"and ONLY this method. ftp proxies using http specified in the configuration " +"file will be ignored." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: sources.list.5.xml:160 +msgid "copy" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:162 +msgid "" +"The copy scheme is identical to the file scheme except that packages are " +"copied into the cache directory instead of used directly at their location. " +"This is useful for people using a zip disk to copy files around with APT." +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: sources.list.5.xml:167 +msgid "rsh" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: sources.list.5.xml:167 +msgid "ssh" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:169 +msgid "" +"The rsh/ssh method invokes rsh/ssh to connect to a remote host as a given " +"user and access the files. It is a good idea to do prior arrangements with " +"RSA keys or rhosts. Access to files on the remote uses standard " +"<command>find</command> and <command>dd</command> commands to perform the " +"file transfers from the remote." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:121 +msgid "" +"The currently recognized URI types are cdrom, file, http, ftp, copy, ssh, " +"rsh. <placeholder type=\"variablelist\" id=\"0\"/>" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:181 +msgid "" +"Uses the archive stored locally (or NFS mounted) at /home/jason/debian for " +"stable/main, stable/contrib, and stable/non-free." +msgstr "" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:183 +#, no-wrap +msgid "deb file:/home/jason/debian stable main contrib non-free" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:185 +msgid "As above, except this uses the unstable (development) distribution." +msgstr "" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:186 +#, no-wrap +msgid "deb file:/home/jason/debian unstable main contrib non-free" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:188 +msgid "Source line for the above" +msgstr "" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:189 +#, no-wrap +msgid "deb-src file:/home/jason/debian unstable main contrib non-free" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:191 +msgid "" +"Uses HTTP to access the archive at archive.debian.org, and uses only the " +"hamm/main area." +msgstr "" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:193 +#, no-wrap +msgid "deb http://archive.debian.org/debian-archive hamm main" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:195 +msgid "" +"Uses FTP to access the archive at ftp.debian.org, under the debian " +"directory, and uses only the stable/contrib area." +msgstr "" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:197 +#, no-wrap +msgid "deb ftp://ftp.debian.org/debian stable contrib" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:199 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:203 +#, no-wrap +msgid "deb ftp://ftp.debian.org/debian unstable contrib" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:205 +msgid "" +"Uses HTTP to access the archive at nonus.debian.org, under the debian-non-US " +"directory." +msgstr "" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:207 +#, no-wrap +msgid "" +"deb http://nonus.debian.org/debian-non-US stable/non-US main contrib " +"non-free" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><literallayout> +#: sources.list.5.xml:216 +#, no-wrap +msgid "deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:209 +msgid "" +"Uses HTTP to access the archive at nonus.debian.org, under the debian-non-US " +"directory, and uses only files found under " +"<filename>unstable/binary-i386</filename> on i386 machines, " +"<filename>unstable/binary-m68k</filename> on m68k, and so forth for other " +"supported architectures. [Note this example only illustrates how to use the " +"substitution variable; non-us is no longer structured like this] " +"<placeholder type=\"literallayout\" id=\"0\"/>" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:221 +msgid "&apt-cache; &apt-conf;" +msgstr "" diff --git a/doc/po4a.conf b/doc/po4a.conf new file mode 100644 index 000000000..edf8d0357 --- /dev/null +++ b/doc/po4a.conf @@ -0,0 +1,50 @@ +# location of pot and po +[po_directory] po + +# Entities need to be present, even if not translated +[po4a_alias:entity] text opt:"-k 0" + +# define source file and translated file (one file per line) +[type: man] apt.8 $lang:$lang/apt.$lang.8 +[type: entity] apt.ent $lang:$lang/apt.ent +[type: docbook] apt-cache.8.xml $lang:$lang/apt-cache.$lang.8.xml \ + add_$lang:$lang/addendum/xml_$lang.add +[type: docbook] apt-cdrom.8.xml $lang:$lang/apt-cdrom.$lang.8.xml \ + add_$lang:$lang/addendum/xml_$lang.add +[type: docbook] apt-config.8.xml $lang:$lang/apt-config.$lang.8.xml \ + add_$lang:$lang/addendum/xml_$lang.add +[type: docbook] apt-extracttemplates.1.xml $lang:$lang/apt-extracttemplates.$lang.1.xml \ + add_$lang:$lang/addendum/xml_$lang.add +[type: docbook] apt-ftparchive.1.xml $lang:$lang/apt-ftparchive.$lang.1.xml \ + add_$lang:$lang/addendum/xml_$lang.add +[type: docbook] apt-get.8.xml $lang:$lang/apt-get.$lang.8.xml \ + add_$lang:$lang/addendum/xml_$lang.add +[type: docbook] apt-key.8.xml $lang:$lang/apt-key.$lang.8.xml \ + add_$lang:$lang/addendum/xml_$lang.add +[type: docbook] apt-mark.8.xml $lang:$lang/apt-mark.$lang.8.xml \ + add_$lang:$lang/addendum/xml_$lang.add +[type: docbook] apt-secure.8.xml $lang:$lang/apt-secure.$lang.8.xml \ + add_$lang:$lang/addendum/xml_$lang.add +[type: docbook] apt-sortpkgs.1.xml $lang:$lang/apt-sortpkgs.$lang.1.xml \ + add_$lang:$lang/addendum/xml_$lang.add +[type: docbook] apt.conf.5.xml $lang:$lang/apt.conf.$lang.5.xml \ + add_$lang:$lang/addendum/xml_$lang.add +[type: docbook] apt_preferences.5.xml $lang:$lang/apt_preferences.$lang.5.xml \ + add_$lang:$lang/addendum/xml_$lang.add +[type: docbook] sources.list.5.xml $lang:$lang/sources.list.$lang.5.xml \ + add_$lang:$lang/addendum/xml_$lang.add +#[type: sgml] cache.sgml $lang:$lang/cache.$lang.sgml \ +# add_$lang::$lang/addendum/debiandoc_$lang.add +#[type: sgml] design.sgml $lang:$lang/design.$lang.sgml\ +# add_$lang::$lang/addendum/debiandoc_$lang.add +#[type: sgml] dpkg-tech.sgml $lang:$lang/dpkg-tech.$lang.sgml\ +# add_$lang::$lang/addendum/debiandoc_$lang.add +#[type: sgml] files.sgml $lang:$lang/files.$lang.sgml\ +# add_$lang::$lang/addendum/debiandoc_$lang.add +#[type: sgml] guide.sgml $lang:$lang/guide.$lang.sgml\ +# add_$lang::$lang/addendum/debiandoc_$lang.add +#[type: sgml] method.sgml $lang:$lang/method.$lang.sgml\ +# add_$lang::$lang/addendum/debiandoc_$lang.add +#[type: sgml] offline.sgml $lang:$lang/offline.$lang.sgml\ +# add_$lang::$lang/addendum/debiandoc_$lang.add + -- cgit v1.2.3 From 095bdb6fe230a499ab150e55d514b938d2d2bbd7 Mon Sep 17 00:00:00 2001 From: David Kalnischkies <kalnischkies@gmail.com> Date: Wed, 26 Aug 2009 17:29:29 +0200 Subject: =?UTF-8?q?=20=20[=20Nicolas=20Fran=C3=A7ois=20]=20=20=20*=20doc/j?= =?UTF-8?q?a/*,=20doc/po/ja.po:=20=20=20=20=20-=20remove=20the=20old=20ja?= =?UTF-8?q?=20man=20page=20translation=20and=20replace=20it=20with=20=20?= =?UTF-8?q?=20=20=20=20=20the=20new=20po4a-powered=20translation=20by=20KU?= =?UTF-8?q?RASAWA=20Nozomu.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- debian/changelog | 3 + doc/ja/addendum/debiandoc_ja.add | 7 + doc/ja/addendum/xml_ja.add | 7 + doc/ja/apt-cache.ja.8.xml | 701 --- doc/ja/apt-cdrom.ja.8.xml | 255 - doc/ja/apt-config.ja.8.xml | 165 - doc/ja/apt-extracttemplates.ja.1.xml | 121 - doc/ja/apt-ftparchive.ja.1.xml | 1020 ---- doc/ja/apt-get.ja.8.xml | 900 ---- doc/ja/apt-key.ja.8.xml | 176 - doc/ja/apt-secure.ja.8.xml | 374 -- doc/ja/apt-sortpkgs.ja.1.xml | 110 - doc/ja/apt.conf.ja.5.xml | 809 --- doc/ja/apt.ent.ja | 328 -- doc/ja/apt_preferences.ja.5.xml | 940 ---- doc/ja/makefile | 32 +- doc/ja/manpage.refs | 4 - doc/ja/sources.list.ja.5.xml | 427 -- doc/po/ja.po | 9649 ++++++++++++++++++++++++++++++++++ 19 files changed, 9688 insertions(+), 6340 deletions(-) create mode 100644 doc/ja/addendum/debiandoc_ja.add create mode 100644 doc/ja/addendum/xml_ja.add delete mode 100644 doc/ja/apt-cache.ja.8.xml delete mode 100644 doc/ja/apt-cdrom.ja.8.xml delete mode 100644 doc/ja/apt-config.ja.8.xml delete mode 100644 doc/ja/apt-extracttemplates.ja.1.xml delete mode 100644 doc/ja/apt-ftparchive.ja.1.xml delete mode 100644 doc/ja/apt-get.ja.8.xml delete mode 100644 doc/ja/apt-key.ja.8.xml delete mode 100644 doc/ja/apt-secure.ja.8.xml delete mode 100644 doc/ja/apt-sortpkgs.ja.1.xml delete mode 100644 doc/ja/apt.conf.ja.5.xml delete mode 100644 doc/ja/apt.ent.ja delete mode 100644 doc/ja/apt_preferences.ja.5.xml delete mode 100644 doc/ja/manpage.refs delete mode 100644 doc/ja/sources.list.ja.5.xml create mode 100644 doc/po/ja.po diff --git a/debian/changelog b/debian/changelog index e279633fc..f978eb367 100644 --- a/debian/changelog +++ b/debian/changelog @@ -50,6 +50,9 @@ apt (0.7.22.3) unstable; urgency=low * Cleaned up the first patch draft from KURASAWA Nozomu to finally get po4a support for translating the man pages. Many thanks to both for this excellent work! (Closes: #441608) + * doc/ja/*, doc/po/ja.po: + - remove the old ja man page translation and replace it with + the new po4a-powered translation by KURASAWA Nozomu. * doc/*.?.xml (manpages): - add contrib to author tags and also add refmiscinfo to fix warnings * doc/style.txt, buildlib/defaults.mak, buildlib/manpage.mak: diff --git a/doc/ja/addendum/debiandoc_ja.add b/doc/ja/addendum/debiandoc_ja.add new file mode 100644 index 000000000..05d4cff3f --- /dev/null +++ b/doc/ja/addendum/debiandoc_ja.add @@ -0,0 +1,7 @@ +PO4A-HEADER:mode=after;position=manbugs;beginboundary=^</refentry> + <refsect1><title>訳者 + 倉澤 望 nabetaro@debian.or.jp (2003-2006,2009), + Debian JP Documentation ML debian-doc@debian.or.jp + + + diff --git a/doc/ja/addendum/xml_ja.add b/doc/ja/addendum/xml_ja.add new file mode 100644 index 000000000..05d4cff3f --- /dev/null +++ b/doc/ja/addendum/xml_ja.add @@ -0,0 +1,7 @@ +PO4A-HEADER:mode=after;position=manbugs;beginboundary=^ + 訳者 + 倉澤 望 nabetaro@debian.or.jp (2003-2006,2009), + Debian JP Documentation ML debian-doc@debian.or.jp + + + diff --git a/doc/ja/apt-cache.ja.8.xml b/doc/ja/apt-cache.ja.8.xml deleted file mode 100644 index 1d30e224d..000000000 --- a/doc/ja/apt-cache.ja.8.xml +++ /dev/null @@ -1,701 +0,0 @@ - - -%aptent; - -]> - - - - - &apt-author.jgunthorpe; - &apt-author.team; - &apt-email; - &apt-product; - - 29 February 2004 - - - - apt-cache - 8 - - - - - apt-cache - - APT パッケージ操作ユーティリティ -- キャッシュ操作 - - - - - - apt-cache - - - - - add file - gencaches - showpkg pkg - showsrc pkg - stats - dump - dumpavail - unmet - search regex - show pkg - depends pkg - rdepends pkg - pkgnames prefix - dotty pkg - policy pkgs - madison pkgs - - - - - - 説明 - - apt-cache は APT のパッケージキャッシュに対して、 - さまざまな操作を行います。 - apt-cache は、システム状態の操作は行いませんが、 - パッケージのメタデータより検索したり、 - 興味深い出力を生成するといった操作を提供します。 - - - オプションや オプションを除き、 - 以下に挙げるコマンドが必要です。 - - - - add file(s) - add は、 - パッケージキャッシュに指定したパッケージインデックスファイルを追加します。 - デバッグ専用です。 - - - gencaches - - gencaches は、 - apt-get check と同じ動作を提供します。 - これは &sources-list; 内の取得元と - /var/lib/dpkg/statusから、 - ソースとパッケージのキャッシュを構築します。 - - - showpkg pkg(s) - - showpkg は、 - コマンドライン上に列挙したパッケージの情報を表示します。 - 後に続く引数はパッケージ名となります。 - 各パッケージについて、有効なバージョンと被依存関係を列挙し、 - さらにその各バージョンについて依存関係を表示します。 - (通常の) 依存関係とは、対象のパッケージが依存しているパッケージを指します。 - また、被依存関係とは、対象のパッケージに依存しているパッケージを指します。 - 従って、パッケージの依存関係は満たさなければなりませんが、 - 被依存関係は満たす必要はありません。 - 実例として、以下に apt-cache showpkg libreadline2 の - 出力を掲げます。 - - -Package: libreadline2 -Versions: 2.1-12(/var/state/apt/lists/foo_Packages), -Reverse Depends: - libreadlineg2,libreadline2 - libreadline2-altdev,libreadline2 -Dependencies: -2.1-12 - libc5 (2 5.4.0-0) ncurses3.0 (0 (null)) -Provides: -2.1-12 - -Reverse Provides: - - - - つまり、libreadline2 の version 2.1-12 は、 - libc5 と ncurses3.0 に依存していて、libreadline2 が動作するには、 - これらをインストールする必要があるということが判ります。 - 一方、libreadlineg2 と libreadline2-altdev は libreadline2 に依存しています。 - libreadline2 をインストールするためには、libc5, ncurses3.0, ldso を - すべてインストールしなければなりませんが、libreadlineg2 と - libreadline2-altdev はインストールする必要はありません。 - 出力の残りの部分の意味については、 - apt のソースコードを調べるのが最良でしょう。 - - - - statsstats - はキャッシュについての統計情報を表示します。 - それ以上、引数は必要ありません。以下の統計情報を表示します。 - - - パッケージ名総数は、 - キャッシュに存在するパッケージ数を表します。 - - - - 通常パッケージは、 - 公式の普通のパッケージ数を表します。 - これは、他のパッケージの依存関係で使用された名称で、それが一対一に対応 - するパッケージです。 - 大多数のパッケージはこのカテゴリに入ります。 - - - - 純粋仮想パッケージは、 - 仮想パッケージ名としてのみ存在するパッケージ - (仮想パッケージ名のみを「提供」し、 - 実際にはいかなるパッケージもその名称を持たない) の数を表します。 - 例えば、Debian GNU/Linux システムでは "mail-transport-agent" - は純粋仮想パッケージです。 - "mail-transport-agent" を提供するパッケージはいくつもありますが、 - "mail-transport-agent" という名称のパッケージはありません。 - - - - 単一仮想パッケージは、 - 特定の仮想パッケージ名を提供するパッケージが、 - ただ一つの場合の数を表します。 - 例えば、Debian GNU/Linux システムでは、"X11-text-viewer" - は仮想パッケージですが、"X11-text-viewer" を提供するパッケージは、 - xless パッケージのみということです。 - - - - 複合仮想パッケージは、 - その仮想パッケージ名を提供するパッケージが複数あるか、 - またパッケージ名と同じ仮想パッケージ名を持つパッケージ数を表します。 - 例えば、Debian GNU/Linux システムでは、 - debconf は実際のパッケージ名でもありますが、 - debconf-tiny によって提供もされています。 - - - - 欠落は、依存関係中には存在するのに、 - どのパッケージにも提供されていないパッケージ名の数を表します。 - このパッケージがあるということは、 - 全ディストリビューションにアクセスできていないか、 - (実ないし仮想) パッケージがディストリビューションからはずされてしまった可能性もあります。 - 通常では、構文が矛盾するとこのようになります。 - - - - 個別バージョン総数は、 - キャッシュに存在するパッケージのバージョンの数を表します。 - そのため、この値は最小でもパッケージ名総数と一致します。 - もし複数のディストリビューション (例 "stable" と "unstable" の両方) - を利用した場合、 - この値はパッケージ名総数よりもかなり大きい数になります。 - - - - 依存関係総数は、 - キャッシュにあるすべてのパッケージで要求された依存関係の数です。 - - - - - - showsrc pkg(s) - - showsrc は、 - 指定したパッケージ名に一致するソースパッケージを、すべて表示します。 - バイナリになるときの名称を宣言したレコードと同様に、 - すべてのバージョンについて表示します。 - - - dump - - dump は、 - キャッシュ内のパッケージそれぞれについて、短い一覧を表示します。 - 主にデバッグ用です。 - - - dumpavail - - dumpavail は、 - 標準出力に利用可能なものの一覧を出力します。 - &dpkg; と共に使用すると便利ですし、 - &dselect; でも使用されます。 - - - unmet - - unmet は、 - パッケージキャッシュ内にある、 - 不適当な依存関係の概要を表示します。 - - - show pkg(s) - - show は、 - dpkg --print-avail と同様の機能を実行します。 - これは、指定したパッケージのパッケージレコードの表示です。 - - - - search regex [ regex ... ] - - search は、与えられた正規表現によって、 - すべての利用可能なパッケージに対して全文検索を行います。 - パッケージ名と説明に対して検索を行い、 - パッケージ名と短い説明文を表示します。 - が与えられた場合、マッチしたパッケージに対し - show と同じ情報を出力します。 - が与えられた場合は、 - 説明文に対して検索を行わず、パッケージ名に対してのみ対象とします。 - - - 空白で区切った引数で、 - 複数の検索パターンの and をとることができます。 - - - depends pkg(s) - - depends は、 - パッケージが持っている依存関係と、 - その依存関係を満たす他のパッケージの一覧を表示します。 - - - rdepends pkg(s) - - rdepends は、 - パッケージが持つ被依存関係を一覧表示します。 - - - pkgnames [ prefix ] - - このコマンドは、 - システムでの各パッケージの名称を表示します。 - オプションの引数により、取得する一覧より先頭一致で抽出することができます。 - この出力はシェルのタブによる補完機能に使いやすく、 - また非常に速く生成されます。 - このコマンドは オプションと共に使用すると、 - 非常に便利です。 - - - dotty pkg(s) - - dotty は、 - コマンドライン上のパッケージ名から、 - GraphViz - パッケージの dotty コマンドで利用するのに便利な出力を生成します。 - 結果はパッケージの関係を表わす、ノード・エッジのセットで表現されます。 - デフォルトでは、すべての依存パッケージをトレースするので、 - 非常に大きい図が得られます。 - これは、APT::Cache::GivenOnly - オプションを設定して解除できます。 - - - 結果のノードは数種の形状をとります。 - 通常パッケージは四角、純粋仮想パッケージは三角、複合仮想パッケージは菱形、 - 六角形は欠落パッケージをそれぞれ表します。 - オレンジの四角は再帰が終了した「リーフパッケージ」、青い線は先行依存、 - 緑の線は競合を表します。 - - - 注意) dotty は、 - パッケージのより大きなセットのグラフは描けません。 - - - policy [ pkg(s) ] - - policy は、 - 設定ファイル関係の問題について、デバッグを支援します。 - 引数を指定しなかった場合、取得元ごとの優先順位を表示します。 - 一方、パッケージ名を指定した場合、 - 優先順の詳細情報を表示します。 - - - madison /[ pkg(s) ] - - apt-cachemadison - コマンドは、Debian アーカイブ管理ツール madison - の機能のサブセットで、出力フォーマットを真似ようとします。 - パッケージの利用可能バージョンを表形式で表示します。 - オリジナルの madison と違い、 - APT がパッケージ一覧を検索したアーキテクチャ - (APT::Architecture) - の情報を表示するだけです。 - - - - - - オプション - &apt-cmdblurb; - - - - - パッケージキャッシュを格納するファイルを選択します。 - パッケージキャッシュは、すべての操作で使用される一次キャッシュです。 - 設定項目 - Dir::Cache::pkgcache - - - - - ソースキャッシュを格納するファイルを選択します。 - このソースキャッシュは gencaches でのみ使用され、 - ここに解析された取得元のパッケージ情報が格納されています。 - パッケージキャッシュを構築する際に、ソースキャッシュは、 - 全パッケージファイルを再解析を避ける上で便利です。 - - 設定項目 - Dir::Cache::srcpkgcache - - - - - 静粛 - 進捗表示を省略し、 - ログをとるのに便利な出力を行います。 - 最大 2 つまで q を重ねることでさらに静粛にできます。 - また、 のように静粛レベルを指定して、 - 設定ファイルを上書きすることもできます。 - 設定項目 - quiet - - - - - 「重要」依存関係のみ表示 - unmet と共に使用します。 - これは「依存」関係と「先行依存」関係のみを表示するためです。 - 設定項目 - APT::Cache::Important - - - - - search 時に全パッケージレコードを表示します。 - 設定項目 - APT::Cache::ShowFull - - - - - 全利用可能バージョンのレコード全体を表示します。 - これはデフォルトの動作で、 - 無効にするには を使用してください。 - を指定すると、 - 候補バージョン (インストールの際に選択されるもの) だけ表示します。 - このオプションは、show コマンドでのみ適用できます。 - 設定項目 - APT::Cache::AllVersions - - - - - そのままキャッシュを使用するのではなく、 - 自動的にパッケージキャッシュを再生成します。これはデフォルトの動作で、 - 無効にするには を使用してください。 - 設定項目 - APT::Cache::Generate - - - - - 説明文ではなく、パッケージ名からのみ検索します。 - 設定項目 - APT::Cache::NamesOnly - - - - - pkgnames で、 - 仮想パッケージや欠落依存関係を含めた全名称を表示します。 - 設定項目 - APT::Cache::AllNames - - - - - dependsrdepends - で、指定した全パッケージを再帰的に一度に表示します。 - 設定項目 - APT::Cache::RecurseDepends - - - - - - dependsrdepends の出力を、 - 現在インストールされているパッケージに限定します。 - 設定項目 - APT::Cache::Installed - - - &apt-commonoptions; - - - - - - ファイル - - /etc/apt/sources.list - - パッケージの取得元。 - 設定項目 - Dir::Etc::SourceList - - - &statedir;/lists/ - - &sources-list; に指定した、 - パッケージリソースごとの状態情報格納エリア。 - 設定項目 - Dir::State::Lists - - - &statedir;/lists/partial/ - - 取得中状態情報格納エリア。 - 設定項目 - Dir::State::Lists (必然的に不完全) - - - - - - 関連項目 - &apt-conf;, &sources-list;, &apt-get; - - - - - 診断メッセージ - - apt-cache は正常終了時に 0 を返します。 - エラー時には十進の 100 を返します。 - - - - &manbugs; - &translator; - diff --git a/doc/ja/apt-cdrom.ja.8.xml b/doc/ja/apt-cdrom.ja.8.xml deleted file mode 100644 index bf84b4749..000000000 --- a/doc/ja/apt-cdrom.ja.8.xml +++ /dev/null @@ -1,255 +0,0 @@ - - -%aptent; - -]> - - - - - &apt-author.jgunthorpe; - &apt-author.team; - &apt-email; - &apt-product; - 14 February 2004 - - - - apt-cdrom - 8 - - - - - apt-cdrom - - APT CDROM 管理ユーティリティ - - - - - - apt-cdrom - - - - - - add - ident - - - - - - 説明 - - apt-cdrom は利用可能な取得元として、 - APT のリストに新しい CDROM を追加するのに便利です。 - apt-cdrom は焼き損じを可能な限り補正し、 - ディスク構造の確認を助けます。また、インデックスファイルの確認を行います。 - - - - APT システムに手作業で CD を追加するのは難しいため、 - apt-cdrom が必要になります。 - その上、CD セットのディスクを 1 枚づつ、 - 焼き損じを補正できるか評価しなければなりません。 - - - - オプションや オプションを除き、 - 以下に挙げるコマンドが必要です。 - - - add - - add は、 - 新しいディスクを取得元リストに追加します。 - CDROM デバイスのアンマウント、ディスク挿入のプロンプトの表示の後に、 - ディスクのスキャンとインデックスファイルのコピーを行います。 - ディスクに正しい disk ディレクトリが存在しない場合、 - タイトルを入力するよう促します。 - - - - APT は、現在ドライブにあるディスクのトラックから取得した、 - CDROM ID を使用します。またその ID を、 - &statedir;/cdroms.list 内のデータベースで管理します。 - - - - - ident - - 格納されているファイル名と、 - 現在のディスクが同一かどうかをレポートする、デバッグツールです。 - - - - - - - - Options - &apt-cmdblurb; - - - - - マウントポイント - cdrom をマウントする場所を指定します。 - このマウントポイントは、 - /etc/fstab に正しく設定されている必要があります。 - 設定項目 - Acquire::cdrom::mount - - - - - - - ディスクの名前変更 - - 指定した名前でディスクのラベルを変更・更新します。このオプションにより、 - apt-cdrom が新しいラベルを入力するよう促します。 - 設定項目 - APT::CDROM::Rename - - - - - - - マウントなし - apt-cdrom が、 - マウントポイントにマウント・アンマウントしないようにします。 - 設定項目 - APT::CDROM::NoMount - - - - - - - 高速コピー - パッケージファイルが妥当であると仮定し、 - チェックを全く行いません。このオプションは、 - このディスクで以前 apt-cdrom を行っており、 - エラーを検出しなかった場合のみ使用すべきです。 - 設定項目 - APT::CDROM::Fast - - - - - - - 完全パッケージスキャン - - 古い Debian 1.1/1.2 のディスクは、パッケージファイルが違う場所にあるため、 - このオプションを使う必要があるかもしれません。 - CD をスキャンするのに非常に時間がかかりますが、 - 全パッケージファイルを抽出することができます。 - - - - - - - - - - 変更なし - &sources-list; ファイルの変更や、 - インデックスファイルの書き込みを行いません。 - とはいえ、すべてのチェックは行います。 - 設定項目 - APT::CDROM::NoAct - - - - - &apt-commonoptions; - - - - - - 関連項目 - &apt-conf;, &apt-get;, &sources-list; - - - - - 診断メッセージ - - apt-cdrom は正常終了時に 0 を返します。 - エラー時には十進の 100 を返します。 - - - - &manbugs; - &translator; - - diff --git a/doc/ja/apt-config.ja.8.xml b/doc/ja/apt-config.ja.8.xml deleted file mode 100644 index b1d90f5b5..000000000 --- a/doc/ja/apt-config.ja.8.xml +++ /dev/null @@ -1,165 +0,0 @@ - - -%aptent; - -]> - - - - - &apt-author.jgunthorpe; - &apt-author.team; - &apt-email; - &apt-product; - - 29 February 2004 - - - - apt-config - 8 - - - - - apt-config - - APT 設定取得プログラム - - - - - - apt-config - - - - - shell - dump - - - - - - 説明 - - apt-config は、 - APT スイートの様々な所で一貫した設定を行うために使用する、内部ツールです。 - スクリプトアプリケーションで使いやすい方法で、 - メイン設定ファイル /etc/apt/apt.conf - にアクセスします。 - - - オプションを除き、 - 以下に挙げるコマンドが必要です。 - - - shell - - - shell は、シェルスクリプトから設定情報にアクセスするのに使用します。 - 引数として、まずシェル変数、次に取得したい設定値をペアで与えます。 - 出力として、現在の値ごとにシェル代入コマンドの一覧を表示します。 - シェルスクリプト内では、以下のようにしてください。 - - - -OPTS="-f" -RES=`apt-config shell OPTS MyApp::options` -eval $RES - - - - これは、MyApp::options の値をシェル環境変数 $OPTS にセットします。 - デフォルト値は となります。 - - - 設定項目は /[fdbi] を後ろに付けられます。 - f はファイル名を、d はディレクトリを、b は true か false を、 - i は整数を返します。 - 返り値ごとに内部で正規化と検証を行います。 - - - - - dump - - - 設定箇所の内容を表示するだけです。 - - - - - - - - オプション - &apt-cmdblurb; - - - - &apt-commonoptions; - - - - - - 関連項目 - &apt-conf; - - - - - 診断メッセージ - - apt-config は正常終了時に 0 を返します。 - エラー時には十進の 100 を返します。 - - - - &manbugs; - &translator; - - - diff --git a/doc/ja/apt-extracttemplates.ja.1.xml b/doc/ja/apt-extracttemplates.ja.1.xml deleted file mode 100644 index 079c89402..000000000 --- a/doc/ja/apt-extracttemplates.ja.1.xml +++ /dev/null @@ -1,121 +0,0 @@ - - -%aptent; - -]> - - - - - &apt-author.jgunthorpe; - &apt-author.team; - &apt-email; - &apt-product; - - 29 February 2004 - - - - apt-extracttemplates - 1 - - - - - apt-extracttemplates - - Debian パッケージから DebConf 設定とテンプレートを抽出するユーティリティ - - - - - - apt-extracttemplates - - - file - - - - - 説明 - - apt-extracttemplates は、 - 入力に複数の Debian パッケージをとり、 - 関連する設定スクリプトとテンプレートファイルを - (一時ディレクトリに) 出力します。 - 設定スクリプト・テンプレートファイルを持つ、 - 渡されたパッケージそれぞれに対し、以下の形式で 1 行ずつ出力します。 - package version template-file config-script - - テンプレートファイルや、設定スクリプトは、 - -t や --tempdir で指定した一時ディレクトリ - (APT::ExtractTemplates::TempDir) に書き出され、 - ファイル名は、package.template.XXXX や - package.config.XXXX と言った形になります。 - - - - オプション - &apt-cmdblurb; - - - - - - 抽出した debconf テンプレートファイルや設定スクリプトを書き出す、 - 一時ディレクトリ。 - 設定項目 - APT::ExtractTemplates::TempDir - - - &apt-commonoptions; - - - - - - - - 関連項目 - &apt-conf; - - - - 診断メッセージ - apt-extracttemplates は正常終了時に 0 を返します。 - エラー時には十進の 100 を返します。 - - - &manbugs; - &translator; - - diff --git a/doc/ja/apt-ftparchive.ja.1.xml b/doc/ja/apt-ftparchive.ja.1.xml deleted file mode 100644 index be6bbd767..000000000 --- a/doc/ja/apt-ftparchive.ja.1.xml +++ /dev/null @@ -1,1020 +0,0 @@ - - -%aptent; - -]> - - - - - &apt-author.jgunthorpe; - &apt-author.team; - &apt-email; - &apt-product; - - 29 February 2004 - - - - apt-ftparchive - 1 - - - - - apt-ftparchive - - インデックスファイル生成ユーティリティ - - - - - - apt-ftparchive - - - - - - - - - packagespathoverridepathprefix - sourcespathoverridepathprefix - contents path - release path - generate config-file section - clean config-file - - - - - - 説明 - - apt-ftparchive は、 - APT が取得元にアクセスするのに必要な、 - インデックスファイルを生成するコマンドラインツールです。 - インデックスファイルは、元のサイトの内容に基づき生成されるべきです。 - - - apt-ftparchive は、 - &dpkg-scanpackages; プログラムのスーパーセットで、 - packages コマンド経由で機能全体を取り込んでいます。 - また、contents ファイルジェネレータ contents と - 完全なアーカイブの生成プロセス「スクリプト」である綿密な手段を含んでいます。 - - - 本質的に apt-ftparchive は、 - .deb ファイルの内容をキャッシュするのにバイナリデータベースを使用できます。 - また、&gzip; 以外のいかなる外部プログラムにも依存しません。 - すべて生成する際には、 - ファイル変更点の検出と希望した圧縮出力ファイルの作成を自動的に実行します。 - - - オプションや オプションを除き、 - 以下に挙げるコマンドが必要です。 - - - packages - - - packages コマンドは、 - ディレクトリツリーからパッケージファイルを生成します。 - 与えられたディレクトリから再帰検索し、.deb ファイルを取得します。 - またパッケージレコードを標準出力にそれぞれ出力します。 - このコマンドは、&dpkg-scanpackages; とほぼ同じです。 - - - オプションで、 - キャッシュ DB を指定できます。 - - - sources - - - sources コマンドは、 - ディレクトリツリーからソースインデックスファイルを生成します。 - 与えられたディレクトリから再帰検索し、.dsc ファイルを取得します。 - またソースレコードを標準出力にそれぞれ出力します。 - このコマンドは、&dpkg-scansources; とほぼ同じです。 - - - override ファイルを指定した場合、 - src 拡張子がついたソースオーバーライドファイルを探します。 - 使用するソースオーバーライドファイルを変更するのには、 - --source-override オプションを使用します。 - - - contents - - - contents コマンドは、 - ディレクトリツリーからコンテンツファイルを生成します。 - 与えられたディレクトリから再帰検索し、.deb ファイルを取得します。 - またファイルごとにファイル一覧を読み取ります。 - その後、パッケージに対応するファイル一覧を標準出力にソートして出力します。 - ディレクトリは出力に含まれません。 - 複数のパッケージが同じファイルを持つ場合、 - パッケージ名をカンマ区切りで出力します。 - - - オプションで、 - キャッシュ DB を指定できます。 - - - release - - - release コマンドは、 - ディレクトリツリーから Release ファイルを生成します。 - 与えられたディレクトリから、Packages, Packages.gz, Packages.bz2, Sources, - Sources.gz, Sources.bz2, Release, md5sum.txt - といったファイルを再帰検索します。 - その後、ファイルごとの MD5 ダイジェストと SHA1 ダイジェストを含んだ - Release ファイルを、標準出力に書き出します。 - - - Release ファイルの追加メタデータフィールドの値は、 - APT::FTPArchive::Release 以下の相当する値 - (例: APT::FTPArchive::Release::Origin) をとります。 - サポートするフィールドは、 - Origin, Label, Suite, - Version, Codename, Date, - Architectures, Components, Description です。 - - - - generate - - - generate コマンドは、 - cron スクリプトから実行できるよう設計されており、 - 与えられた設定ファイルに従ってインデックスを生成します。 - 設定言語は、必要な設定を維持する簡単な方法を提供すると共に、 - インデックスファイルをどのディレクトリから作成するかを指定する、 - 柔軟な方法を提供します。 - - - clean - - - clean コマンドは、 - 設定ファイルで与えられたデータベースを、 - もう必要ないレコードを削除して整理します。 - - - - - - generate 設定 - - - generate コマンドは、 - 生成するアーカイブに関する記述をした設定ファイルを使用します。 - 設定ファイルは、bind 8 や dhcpd といった ISC ツールに見られるような、 - ISC 設定フォーマットに従います。 - &apt-conf; に、文法の説明があります。 - generate 設定はセクション法で解析しますが、 - &apt-conf; はツリー法で解析するのに注意してください。 - これはスコープタグの扱い方に違いがあるだけです。 - - - - generate 設定には 4 個の独立したセクションがあります。 - 以下それぞれ説明します。 - - - Dir セクション - - - Dir セクションは、 - 生成プロセスで必要なファイルを配置するための、 - 標準ディレクトリを定義します。 - このディレクトリは、完全な絶対パスを生成するため、 - 後のセクションで定義される相対パスの前に結合します。 - - ArchiveDir - - - FTP アーカイブのルートを指定します。 - 標準的な Debian 設定では、このディレクトリには - ls-LR と dist ノードがあります。 - - - OverrideDir - - - オーバーライドファイルの場所を指定します。 - - - CacheDir - - - キャッシュファイルの場所を指定します。 - - - FileListDir - - - FileList 設定が以下で使用されている場合、 - ファイルリストファイルの場所を指定します。 - - - - - - Default セクション - - - Default セクションではデフォルト値を指定します。 - また、生成器の動作を制御する設定も行います。 - 他のセクションでは、ここにあるデフォルト値を、 - セクションごとの設定で上書きします。 - - Packages::Compress - - - Package インデックスファイルのデフォルトの圧縮方法を設定します。 - 少なくともひとつは '.' (圧縮なし), 'gzip', 'bzip2' が入る、 - 空白区切りの文字列です。 - 圧縮方法のデフォルトはすべて '. gzip' です。 - - - Packages::Extensions - - - パッケージファイル拡張子のデフォルト値を列挙します。 - このデフォルト値は '.deb' です。 - - - Sources::Compress - - - Packages::Compress と同様に、 - Sources ファイルの圧縮方法を指定します。 - - - Sources::Extensions - - - ソースファイル拡張子のデフォルト値を列挙します。 - このデフォルト値は '.dsc' です。 - - - Contents::Compress - - - Packages::Compress と同様に、 - Contents ファイルの圧縮方法を指定します。 - - - DeLinkLimit - - - 実行するごとに delink (及びハードリンクの置き換え) する量を、 - キロバイト単位で指定します。セクションごとの - External-Links 設定と合わせて使います。 - - - FileMode - - - 作成したインデックスファイルのモードを指定します。 - デフォルトは 0644 です。全インデックスファイルは、 - umask を無視してこのモードを使用します。 - - - - - - TreeDefault セクション - - - 特定の Tree セクションのデフォルトを設定します。 - これらの変数はすべて置換変数であり、 - 文字列 $(DIST), $(SECTION), $(ARCH) をそれぞれの値に展開します。 - - - MaxContentsChange - - - 日毎に生成する contents ファイルをキロバイト単位で設定します。 - contents ファイルをラウンドロビンし、数日経つとすべて再生成します。 - - - ContentsAge - - - 変更がない contents ファイルをチェックする日数を指定します。 - この制限を越えた contents ファイルの mtime を、更新します。 - パッケージファイルが変更されても、 - [例えば上書き編集で] contents ファイルが更新されないような場合、 - こういったことが発生します。 - 新しい .deb ファイルをインストールしたい場合、保留を解除でき、 - 少なくとも新しいファイルが必要です。 - デフォルトは 10 で、単位は日です。 - - - Directory - - - .deb ディレクトリツリーの先頭を設定します。デフォルトは - $(DIST)/$(SECTION)/binary-$(ARCH)/ です。 - - - SrcDirectory - - - ソースパッケージディレクトリツリーの先頭を設定します。デフォルトは - $(DIST)/$(SECTION)/source/ です。 - - - Packages - - - Packages ファイルの出力先を設定します。デフォルトは - $(DIST)/$(SECTION)/binary-$(ARCH)/Packages です。 - - - Sources - - - Packages ファイルの出力先を設定します。デフォルトは - $(DIST)/$(SECTION)/source/Sources です。 - - - InternalPrefix - - - 外部リンクではなく、内部リンクと見なす判断材料となる、 - パスのプレフィックスを設定します。デフォルトは、 - $(DIST)/$(SECTION)/ です。 - - - Contents - - - Contents ファイルの出力先を設定します。デフォルトは、 - $(DIST)/Contents-$(ARCH) です。 - 複数の Packages ファイルを ひとつの Contents ファイルにまとめられる設定 - (デフォルト) の場合、apt-ftparchive - は自動でパッケージファイルをまとめます。 - - - Contents::Header - - - contents の出力に付けるヘッダファイルを設定します。 - - - BinCacheDB - - - このセクションで使用するバイナリキャッシュデータベースを設定します。 - 複数のセクションで同じデータベースを共有できます。 - - - FileList - - - ディレクトリツリーを走査する代わりに、apt-ftparchive - が読み込むファイル一覧ファイルを指定します。 - 相対ファイル名は、アーカイブディレクトリが先頭につきます。 - - - SourceFileList - - - ディレクトリツリーを走査する代わりに、apt-ftparchive - が読み込むファイル一覧ファイルを指定します。 - 相対ファイル名は、アーカイブディレクトリが先頭につきます。 - ソースインデックスを処理する際に使用します。 - - - - - - Tree セクション - - - Tree セクションでは、 - ベースディレクトリからの標準 Debian ファイルツリー、 - ベースディレクトリの複数のセクション、 - 最終的にはセクションごとの複数のアーキテクチャを定義します。 - 使用する正確なパスは、Directory 変数で定義されます。 - - - Tree セクションは、 - $(DIST) 変数で設定されているスコープタグをとり、 - ツリーのルート (ArchiveDirが先頭につくパス) - を定義します。 - 通常、この設定は dists/woody のようになります。 - - - TreeDefault セクションで定義される設定はすべて、 - 3 個の新しい変数と同様に、 - Tree セクションで使用できます。 - - - Tree セクションを処理する際、 - apt-ftparchive は以下のような操作を行います。 - -for i in Sections do - for j in Architectures do - Generate for DIST=scope SECTION=i ARCH=j - - - - Sections - - - distribution 以下に現れるセクションを、空白区切りで指定したリストです。 - 通常、main contrib non-freeのようになります。 - - - Architectures - - - search セクション以下に現れるアーキテクチャを、 - 空白区切りで指定したリストです。 - 特殊アーキテクチャ 'source' は、 - ソースアーカイブのツリーであることを示します。 - - - BinOverride - - - バイナリオーバーライドファイルを設定します。 - このオーバーライドファイルには、セクション、優先度、 - メンテナのアドレスといった情報が含まれています。 - - - SrcOverride - - - ソースオーバーライドファイルを設定します。 - このオーバーライドファイルには、 - セクションの情報が含まれています。 - - - ExtraOverride - - - バイナリ特別オーバーライドファイルを設定します。 - - - SrcExtraOverride - - - ソース特別オーバーライドファイルを設定します。 - - - - - - BinDirectory セクション - - - bindirectory セクションでは、 - 特殊な構造を持たないバイナリディレクトリツリーを定義します。 - スコープタグはバイナリディレクトリの場所を指定し、 - 設定は、変数展開のない Tree セクションや - SectionArchitecture 設定に似ています。 - - Packages - - - Packages ファイルの出力先を設定します。 - - - SrcPackages - - - Sources ファイルの出力先を設定します。 - 少なくとも PackagesSrcPackages - は設定されていなければなりません。 - - - Contents - - - Contents ファイルの出力先を設定します。(オプション) - - - BinOverride - - - バイナリオーバーライドファイルを設定します。 - - - SrcOverride - - - ソースオーバーライドファイルを設定します。 - - - ExtraOverride - - - バイナリ特別オーバーライドファイルを設定します。 - - - SrcExtraOverride - - - ソース特別オーバーライドファイルを設定します。 - - - BinCacheDB - - - キャッシュ DB を設定します。 - - - PathPrefix - - - 全出力パスに付加するパス。 - - - FileList, SourceFileList - - - ファイル一覧ファイルを指定します。 - - - - - - - - バイナリオーバーライドファイル - - バイナリオーバーライドファイルは、 - &dpkg-scanpackages; と完全に互換性があります。 - ここには、空白区切りでフィールドが 4 個あります。 - 先頭のフィールドはパッケージ名、 - 2 番目のフィールドはパッケージに強制する優先度、 - 3 番目のフィールドはパッケージに強制するセクション、 - 最後のフィールドはメンテナ順列フィールドです。 - - メンテナフィールドは一般的には、 - old [// oldn]* => new - という形式か、単純に - new - となります。 - 最初の形式は、// で区切られた古い email アドレスのリストを許可します。 - この形式がある場合は、メンテナフィールドになるよう new に置換してください。 - 2 番目の形式は無条件にメンテナフィールドに置換します。 - - - - - ソースオーバーライドファイル - - - ソースオーバーライドファイルは、 - &dpkg-scansources; と完全に互換性があります。 - ここには、空白区切りでフィールドが 2 個あります。 - 先頭のフィールドはソースパッケージ名、 - 2 番目のフィールドは割り当てるセクションです。 - - - - 特別オーバーライドファイル - - - 特別オーバーライドファイルは、 - 出力中に任意のタグを追加・置換できるようにします。 - 3 列からなり、先頭はパッケージ、2番目はタグ、残りは新しい値です。 - - - - オプション - &apt-cmdblurb; - - - - - - MD5 sum を生成します。デフォルトで on になっており、 - off にすると生成したインデックスファイルに MD5Sum フィールドがありません。 - 設定項目 - APT::FTPArchive::MD5 - - - - - - バイナリキャッシュ DB を使用します。 - generate コマンドには影響しません。 - 設定項目 - APT::FTPArchive::DB - - - - - - 静粛 - 進捗表示を省略し、ログをとるのに便利な出力を行います。 - 最大 2 つまで q を重ねることでより静粛にできます。 - また、 のように静粛レベルを指定して、 - 設定ファイルを上書きすることもできます。 - 設定項目 - quiet - - - - - - Delink を実行します。 - External-Links 設定を使用している場合、 - このオプションはファイルの delink を有効にします。 - デフォルトは on で、 - off にするには としてください。 - 設定項目 - APT::FTPArchive::DeLinkAct - - - - - - contents の生成を行います。このオプションを指定し、 - パッケージインデックスをキャッシュ DB と共に生成する際、 - ファイルリストを後で使用するように、抽出し DB に格納します。 - generate コマンドを使用する際、 - このオプションでいずれの Contents ファイルも作成できます。 - デフォルトは on です。 - 設定項目 - APT::FTPArchive::Contents - - - - - - sources コマンドで使用する、 - ソースオーバーライドファイルを選択します。 - 設定項目 - APT::FTPArchive::SourceOverride - - - - - - キャッシュデータベースを読み取り専用にします。 - 設定項目 - APT::FTPArchive::ReadOnlyDB - - - &apt-commonoptions; - - - - - -サンプル - - -バイナリパッケージ (.deb) があるディレクトリの -Packages ファイルを生成するには、以下のようにします。 - - -apt-ftparchive packages directory | gzip > Packages.gz - - - - - - 関連項目 - &apt-conf; - - - - 診断メッセージ - - apt-ftparchive は正常終了時に 0 を返します。 - エラー時には十進の 100 を返します。 - - - &manbugs; - &translator; - - diff --git a/doc/ja/apt-get.ja.8.xml b/doc/ja/apt-get.ja.8.xml deleted file mode 100644 index f503b89ef..000000000 --- a/doc/ja/apt-get.ja.8.xml +++ /dev/null @@ -1,900 +0,0 @@ - - -%aptent; - -]> - - - - - &apt-author.jgunthorpe; - &apt-author.team; - &apt-email; - &apt-product; - - 29 February 2004 - - - - apt-get - 8 - - - - - apt-get - - APT package handling utility -- コマンドラインインターフェース - - - - - - apt-get - - - - - update - upgrade - dselect-upgrade - install pkg - remove pkg - source pkg - build-dep pkg - check - clean - autoclean - - - - - - 説明 - - apt-get は、 - パッケージを操作するコマンドラインツールで、 - APT ライブラリを用いる他のツールのユーザ側「バックエンド」といえるものです。 - 「フロントエンド」インターフェースには、dselect(8), - aptitude, synaptic, gnome-apt, wajig などがあります。 - - - オプションや オプションを除き、 - 以下に挙げるコマンドが必要です。 - - - update - - updateは、 - 取得元からパッケージインデックスファイルの再同期を行うのに使用します。 - 利用可能なパッケージのインデックスは、 - /etc/apt/sources.list に記述した場所から取得します。 - 例えば Debian アーカイブを利用する際、 - このコマンドが Packages.gz ファイルを検索することで、 - 新規または更新されたパッケージの情報が利用可能となります。 - update は、upgrade や - dist-upgrade を行う前に常に実行してください。 - 前もってパッケージファイルのサイズを知ることができないため、 - 全体の進捗メータは正しく表示されません。 - - - upgrade - - upgrade は、 - 現在システムにインストールされている全パッケージの最新バージョンを、 - /etc/apt/sources.list - に列挙した取得元からインストールするのに使用します。 - 現在インストール中のパッケージに新しいバージョンがあれば更新しますが、 - いかなる時も現在インストール中のパッケージの削除は行いません。 - 対象のパッケージが、 - 他のパッケージのインストール状態を変更せずに更新できない場合は、 - 現在のバージョンのままとなります。 - 最初に update を実行しておき、 - apt-get にパッケージの新しいバージョンがあることを - 知らせる必要があります。 - - - dselect-upgrade - - dselect-upgrade は、 - 伝統的な Debian GNU/Linux パッケージ管理フロントエンドの &dselect; - と共に使用されます。 - dselect-upgrade は、 - &dselect; で作られた利用可能パッケージの - Status フィールドの変更を追跡し、 - その状態を反映させるのに必要なアクションを実行します。 - (例えば、古いパッケージの削除や新しいパッケージのインストールなど) - - - - dist-upgrade - - dist-upgrade は、 - upgrade の機能に加え、 - 新バージョンのパッケージに対する依存関係の変更を知的に操作します。 - apt-get は「洗練された」競合解決システムを持ち、 - 必要とあらば比較的重要でないパッケージを犠牲にして、 - 最重要パッケージの更新を試みます。 - /etc/apt/sources.list ファイルには、 - 必要なパッケージファイルを検索する場所のリストが含まれています。 - 特定のパッケージ向けに、一般的な設定を上書きする機構については、 - &apt-preferences; をご覧ください。 - - - install - - install の後には、 - インストールするパッケージを 1 つ以上指定します。 - 指定するパッケージは、完全なファイル名ではなくパッケージ名です。 - (例えば Debian GNU/Linux システムでは、 - libc6_1.9.6-2.deb ではなく libc6 を引数として与えます) - インストールするよう指定したすべてのパッケージに対し、 - 検索・インストールを行います。 - /etc/apt/sources.list ファイルを、 - 要求するパッケージの場所を特定するのに使用します。 - パッケージ名の後ろに (空白を含まず) ハイフンが追加されている場合、 - そのパッケージがインストールされていれば削除します。 - 同様に、インストールするパッケージを明示するのにプラス記号も使用できます。 - この記号は apt-get の競合解決システムの判断に利用されるかもしれません。 - - - パッケージにイコール記号とバージョンを続けることで、 - 選択したバージョンのパッケージをインストールすることができます。 - つまり、指定のバージョンのパッケージをインストールするように選択する、 - ということです。 - 別の方法としては、ディストリビューションを特定するのに、 - パッケージ名に続けて、 - スラッシュとディストリビューションのバージョンやアーカイブ名 - (stable, testing, unstable) を記述できます。 - - - バージョン選択機構はダウングレード時にも使用できるため、 - 注意して使用しなければなりません。 - - - 最後に、&apt-preferences; 機構により、 - 特定のパッケージに対するインストールポリシーを作成できます。 - - - 構文に '.', '?', '*' を含み、パッケージ名がマッチしなかった場合、 - POSIX 正規表現であると見なし、 - データベース内の全パッケージ名に対して適用します。 - マッチしたパッケージすべてがインストール(もしくは削除)されます。 - 'lo.*' のような文字列は、 - 'how-lo' や 'lowest' にマッチすることに注意してください。 - そうしたくなければ、'^' や '$' を付けるか、 - もっと詳しい正規表現を指定してください。 - - - remove - - remove は、 - パッケージが削除されることを除き、install と同様です。 - プラス記号がパッケージ名に (間に空白を含まずに) 付加されると、 - 識別されたパッケージを、削除ではなくインストールします。 - - - source - - source は、 - ソースパッケージを取得するのに apt-get します。 - APT はどのソースパッケージを取得するか決定するよう、 - 利用可能なパッケージを検討します。 - その後、最新の利用可能なソースパッケージを見つけ、 - カレントディレクトリへダウンロードします。 - バイナリパッケージとは別に &sources-list; ファイルの - deb-src 行から、ソースパッケージを追跡します。 - これは、インストールした (またはインストールできる) パッケージと、 - 取得元を変えることができることを示しています。 - --compile オプションが指定された場合、dpkg-buildpackage を用いて - バイナリ .deb ファイルへコンパイルを行います。 - --download-only の場合はソースパッケージを展開しません。 - - - パッケージと同様に、 - ソース名の後ろにイコールと取得したいバージョンを置くと、 - 指定したバージョンのソースを取得できます。 - APT::Get::Only-Source - オプションが暗黙のうちに有効になっているため、 - ソースパッケージ名とバージョンに厳密に一致させています。 - - - tar ball はカレントディレクトリにのみダウンロードされ、 - カレントディレクトリに展開されることに注意してください。 - - - build-dep - - build-dep は、 - ソースパッケージの構築依存関係を満たすように、 - パッケージのインストール・削除を行います。 - - - check - - check は、 - パッケージキャッシュの更新や壊れた依存関係をチェックする診断ツールです。 - - - clean - - clean は、 - 取得したパッケージのローカルリポジトリを掃除します。 - &cachedir;/archives/ と - &cachedir;/archives/partial/ - からロックファイル以外すべて削除します。 - APT が &dselect; から呼ばれるときには、 - 自動的に clean が実行されます。 - dselectを使用しない場合は、ディスクスペースを解放するため、時々 - apt-get clean を実行したくなるでしょう。 - - - autoclean - - clean と同様に、 - autoclean は取得したパッケージのローカルリポジトリを掃除します。 - 違いは、もうダウンロードされることがないパッケージファイルや、 - ほとんど不要なパッケージファイルのみを削除することです。 - このため、長い期間、キャッシュが管理できずに肥大化することなく、 - 維持することができます。 - 設定オプション APT::Clean-Installed に - off をセットしていれば、 - インストール済のパッケージファイルが削除されるのを防げます。 - - - - - - オプション - &apt-cmdblurb; - - - - - ダウンロードのみ - パッケージファイルの取得のみを行い、 - 展開・インストールを行いません。 - 設定項目 - APT::Get::Download-Only - - - - - 修復 - 依存関係が壊れたシステムの修正を試みます。 - このオプションを install や remove と一緒に使うときは、 - パッケージを指定しなくてもかまいません。 - どのパッケージを指定しても、完全に問題を解決します。APT 自体は、 - システムに存在する壊れたパッケージ依存関係を許すことができないので、 - 初めて APT を実行する場合、このオプションが必要になることがあります。 - システムの依存関係構造にかなり問題がある場合は、 - 手動で修正するよう要求することもあります。 - (通常は、問題のあるパッケージを取り除くのに &dselect; や - dpkg --remove を使用します) - このオプションを オプションと同時に使用すると、 - エラーになる状況があるかもしれません。 - 設定項目 - APT::Get::Fix-Broken - - - - - - 欠落パッケージの無視 - パッケージが取得できなかったり、 - (パッケージの破損で) 取得した後の整合性チェックを通らなかった場合、 - そのパッケージの処理を保留し最後まで処理を続けます。 - このオプションを オプションと同時に使用すると、 - エラーになる状況があるかもしれません。 - パッケージをインストールするよう選択している場合 - (特にコマンドラインでの操作時) や、 - ダウンロードできなかった場合に、なにも表示せず保留することになります。 - 設定項目 - APT::Get::Fix-Missing - - - - - パッケージのダウンロードを無効にします。 - これはすでにダウンロードした .deb に対してのみ APT を行う場合に、 - と併せて使うのがよいでしょう。 - 設定項目 - APT::Get::Download - - - - - 静粛 - 進捗表示を省略し、 - ログをとるのに便利な出力を行います。 - 最大 2 つまで q を重ねることでより静粛にできます。 - また、 のように静粛レベルを指定して、 - 設定ファイルを上書きすることもできます。 - 静粛レベル 2 は を含んでいることに注意してください。 - APT が意図しない決定を行うかもしれないので -d, --print-uris, -s のような - 操作を行わないオプションをつけずに -qq を使用するべきではありません。 - 設定項目 - quiet - - - - - - - - - - 動作なし - なにが起こるのかのシミュレーションを行い、 - 実際にはシステムの変更を行いません。 - 設定項目 - APT::Get::Simulate - - - シミュレートの結果、dpkg の動作を表す一連の行のそれぞれに、 - 設定 (Conf)、削除 (Remv)、展開 (Inst) を表示します。 - 角カッコは壊れたパッケージを表し、(まれに) - 空の角カッコは大した問題ではないことを表します。 - - - - - - プロンプトへの自動承諾 - すべてのプロンプトに自動的に - "yes" と答え、非対話的に実行します。 - 保留したパッケージの状態を変更したり、 - 必須パッケージを削除するような不適切な状況の場合、 - apt-get は処理を中断します。 - 設定項目 - APT::Get::Assume-Yes - - - - - 更新パッケージ表示 - - 更新される全パッケージを一覧表示します。 - 設定項目 - APT::Get::Show-Upgraded - - - - - 更新・インストールするパッケージのヴァージョンを、 - すべて表示します。 - 設定項目 - APT::Get::Show-Versions - - - - - - ソースパッケージをダウンロード後、コンパイルします。 - 設定項目 - APT::Get::Compile - - - - - 保留パッケージの無視 - パッケージの保留指示を無視して - apt-get を行います。 - dist-upgrade と共に、 - 大量のパッケージを保留の解除をするのに使用すると便利です。 - 設定項目 - APT::Ignore-Hold - - - - - パッケージ更新なし - install - と同時に使用すると、no-upgrade は、 - 指定したパッケージがすでにインストールしてある場合に更新を行いません。 - 設定項目 - APT::Get::Upgrade - - - - - 強制承諾 - - APT が何か損傷を与えかねない動作をしようとした場合でも、 - 確認の入力なしで実行してしまう危険なオプションです。 - よほどの状況でなければ、使用しない方がいいでしょう。 - force-yes は、あなたのシステムを破壊しかねません! - 設定項目 - APT::Get::force-yes - - - - - インストールするファイルを取得する代わりに、 - その URI を表示します。 - URI には、パス、対象ファイル名、ファイルサイズ、 - 予測される md5 ハッシュが含まれています。 - 出力したファイル名が、 - 常にリモートサイトのファイル名と一致するわけではない、 - ということに注意してください! - これは source コマンド、 - update コマンドでも動作します。 - update で使用したときには、 - MD5 やファイルサイズを含みません。 - このとき、圧縮ファイルの展開はユーザの責任において行ってください。 - 設定項目 - APT::Get::Print-URIs - - - - - 削除する際、「削除」ではなく「完全削除」を行います。 - 「完全削除」を行うと指示したパッケージ名の後には、 - アスタリスク ("*") が付きます。 - 設定項目 - APT::Get::Purge - - - - - すでに最新版がインストールされていても、 - パッケージを再インストールします。 - 設定項目 - APT::Get::ReInstall. - - - - - この機能はデフォルトで ON になっています。 - OFF にするには --no-list-cleanup としてください。 - ON の場合、 - apt-get は古くなったファイルを確実に消去するため、 - 自動的に &statedir;/lists の中身を管理します。 - これを OFF にするのは、取得元リストを頻繁に変更する時ぐらいでしょう。 - 設定項目 - APT::Get::List-Cleanup. - - - - - - - このオプションは、 - ポリシーエンジンへのデフォルト入力を制御します。 - これは、指定されたリリース文字列を使用し、 - デフォルト pin を優先度 990 で作成することです。 - 優先ファイルはこの設定を上書きします。 - 要するにこのオプションで、 - どの配布パッケージを取得するかを簡単に管理します。 - 一般的な例としては、 - でしょう。 - 設定項目 - APT::Default-Release - &apt-preferences; のマニュアルページもご覧ください。 - - - - - - 「重要でない」操作のみを行います。 - これは論理的に の仲間と見なせます。 - は質問にすべて yes と答えますが、 - はすべて no と答えます。 - 設定項目 - APT::Get::Trivial-Only - - - - - パッケージが削除される状況になったとき、 - プロンプトを表示せず中断します。 - 設定項目 - APT::Get::Remove - - - - - source コマンドと - build-dep コマンドでのみ意味があります。 - 指定されたソース名がバイナリテーブルにマップされないようにします。 - これは、このオプションを指定すると、 - バイナリパッケージ名を受け付けて対応するソースパッケージを探すのではなく、 - 引数にソースパッケージ名しか受け付けなくなる、ということです。 - 設定項目 - APT::Get::Only-Source - - - - - ソースアーカイブの diff ファイルや - tar ファイルのダウンロードのみを行います。 - 設定項目 - APT::Get::Diff-Only, - APT::Get::Tar-Only - - - - - 構築依存関係の解決を、 - アーキテクチャに依存したもののみ行います。 - 設定項目 - APT::Get::Arch-Only - - - - - パッケージを確認できない場合に無視し、 - それについて質問しません。 - pbuilder のようなツールで便利です。 - 設定項目 - APT::Get::AllowUnauthenticated - - - - &apt-commonoptions; - - - - - - ファイル - - /etc/apt/sources.list - - パッケージの取得元。 - 設定項目 - Dir::Etc::SourceList - - - /etc/apt/apt.conf - - APT 設定ファイル。 - 設定項目 - Dir::Etc::Main - - - /etc/apt/apt.conf.d/ - - APT 設定ファイルの断片。 - 設定項目 - Dir::Etc::Parts - - - /etc/apt/preferences - - バージョン優先ファイル。 - ここに "pin" の設定を行います。 - つまり、別々の取得元や異なるディストリビューションのバージョンの、 - どこからパッケージを取得するかを設定します。 - 設定項目 - Dir::Etc::Preferences - - - &cachedir;/archives/ - - 取得済みパッケージファイル格納エリア。 - 設定項目 - Dir::Cache::Archives - - - &cachedir;/archives/partial/ - - 取得中パッケージファイル格納エリア。 - 設定項目 - Dir::Cache::Archives (必然的に不完全) - - - &statedir;/lists/ - - &sources-list; のパッケージリソース特有の状態情報格納エリア。 - 設定項目 - Dir::State::Lists - - - &statedir;/lists/partial/ - - 取得中の状態情報格納エリア。 - 設定項目 - Dir::State::Lists (必然的に不完全) - - - - - - 関連項目 - - &apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, - &apt-conf;, &apt-config;, - &docdir; の APT ユーザーズガイド, &apt-preferences;, APT Howto - - - - 診断メッセージ - - apt-get は正常終了時に 0 を返します。 - エラー時には十進の 100 を返します。 - - - &manbugs; - &translator; - - diff --git a/doc/ja/apt-key.ja.8.xml b/doc/ja/apt-key.ja.8.xml deleted file mode 100644 index 732ca9b1c..000000000 --- a/doc/ja/apt-key.ja.8.xml +++ /dev/null @@ -1,176 +0,0 @@ - - -%aptent; - -]> - - - &apt-docinfo; - - - apt-key - 8 - - - - - apt-key - - APT キー管理ユーティリティ - - - - - - apt-key - command/ - - - - - - 説明 - - - apt-key は、 - apt が パッケージを認証するのに使用するキーの一覧を管理するのに使用します。 - このキーで認証されたパッケージは、信頼するに足ると見なせるでしょう。 - - - - -コマンド - - add filename - - - - - 信頼キー一覧に新しいキーを追加します。 - このキーは filename から読み込みますが、 - filename- とすると、 - 標準入力から読み込みます。 - - - - - - del keyid - - - - - 信頼キー一覧からキーを削除します。 - - - - - - - list - - - - - 信頼キーを一覧表示します。 - - - - - - - update - - - - - Debian アーカイブキーで、ローカルキーリングを更新し、 - もう有効でないキーをキーリングから削除します。 - - - - - - - - - - ファイル - - /etc/apt/trusted.gpg - - ローカル信頼キーのキーリング。 - 新しいキーはここに追加されます。 - - - /etc/apt/trustdb.gpg - - アーカイブキーのローカル信頼データベース - - - /usr/share/keyrings/debian-archive-keyring.gpg - - Debian アーカイブ信頼キーのキーリング - - - /usr/share/keyrings/debian-archive-removed-keys.gpg - - 削除された Debian アーカイブ信頼キーのキーリング - - - - - - - - - -関連項目 - -&apt-get;, &apt-secure; - - - - &manbugs; - &manauthor; - &translator; - - - diff --git a/doc/ja/apt-secure.ja.8.xml b/doc/ja/apt-secure.ja.8.xml deleted file mode 100644 index 20c57fb16..000000000 --- a/doc/ja/apt-secure.ja.8.xml +++ /dev/null @@ -1,374 +0,0 @@ - - -%aptent; - -]> - - - &apt-docinfo; - - - apt-secure - 8 - - - - - - - - - apt-secure - - APT アーカイブ認証サポート - - - - 説明 - - - バージョン 0.6 より、apt 全アーカイブに対する - Release ファイルの署名チェックコードが含まれています。 - Release ファイル署名キーにアクセスできない人が、 - アーカイブのパッケージの変更が確実にできないようにします。 - - - - - パッケージに署名されなかったり、apt が知らないキーで署名されていた場合、 - アーカイブから来たパッケージは、信頼されていないと見なし、 - インストールの際に重要な警告が表示されます。 - apt-get は、 - 現在未署名のパッケージに対して警告するだけですが、 - 将来のリリースでは、全ソースに対し、 - パッケージダウンロード前に強制的に検証される可能性があります。 - - - - - &apt-get;, &aptitude;, &synaptic; といったパッケージフロントエンドは、 - この新認証機能をサポートしています。 - - - - - 信頼済アーカイブ - - - - apt アーカイブからエンドユーザまでの信頼の輪は、 - いくつかのステップで構成されています。 - apt-secure は、この輪の最後のステップで、 - アーカイブを信頼することは、 - パッケージに悪意のあるコードが含まれていないと信頼するわけではありませんが、 - アーカイブメンテナを信頼すると言うことです。 - これは、アーカイブの完全性を保証するのは、 - アーカイブメンテナの責任だということです。 - - - - apt-secure はパッケージレベルの署名検証は行いません。 - そのようなツールが必要な場合は、 - debsig-verifydebsign - (debsig-verify パッケージと devscripts パッケージでそれぞれ提供されています) - を確認してください。 - - - - Debian における信頼の輪は、 - 新しいパッケージやパッケージの新しいバージョンを、 - メンテナが Debian アーカイブにアップロードすることで始まります。 - これは、Debian メンテナキーリング (debian-keyring パッケージにあります) - にあるメンテナのキーで署名しなければ、アップロードできないということです。 - メンテナのキーは、キーの所有者のアイデンティティを確保するため、 - 以下のような事前に確立した手段で、他のメンテナに署名されています。 - - - - - アップロードされたパッケージごとに、検証してアーカイブに格納します。 - パッケージは、メンテナの署名をはがされ、 MD5 sum を計算されて、 - Packages ファイルに格納されます。 - その後、全パッケージファイルの MD5 sum を計算してから、 - Release ファイルに置きます。 - Release ファイルは、アーカイブキーで署名されます。 - アーカイブキーは年ごとに作成され、FTP サーバで配布されます。 - このキーも Debian キーリングに含まれます。 - - - - - エンドユーザは誰でも、Release ファイルの署名をチェックし、 - パッケージの MD5 sum を抽出して、ダウンロードしたパッケージの MD5 sum - と比較できます。 - バージョン 0.6 以前では、ダウンロードした Debian パッケージの MD5 sum しか、 - チェックしていませんでした。 - 現在では、MD5 sum と Release ファイルの署名の両方でチェックします。 - - - - 以上は、パッケージごとの署名チェックとは違うことに注意してください。 - 以下のように考えられる 2 種類の攻撃を防ぐよう設計されています。 - - - - - ネットワーク中間者攻撃 - 署名をチェックしないと、 - 悪意あるエージェントがパッケージダウンロードプロセスに割り込んだり、 - ネットワーク構成要素 (ルータ、スイッチなど) の制御や、 - 悪漢サーバへのネットワークトラフィックのリダイレクトなど - (arp 経由や DNS スプーフィング攻撃) で、 - 悪意あるソフトウェアを掴まされたりします。 - - - ミラーネットワーク感染. - 署名をチェックしないと、悪意あるエージェントがミラーホストに感染し、 - このホストからダウンロードしたユーザすべてに、 - 悪意あるソフトウェアが伝播するようにファイルを変更できます。 - - - - しかしこれは、 - (パッケージに署名する) Debian マスターサーバ自体の感染や、 - Release ファイルに署名するのに使用したキーの感染を防げません。 - いずれにせよ、この機構はパッケージごとの署名を補完することができます。 - - - - ユーザの設定 - - - apt-key は、 - apt が使用するキーリストを管理するプログラムです。 - このリリースのインストールでは、Debian パッケージリポジトリで使用する、 - キーで署名するデフォルトの Debian アーカイブを提供しますが、 - apt-key でキーの追加・削除が行えます。 - - - - 新しいキーを追加するためには、まずキーをダウンロードする必要があります。 - (取得する際には、信頼できる通信チャネルを使用するよう、特に留意してください) - 取得したキーを、apt-key で追加し、 - apt-get update を実行してください。 - 以上により、apt は指定したアーカイブから、Release.gpg - ファイルをダウンロード・検証できるようになります。 - - - - -アーカイブの設定 - - - あなたがメンテナンスしているアーカイブで、アーカイブ署名を提供したい場合、 - 以下のようにしてください。 - - - - - 上位 Release ファイルの作成 - 既にこれが存在しているのでなければ、 - apt-ftparchive release (apt-utils で提供) - を実行して作成してください。 - - - 署名 - gpg -abs -o Release.gpg Release を実行して、 - 署名してください。 - - - キーの指紋を配布 - これにより、アーカイブ内のファイル認証に、 - どのキーをインポートする必要があるかを、 - ユーザに知らせることになります。 - - - - - アーカイブの内容に変化がある場合 (新しいパッケージの追加や削除)、 - アーカイブメンテナは前述の最初の 1, 2 ステップに従わなければなりません。 - - - - -関連項目 - -&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, -&debsign; &debsig-verify;, &gpg; - - - -詳細な背景情報を検証するのなら、 -the Securing Debian Manual (harden-doc パッケージにもあります) の -Debian -Security Infrastructure 章と、 -V. Alex Brennen による -Strong Distribution HOWTO をご覧ください。 - - - - &manbugs; - &manauthor; - - -マニュアルページ筆者 - - -このマニュアルページは Javier Fernández-Sanguino -Peña, Isaac Jones, Colin Walters, Florian Weimer, Michael Vogt -の作業を元にしています。 - - - - - &translator; - - - diff --git a/doc/ja/apt-sortpkgs.ja.1.xml b/doc/ja/apt-sortpkgs.ja.1.xml deleted file mode 100644 index 779620f0b..000000000 --- a/doc/ja/apt-sortpkgs.ja.1.xml +++ /dev/null @@ -1,110 +0,0 @@ - - -%aptent; - -]> - - - - - &apt-author.jgunthorpe; - &apt-author.team; - &apt-email; - &apt-product; - - 29 February 2004 - - - - apt-sortpkgs - 1 - - - - - apt-sortpkgs - - パッケージインデックスファイルのソートユーティリティ - - - - - - - apt-sortpkgs - - - - file - - - - - 説明 - - apt-sortpkgs は、インデックスファイル - (ソースインデックスやパッケージインデックス) からレコードをソートし、 - パッケージ名順に整えます。 - また、内部のソート規則に従って、内部フィールドについてもソートを行います。 - - - - 出力はすべて標準出力に送られ、入力は検索できるファイルでなければなりません。 - - - - オプション - &apt-cmdblurb; - - - - - - ソースインデックスフィールド順に並べ替え - 設定項目 - APT::SortPkgs::Source. - - - &apt-commonoptions; - - - - - - 関連項目 - &apt-conf; - - - - 診断メッセージ - apt-sortpkgs は正常終了時に 0 を返します。 - エラー時には十進の 100 を返します。 - - - &manbugs; - &translator; - - diff --git a/doc/ja/apt.conf.ja.5.xml b/doc/ja/apt.conf.ja.5.xml deleted file mode 100644 index 8707c801e..000000000 --- a/doc/ja/apt.conf.ja.5.xml +++ /dev/null @@ -1,809 +0,0 @@ - - -%aptent; - -]> - - - - - &apt-author.jgunthorpe; - &apt-author.team; - &apt-email; - &apt-product; - - 29 February 2004 - - - - apt.conf - 5 - - - - - apt.conf - - APT 設定ファイル - - - - 説明 - - apt.conf は、 - APT ツール集のメイン設定ファイルです。 - この設定ファイルと共通のコマンドラインパーサを使って、 - すべてのツールを統一環境で使用できます。 - APT ツールの起動時には、APT_CONFIG 環境変数に指定した設定を - (存在すれば) 読み込みます。 - 次に Dir::Etc::Parts のファイルを読み込みます。 - 次に Dir::Etc::main で指定した主設定ファイルを読み込み、 - 最後にコマンドラインオプションで、 - 設定ファイルより取得した値を上書きします。 - - - 設定ファイルは、 - 機能グループごとに系統立てられたオプションを木構造で表します。 - オプションの内容は、2 つのコロンで区切ります。 - 例えば APT::Get::Assume-Yes は、 - APT ツールグループの、Get ツール用オプションです。 - オプションは、親グループから継承しません。 - - - 設定言語の文法は、 - bind や dhcp のような ISC ツールをモデルにしています。 - // で始まる行はコメントとして扱われます (無視)。 - いずれの行も、APT::Get::Assume-Yes "true"; の - ような形式です。 - 行末のセミコロンは必要ですが、ダブルクォートは使わなくてもかまいません。 - 以下のように中カッコを使うと、新しいスコープを開くことができます。 - - -APT { - Get { - Assume-Yes "true"; - Fix-Broken "true"; - }; -}; - - - - また適宜改行することで、より読みやすくなります。 - リストは、開いたスコープ、クォートで囲まれた単語、 - そしてセミコロンと続けることで作成できます。 - セミコロンで区切ることで、複数のエントリを表すことができます。 - - -DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; - - - - &docdir;examples/apt.conf &configureindex; - は一般的な設定ファイルのサンプルです。 - どのように設定するか参考になるでしょう。 - - - #include#clear の - 2 つの特別な記法があります。 - #include は指定したファイルを取り込みます。 - ファイル名がスラッシュで終わった場合には、 - そのディレクトリをすべて取り込みます。 - #clear は名前のリストを削除するのに便利です。 - - - すべての APT ツールで、 - コマンドラインで任意の設定を行う -o オプションが使用できます。 - 文法は、完全なオプション名 (例: APT::Get::Assume-Yes)、 - 等号、続いてオプションの新しい値となります。 - リスト名に続き::を加えることで、リストを追加することができます。 - - - - APT グループ - - このオプショングループは、ツール全体に影響のある、 - 一般的な APT の振る舞いを制御します。 - - - Architecture - - システムアーキテクチャ - ファイルを取得したり、 - パッケージリストを解析するときに使用するアーキテクチャをセットします。 - 内部でのデフォルトは、 - apt をコンパイルしたアーキテクチャです。 - - - Ignore-Hold - - 保留パッケージの無視 - このグローバルオプションは、 - 問題解決器に保留と指定したパッケージを無視します。 - - - Clean-Installed - - デフォルトで有効です。autoclean 機能が on の時、 - ダウンロードできなくなったパッケージをキャッシュから削除します。 - off の場合、ローカルにインストールされているパッケージは、 - 削除対象から外します。 - しかし、 APT はキャッシュから削除したパッケージの再インストール方法を、 - 直接提供するわけではないことに注意してください。 - - - Immediate-Configure - - 即時設定無効 - この危険なオプションは、 - APT の要求コードを無効にして dpkg の呼び出しをほとんどしないようにします。 - これは、非常に遅いシングルユーザシステムでは必要かもしれませんが、 - 非常に危険で、パッケージのインストールスクリプトが失敗したり、 - もしくはもっと悪いことがおきるかもしれません。 - 自己責任で使用してください。 - - - Force-LoopBreak - - 何をしようとしているのか「本当に」判っているのでなければ、 - 絶対にこのオプションを有効にしないでください。 - 不可欠 (essential) パッケージ同士で、 - 競合 (Conflicts) /競合や競合/事前依存 (Pre-Depend) - のループに落ち込んだときに、 - 不可欠パッケージを一時的に削除してループを抜けられるようにします。 - そんなループはあり得ないはずで、 - あるとすれば重大なバグです。 - このオプションは、tar, gzip, libc, dpkg, bash とそれらが依存している - パッケージ以外の不可欠パッケージで動作します。 - - - Cache-Limit - - APT は「利用可能」情報を格納するために、 - 固定サイズのメモリマップキャッシュファイルを使用します。 - このオプションは、そのキャッシュサイズを指定します。 - - - Build-Essential - - 構築依存関係で不可欠なパッケージを定義します。 - - - Get - - サブセクション Get は &apt-get; ツールを制御します。 - このオプションの詳細は &apt-get; の文書を参照してください。 - - - Cache - - サブセクション Cache は &apt-cache; ツールを制御します。 - このオプションの詳細は &apt-cache; の文書を参照してください。 - - - CDROM - - サブセクション CDROM は &apt-cdrom; ツールを制御します。 - このオプションの詳細は &apt-cdrom; の文書を参照してください。 - - - - - - Acquire グループ - - Acquire オプショングループは、 - パッケージのダウンロードや URI ハンドラの制御を行います。 - - Queue-Mode - - キューモード - Queue-Mode は、 - APT がどのように並列接続を行うか、 - hostaccess で指定できます。 - host は、ターゲットホストごとに 1 接続を開きます。 - access は、 - URI タイプごとに 1 接続を開きます。 - - - Retries - - リトライの回数を設定します。 - 0 でない場合、APT は失敗したファイルに対して、 - 与えられた回数だけリトライを行います。 - - - Source-Symlinks - - ソースアーカイブのシンボリックリンクを使用します。 - true がセットされているとき、可能ならコピーの代わりにシンボリックリンクが - 張られます。true がデフォルトです。 - - - http - - HTTP URI - http::Proxy は、 - デフォルトで使用する http プロキシです。 - http://[[user][:pass]@]host[:port]/ - という標準形で表します。ホストごとのプロキシの場合は、 - http::Proxy::<host> という形と、 - プロキシを使用しないという意味の特殊キーワード DIRECT - を使用して指定することもできます。すべての設定は、 - 環境変数 http_proxy で上書きされます。 - - - HTTP/1.1 準拠のプロキシキャッシュの制御について、 - 3 種類の設定があります。No-Cache はプロキシに対して、 - いかなる時もキャッシュを使用しないと伝えます。 - Max-Age は、インデックスファイル用のときだけ送信し、 - 得られた時間よりも古かった場合に、 - オブジェクトをリフレッシュするようキャッシュに指示します。 - デフォルトでは 1 日となっているため、 - Debian は日毎にそのインデックスファイルを更新します。 - No-Store は、キャッシュがこのリクエストを格納せず、 - アーカイブファイルのみ設定するよう指定します。 - これは、非常に大きな .deb ファイルでプロキシキャッシュが汚れるのを、 - 防ぐのに便利かもしれません。 - 注) Squid 2.0.2 では、これらのオプションをサポートしていません。 - - - timeout オプションは、 - この方法でのタイムアウトまでの時間を設定します。 - これには、接続のタイムアウトとデータのタイムアウトが含まれています。 - - - リモートサーバが RFC 準拠でなかったり、 - (Squid 2.0.2 のように) バグがあったりしたときのために、 - パイプラインの深さの制御を設定します。 - Acquire::http::Pipeline-Depth により、 - APT が送信できるリクエストの回数を 0 から 5 の値で設定できます。 - リモートサーバが適切でなく、TCP 接続に時間がかかるときは、 - 必ず 0 の値を設定しなければなりません。 - そうでなければデータが破損してしまいます。 - これが必要なホストは RFC 2068 に違反しています。 - - - ftp - - FTP URI - ftp::Proxy は、デフォルトで使用するプロキシサーバです。 - ftp://[[user][:pass]@]host[:port]/ という標準形で表しますが、 - 環境変数 ftp_proxy で上書きされます。 - ftp プロキシを使用するには、設定ファイルに ftp::ProxyLogin - スクリプトを設定する必要があります。 - プロキシサーバに送信する接続コマンドを、このエントリに設定します。 - どのようにするのかは &configureindex; の例を参照してください。 - その他にも、$(PROXY_USER) - $(PROXY_PASS) $(SITE_USER) - $(SITE_PASS) $(SITE) - $(SITE_PORT) が利用可能です。 - いずれも、それぞれ URI を構成するトークンです。 - - - timeout オプションは、 - この方法でのタイムアウトまでの時間を設定します。 - これには、接続のタイムアウトとデータのタイムアウトが含まれています。 - - - 設定のいくつかは、パッシブモードを制御するものです。 - 一般的に、パッシブモードのままにしておく方が安全で、 - ほぼどんな環境でも動作します。 - しかしある状況下では、パッシブモードが無効のため、 - 代わりにポートモード ftp を使用する必要があります。 - この設定は、プロキシを通る接続や特定のホストへの接続全般に有効です。 - (設定例はサンプル設定ファイルを参照してください) - - - 環境変数 ftp_proxy の http url により - FTP over HTTP のプロキシが利用可能になります。 - 文法は上の http についての説明を参照してください。 - 設定ファイルの中でこれをセットすることはできません。 - また、効率が悪いため FTP over HTTP を使用するのは推奨しません。 - - - ForceExtended の設定は RFC2428 の - EPSV コマンドと EPRT - コマンドの使用を制御します。デフォルトでは false です。 - これは、コントロールコネクションが IPv6 の時にのみ、 - このコマンドを使用するということです。 - これを true にセットすると、IPv4 コネクションでも強制的に、 - このコマンドを使用します。 - 注) ほとんどの FTP サーバは RFC2428 をサポートしていません。 - - - cdrom - - CDROM URI - マウントポイントの設定のみを行います。 - /etc/fstab で設定されているように、 - CDROM ドライブのマウントポイントを - cdrom::Mount に設定しなければなりません。 - (SMB マウントや古い mount パッケージなど) マウントポイントが fstab - に記述できない場合、かわりにマウント・アンマウントコマンドも使用できます。 - 文法は、cdrom ブロックを - "/cdrom/"::Mount "foo"; の形で記述します。 - スラッシュを後につけるのは重要です。 - アンマウントコマンドは UMount で指定することができます。 - - - gpgv - - GPGV URI - GPGV URI 用の唯一のオプションは、 - gpgv に渡す追加パラメータのオプションです。 - gpgv::Options gpgv に渡す追加オプション。 - - - - - - - - - ディレクトリ - - - Dir::State セクションは、 - ローカル状態情報に関するディレクトリを保持します。 - lists は、 - ダウンロードしたパッケージ一覧を格納するディレクトリで、 - status は dpkg の状態ファイルの名前を表します。 - preferences は APT の 設定ファイルの名前です。 - Dir::State には、 - /./ で始まらない - 全サブアイテムに付加する、デフォルトディレクトリを含んでいます。 - - - Dir::Cache は、 - ローカルキャッシュ情報に関する場所を格納しています。これは、 - ダウンロード済アーカイブの場所を示す Dir::Cache::archives - と同様に、srcpkgcachepkgcache - のパッケージキャッシュの場所となります。 - それぞれを空にセットすることで、キャッシュの生成を無効にできます。 - おそらく、srcpkgcache よりも pkgcache を無効にすることが多いと思います。 - Dir::State と同様、Dir::Cache - はデフォルトディレクトリを含んでいます。 - - - Dir::Etc は設定ファイルの場所を格納しています。 - sourcelist はソースリストの場所を示し、 - main はデフォルトの設定ファイルです。 - (APT_CONFIG で設定ファイルを指定された場合のみ、 - この設定の効果があります) - - - Dir::Parts 設定は、指定されたディレクトリから、 - 字句単位の全ての設定断片を読みこみます。 - これを設定した後に、メイン設定ファイルをロードします。 - - - バイナリプログラムは Dir::Bin で指定します。 - Dir::Bin::Methods はメソッドハンドラの場所を指定し、 - gzip, dpkg, - apt-get, dpkg-source, - dpkg-buildpackage, apt-cache - はそれぞれプログラムの場所を指定します。 - - - - DSelect での APT - - - &dselect; 上で APT を使用する際、 - DSelect セクション以下の設定項目で、 - デフォルトの動作を制御します。 - - Clean - - キャッシュクリーンモード - - この値は always, prompt, auto, pre-auto, never のうちひとつを取ります。 - always と prompt は更新後、全パッケージをキャッシュから削除します。 - (デフォルトの) prompt では条件付きで削除します。 - auto はダウンロード不能パッケージ (例えば新バージョンで置き換えられたもの) - を削除します。pre-auto はこの動作を、 - 新パッケージをダウンロードする直前に行います。 - - - options - - この変数の内容は、 - install 時のコマンドラインオプションと同様に &apt-get; に渡されます。 - - - Updateoptions - - この変数の内容は、 - update 時のコマンドラインオプションと同様に &apt-get; に渡されます。 - - - PromptAfterUpdate - - true の場合、 - &dselect; の [U]pdate 実行時に、続行のためのプロンプトを毎回表示します。 - デフォルトはエラーが発生した場合のみです。 - - - - - - APT が dpkg を呼ぶ方法 - - 数種の設定項目で APT がどのように &dpkg; を呼び出すかを制御できます。 - DPkg セクションにあります。 - - - options - - dpkg に渡すオプションのリストです。 - オプションは、リスト記法を使用して指定しなければなりません。 - また、各リストは単一の引数として &dpkg; に渡されます。 - - - Pre-InvokePost-Invoke - - &dpkg; を呼び出す前後で実行するシェルコマンドのリストです。 - options のようにリスト記法で指定しなければなりません。 - コマンドは /bin/sh を使用して呼び出され、 - 何か問題があれば、APT は異常終了します。 - - - Pre-Install-Pkgs - - &dpkg; を呼び出す前に実行するシェルコマンドのリストです。 - options のようにリスト記法で指定しなければなりません。 - コマンドは /bin/sh を通して呼び出され、 - 何か問題があれば、APT は異常終了します。 - APT はインストールしようとする全 .deb ファイルのファイル名を、 - ひとつずつコマンドの標準入力に送ります。 - - - このプロトコルのバージョン 2 では、(プロトコルのバージョンや - APT 設定スペース、パッケージを含む) 詳細情報やファイル、 - 変更されているバージョンを出力します。 - DPkg::Tools::options::cmd::Version に 2 を設定すると、 - バージョン 2 を有効にできます。 - cmdPre-Install-Pkgs - で与えられるコマンドです。 - - - Run-Directory - - APT は dpkg を呼び出す前にこのディレクトリに移動します。 - デフォルトは / です。 - - - Build-options - - これらのオプションは、 - パッケージのコンパイル時に &dpkg-buildpackage; に渡されます。 - デフォルトでは、署名を無効にし、全バイナリを生成します。 - - - - - - デバッグオプション - - debug の多くのオプションは、 - 普通のユーザにとって興味を引くものではありません。 - しかし Debug::pkgProblemResolver で、 - dist-upgrade の判断についての興味深い出力が得られます。 - Debug::NoLockingは、 - APT が非 root で操作できるようにファイルのロックを無効にしますし、 - Debug::pkgDPkgPMは、 - dpkg を呼ぶ際のコマンドラインを出力します。 - Debug::IdentCdrom は、 - CDROM ID の状態データの包含を無効にします。 - Debug::Acquire::gpgv gpgv 法のデバッグです。 - - - - - - - &configureindex; に、全利用可能オプションのデフォルト値を参照できる、 - 設定ファイルのサンプルがあります。 - - - - ファイル - /etc/apt/apt.conf - - - - 関連項目 - &apt-cache;, &apt-config;, &apt-preferences;. - - - &manbugs; - &translator; - - - diff --git a/doc/ja/apt.ent.ja b/doc/ja/apt.ent.ja deleted file mode 100644 index 1d1c36b1e..000000000 --- a/doc/ja/apt.ent.ja +++ /dev/null @@ -1,328 +0,0 @@ - - - - -&docdir;examples/configure-index.gz"> -/etc/apt.conf"> - - - - - - apt.conf - 5 - " -> - - - apt-get - 8 - " -> - - - apt-config - 8 - " -> - - - apt-cdrom - 8 - " -> - - - apt-cache - 8 - " -> - - - apt_preferences - 5 - " -> - - - apt-key - 8 - " -> - - - apt-secure - 8 - " -> - - - apt-ftparchive - 1 - " -> - - - - sources.list - 5 - " -> - - - reportbug - 1 - " -> - - - dpkg - 8 - " -> - - - dpkg-buildpackage - 1 - " -> - - - gzip - 1 - " -> - - - dpkg-scanpackages - 8 - " -> - - - dpkg-scansources - 8 - " -> - - - dselect - 8 - " -> - - - aptitude - 8 - " -> - - - synaptic - 8 - " -> - - - debsign - 1 - " -> - - - debsig-verify - 1 - " -> - - - gpg - 1 - " -> - - - -
apt@packages.debian.org
- Jason Gunthorpe - 1998-2001 Jason Gunthorpe - 14 December 2003 - Linux - -
-"> - - - apt@packages.debian.org - -"> - - - Jason - Gunthorpe - -"> - - - APT team - -"> - -Linux -"> - - - apt@packages.debian.org - -"> - - - Jason - Gunthorpe - -"> - - - APT team - -"> - - - Jason Gunthorpe - 1998-2001 - -"> - -Linux -"> - - -Bugs ---> - バグ - - APT バグページを - ご覧ください。 - APT のバグを報告する場合は、 - /usr/share/doc/debian/bug-reporting.txt や - &reportbug; コマンドをご覧ください。 - - -"> - - -Author ---> - 著者 - - APT は the APT team apt@packages.debian.org によって - 書かれました。 - - -"> - - -訳者 - 倉澤 望 nabetaro@debian.or.jp (2003-2006), - Debian JP Documentation ML debian-doc@debian.or.jp - - -"> - - - - - - 使い方の短い要約を表示します。 - - - - - - - - - プログラムのバージョンを表示します。 - - - - - - - - - 設定ファイル。 使用する設定ファイルを指定します。 - この設定ファイルが読めない場合はデフォルトの設定ファイルを読み込みます。 - 文法については &apt-conf; を参照してください。 - - - - - - - - - 設定オプションのセット。任意の設定オプションをセットします。 - 文法は となります。 - - - -"> - - -All command line options may be set using the configuration file, the - descriptions indicate the configuration option to set. For boolean - options you can override the config file by using something like - ,, - or several other variations. - ---> - この説明で示したオプションは、 - すべて設定ファイルを使用して設定できます。 - 設定ファイルに書いた真偽値をとるオプションは - ,, - などのようにして上書きできます。 - -"> - diff --git a/doc/ja/apt_preferences.ja.5.xml b/doc/ja/apt_preferences.ja.5.xml deleted file mode 100644 index a7e63a961..000000000 --- a/doc/ja/apt_preferences.ja.5.xml +++ /dev/null @@ -1,940 +0,0 @@ - - -%aptent; - -]> - - - - - &apt-author.team; - &apt-email; - &apt-product; - - 29 February 2004 - - - - apt_preferences - 5 - - - - - apt_preferences - - APT 設定制御ファイル - - - - -説明 - -APT 設定ファイル /etc/apt/preferences は、 -インストールするパッケージのバージョン選択を制御するのに使用します。 - - -&sources-list; ファイルに複数のディストリビューション -(stabletesting など) -が指定されていて、 -パッケージに対し複数のバージョンがインストールできることがあります。 -このとき APT は、利用できるバージョンごとに優先度を割り当てます。 -依存関係規則を条件として、apt-get は、 -最も高い優先度を持つバージョンをインストールするよう選択します。 -APT 設定ファイルは、APT がデフォルトで割り当てた、 -パッケージのバージョンの優先度を上書きします。 -その結果、インストールするものの選択を、ユーザが選択できるようになります。 - - -&sources-list; ファイルに複数の参照が書かれている場合、 -パッケージの同じバージョンのインスタンスが複数利用できる可能性があります。 -この場合、apt-get は &sources-list; -ファイルの初めの方に指定されているところからダウンロードします。 -APT 設定ファイルは、バージョンの選択にのみ影響し、 -インスタンスの選択には影響しません。 - - -APT のデフォルト優先度の割り当て - - -設定ファイルがなかったり、 -設定ファイルに、特定のパッケージを割り当てるエントリがない場合、 -そのバージョンの優先度は、 -そのバージョンが属しているディストリビューションの優先度となります。 -デフォルトで他のディストリビューションより高い優先度を持つ、 -特定のディストリビューションを「ターゲットリリース」としておくのは可能です。 -ターゲットリリースは、apt-get のコマンドラインで設定したり、 -APT 設定ファイル /etc/apt/apt.conf で設定したりできます。 -例えば以下のようになります。 - - -apt-get install -t testing some-package - - -APT::Default-Release "stable"; - - - - -ターゲットリリースが指定されると、APT は以下のアルゴリズムで、 -パッケージのバージョンの優先度を設定します。このように割り当てます。 - - - - -優先度 100 - -(あるならば) 既にインストールされているバージョン。 - - - - -優先度 500 - -インストールされておらず、ターゲットリリースに含まれないバージョン。 - - - - -優先度 990 - -インストールされておらず、ターゲットリリースに含まれるバージョン。 - - - - - -ターゲットリリースが指定されていなければ、 -APT は単純にインストールしているパッケージのバージョンには 100 を、 -インストールしていないパッケージのバージョンには 500 を割り当てます。 - - -APT は、インストールするパッケージのバージョンを決定するために、 -以下のルールを上から順番に適用します。 - - -有効なバージョンの優先度が 1000 を越えない場合、 -決してダウングレードしません。 -(「ダウングレード」は、現在のパッケージのバージョンよりも、 -小さいバージョンのものをインストールします。 -APT のデフォルト優先度が 1000 を越えないことに注意してください。 -そのような優先度は設定ファイルでのみ設定できます。 -また、パッケージのダウングレードは危険であることにも注意してください) - -最も高い優先度のバージョンをインストールします。 - -同じ優先度のバージョンが複数存在する場合、 -最も新しいもの (最もバージョン番号が高いもの) をインストールします。 - -優先度・バージョン番号が同じものが複数存在し、 -そのパッケージのメタデータが異なるか --reinstall -オプションが与えられている場合、 -インストールされていないものをインストールします。 - - - - -よくある状況として、 -あるインストールされているパッケージのバージョン (優先度 100) が、 -&sources-list; ファイルのリストから得られるバージョン (優先度 500 か 990) -よりも新しくないということがあります。この場合、 -apt-get install some-package -や apt-get upgrade を実行するとパッケージが更新されます。 - - - -まれに、インストールされているパッケージのバージョンが、 -他の有効なバージョンよりも新しい場合があります。 -この時 -apt-get install some-package -や apt-get upgrade を実行しても、 -ダウングレードしません。 - - -時々、インストールしているパッケージのバージョンが、 -ターゲットリリースに属するバージョンよりも新しく、 -他のディストリビューションよりも古い場合があります。 -そのようなパッケージに対して -apt-get install some-package -や apt-get upgrade を実行すると、 -パッケージは更新されます。 -この場合、インストールされているバージョンよりも、 -少なくともひとつは、 -高い優先度を持つ有効なパッケージがあるからです。 - - - -APT 設定の効果 - - -APT 設定ファイルを使うと、 -システム管理者が優先度を割り当てられるようになります。 -ファイルは、空白行で区切られた、複数行からなるレコードで構成されています。 -レコードは特定形式か、汎用形式のどちらかの形式をとります。 - - - -特定形式は、優先度 ("Pin-Priority") を、 -指定したパッケージの指定したバージョン (範囲) について割り当てます。 -例えば以下のレコードは、 -"5.8" で始まる perl パッケージを、 -高い優先度に設定します。 - - -Package: perl -Pin: version 5.8* -Pin-Priority: 1001 - - - - -汎用形式は、与えられたディストリビューションにある、 -すべてのパッケージ (Release ファイルに列挙したパッケージ) -の優先度や、FQDNで指定した、 -特定のインターネットサイトから取得するパッケージの優先度を割り当てます。 - - -APT 設定ファイルに書かれている汎用形式のエントリは、 -パッケージのグループについてのみ適用されます。 -例えば以下のレコードは、ローカルサイトにある全パッケージについて、 -高い優先度を割り当てます。 - - -Package: * -Pin: origin "" -Pin-Priority: 999 - - - -注: ここで使用しているキーワードは "origin" です。 -Release ファイルに指定されたような、 -ディストリビューションの Origin と混同しないようにしてください。 -Release ファイルにある "Origin:" タグは、 -インターネットアドレスではなく、 -"Debian" や "Ximian" といった作者やベンダ名です。 - - -以下のレコードは、アーカイブ名が "unstable" -となっているディストリビューションに属するパッケージを、 -すべて低い優先度に割り当てます。 - - -Package: * -Pin: release a=unstable -Pin-Priority: 50 - - - -以下のレコードは、アーカイブ名が "stable" で、 -リリースバージョン番号が "3.0" -となっているリリースに属するパッケージを、 -すべて高い優先度に割り当てます。 - - -Package: * -Pin: release a=stable, v=3.0 -Pin-Priority: 500 - - - - - - - - - -APT が優先度に割り込む方法 - - - -APT 設定ファイルで割り当てた優先度 (P) は、正負の整数でなくてはなりません。 -これは (おおざっぱにいうと) 以下のように解釈されます。 - - - -P > 1000 - -パッケージがダウングレードしても、このバージョンのパッケージをインストールします。 - - -990 < P <=1000 - -インストールされているバージョンの方が新しいことを除き、 -ターゲットリリースに含まれなくても、 -このバージョンのパッケージをインストールします。 - - -500 < P <=990 - -ターゲットリリースに属するバージョンがあったり、 -インストールされているバージョンの方が新しいのでなければ、 -このバージョンのパッケージをインストールします。 - - -100 < P <=500 - -他のディストリビューションに属するバージョンがあったり、 -インストールされているバージョンの方が新しいのでなければ、 -このバージョンのパッケージをインストールします。 - - -0 < P <=100 - -このパッケージがインストールされていない場合、 -このバージョンのパッケージをインストールします。 - - -P < 0 - -このバージョンがインストールされないようにします。 - - - - - -特定形式のレコードが利用可能パッケージバージョンに一致した場合、 -最初のレコードが、パッケージバージョンの優先度を決定します。 -失敗して、汎用形式のレコードが利用可能パッケージバージョンに一致した場合、 -最初のレコードが、パッケージバージョンの優先度を決定します。 - - -例えば、APT 設定ファイルの上の方に、 -以下のレコードが書かれていると仮定してください。 - - -Package: perl -Pin: version 5.8* -Pin-Priority: 1001 - -Package: * -Pin: origin "" -Pin-Priority: 999 - -Package: * -Pin: release unstable -Pin-Priority: 50 - - - -すると、 - - -バージョン番号が "5.8" で始まっていれば、 -perl の最新の利用可能パッケージがインストールされます。 -バージョン 5.8* が利用可能で、バージョン 5.9* がインストールされている場合、 -perl はダウングレードされます。 - -ローカルシステムで有効な、 -perl 以外のどんなパッケージでも、 -他のバージョンより (たとえターゲットリリースに属していても) 優先度が高くなります。 - - -ローカルシステムにはなくても &sources-list; -に列挙されたサイトにあるバージョンで、 -unstable ディストリビューションに属しているパッケージは、 -インストールするよう選択され、 -既にインストールされているバージョンがない場合にのみインストールされます。 - - - - - - - -パッケージのバージョンとディストリビューションプロパティの決定 - - -&sources-list; ファイルに列挙した場所では、 -その場所で利用できるパッケージを記述した、 -Packages ファイルや -Release ファイルを提供します。 - - -Packages ファイルは通常 -.../dists/dist-name/component/arch -ディレクトリにあります。 -例えば、.../dists/stable/main/binary-i386/Packages です。 -これは、ディレクトリにある利用可能パッケージごとに、 -複数行のレコードからできています。 -APT 優先度の設定は、レコードごとに以下の 2 行だけです。 - - - -Package: -パッケージ名を与えます。 - - - -Version: -その名前のパッケージのバージョン番号を与えます。 - - - - - -Release ファイルは、通常 -.../dists/dist-name -にあります。例えば、 -.../dists/stable/Release, -.../dists/woody/Release です。 -これは、このディレクトリ以下にあるパッケージに適用する、 -複数行のレコード 1 つから成っています。 -Packages と違い Release ファイルは、 -ほとんどの行が APT 優先度の設定に関連します。 - - - - -Archive: - -このディレクトリツリーに属する全パッケージのアーカイブ名。 -例えば、 -"Archive: stable" -という行は、Release ファイルの親ディレクトリツリー以下にある全パッケージが、 -stable アーカイブだと指定します。 -APT 設定ファイルでこの値を指定するには、以下の行が必要になります。 - - -Pin: release a=stable - - - - - - -Version: - -リリースバージョン名。 -例えば、このツリーのパッケージが、 -GNU/Linux リリースバージョン 3.0 に属するとします。 -通常 testing ディストリビューションや -unstable ディストリビューションには、 -まだリリースされていないので、バージョン番号が付きません。 -APT 設定ファイルでこれを指定するには、以下の行のいずれかが必要になります。 - - - -Pin: release v=3.0 -Pin: release a=stable, v=3.0 -Pin: release 3.0 - - - - - - - -Component: - -Release ファイルの、 -ディレクトリツリーにあるパッケージのライセンスコンポーネント名。 -例えば、"Component: main" という行は、このディレクトリ以下の全ファイルが、 -main コンポーネント -(Debian フリーソフトウェアガイドラインの元でライセンスされている) -であることを表します。 -APT 設定ファイルでこのコンポーネントを指定するには、以下の行が必要になります。 - - -Pin: release c=main - - - - - - -Origin: - -Release ファイルのディレクトリツリーにあるパッケージの提供者名。 -ほとんど共通で、Debian です。 -APT 設定ファイルでこの提供者を指定するには、以下の行が必要になります。 - - -Pin: release o=Debian - - - - - - -Label: - -Release ファイルのディレクトリツリーにあるパッケージのラベル名。 -ほとんど共通で Debian です。 -APT 設定ファイルでこのラベルを指定するには、以下の行が必要になります。 - - -Pin: release l=Debian - - - - - - - -&sources-list; ファイルに列挙された場所から取得した -Packages ファイルや -Release ファイルはすべて、 -/var/lib/apt/lists ディレクトリや、 -apt.conf ファイルの -Dir::State::Lists 変数で指定した場所に取得されます。例えば、 -debian.lcs.mit.edu_debian_dists_unstable_contrib_binary-i386_Release ファイルは、 -debian.lcs.mit.edu から取得した、 -unstable ディストリビューションで、 -contrib コンポーネントな、 -binary-i386 アーキテクチャ用の -Release ファイルを含んでいます。 - - - - -APT 設定レコードのオプション行 - - -APT 設定ファイルのレコードごとに、 -任意で Explanation: で始まる行を持てます。 -これは、コメント用の場所を確保します。 - - -APT 設定レコードの Pin-Priority: 行は任意です。 -省略すると、Pin-Priority: release ... -で始まる行で指示した最後の値 (少なくとも1つ) を優先度に割り当てます。 - - - - - -サンプル - - -安定版を追跡 - - -以下の APT 設定ファイルは、stable -ディストリビューションに属する全てのパッケージのバージョンに、 -デフォルト (500) より高い優先度を割り当て、 -他の Debian -ディストリビューションのパッケージのバージョンには、 -低くてインストールできないような優先度を割り当てます。 - - -Explanation: Uninstall or do not install any Debian-originated -Explanation: package versions other than those in the stable distro -Package: * -Pin: release a=stable -Pin-Priority: 900 - -Package: * -Pin: release o=Debian -Pin-Priority: -10 - - - - -適切な &sources-list; ファイルと上記の設定ファイルにより、 -以下のコマンドで最新の stable -バージョンにアップグレードできます。 - - -apt-get install package-name -apt-get upgrade -apt-get dist-upgrade - - - - -以下のコマンドで、指定したパッケージを testing -ディストリビューションの最新バージョンにアップグレードします。 -このパッケージは、再度このコマンドを発行しないとアップグレードされません。 - - -apt-get install package/testing - - - - - - - テスト版や不安定版を追跡 - - -以下の APT 設定ファイルは、testing -ディストリビューションのパッケージのバージョンに高い優先度を割り当て、 -unstable -ディストリビューションのパッケージのバージョンには低い優先度を割り当てます。 -また他の Debian -ディストリビューションのパッケージのバージョンには、 -低くてインストールできないような優先度を割り当てます。 - - -Package: * -Pin: release a=testing -Pin-Priority: 900 - -Package: * -Pin: release a=unstable -Pin-Priority: 800 - -Package: * -Pin: release o=Debian -Pin-Priority: -10 - - - - -適切な &sources-list; ファイルと上記の設定ファイルにより、 -以下のコマンドで最新の testing -バージョンにアップグレードできます。 - - -apt-get install package-name -apt-get upgrade -apt-get dist-upgrade - - - - -以下のコマンドで、指定したパッケージを unstable -ディストリビューションの最新バージョンにアップグレードします。 -それ以降、apt-get upgrade は -testing バージョンのパッケージが更新されていれば -testing の最新版に、 -unstable バージョンのパッケージが更新されていれば -unstableの最新版にアップグレードします。 - - -apt-get install package/unstable - - - - - - - - -関連項目 -&apt-get; &apt-cache; &apt-conf; &sources-list; - - - - &manbugs; - &translator; - - - diff --git a/doc/ja/makefile b/doc/ja/makefile index 286152995..da566cc96 100644 --- a/doc/ja/makefile +++ b/doc/ja/makefile @@ -14,29 +14,37 @@ STYLESHEET=./style.ja.xsl SOURCE = apt-cache.ja.8 apt-get.ja.8 apt-cdrom.ja.8 apt.conf.ja.5 \ sources.list.ja.5 apt-config.ja.8 apt-sortpkgs.ja.1 \ apt-ftparchive.ja.1 apt_preferences.ja.5 apt-extracttemplates.ja.1 \ - apt-key.ja.8 apt-secure.ja.8 + apt-key.ja.8 apt-secure.ja.8 apt-mark.ja.8 -INCLUDES = apt.ent.ja +INCLUDES = apt.ent -doc: $(SOURCE) +doc: $(SOURCE) + +clean: clean-manpages + +clean-manpages: + rm -f $(SOURCE) \ + $(patsubst %.ja.1,%.1,$(SOURCE)) \ + $(patsubst %.ja.5,%.5,$(SOURCE)) \ + $(patsubst %.ja.8,%.8,$(SOURCE)) $(SOURCE) :: % : %.xml $(INCLUDES) echo Creating man page $@ $(XSLTPROC) -o $@ $(STYLESHEET) $< -apt-cache.ja.8:: apt-cache.8 +apt-cache.ja.8:: apt-cache.8 cp $< $@ apt-get.ja.8:: apt-get.8 cp $< $@ -apt-cdrom.ja.8:: apt-cdrom.8 +apt-cdrom.ja.8:: apt-cdrom.8 cp $< $@ -apt.conf.ja.5:: apt.conf.5 +apt.conf.ja.5:: apt.conf.5 cp $< $@ -apt-config.ja.8:: apt-config.8 +apt-config.ja.8:: apt-config.8 cp $< $@ sources.list.ja.5:: sources.list.5 @@ -45,7 +53,7 @@ sources.list.ja.5:: sources.list.5 apt-sortpkgs.ja.1:: apt-sortpkgs.1 cp $< $@ -apt-ftparchive.ja.1:: apt-ftparchive.1 +apt-ftparchive.ja.1:: apt-ftparchive.1 cp $< $@ apt_preferences.ja.5:: apt_preferences.5 @@ -54,10 +62,14 @@ apt_preferences.ja.5:: apt_preferences.5 apt-extracttemplates.ja.1:: apt-extracttemplates.1 cp $< $@ -apt-key.ja.8:: apt-key.8 +apt-key.ja.8:: apt-key.8 cp $< $@ -apt-secure.ja.8:: apt-secure.8 +apt-secure.ja.8:: apt-secure.8 cp $< $@ +apt-mark.ja.8:: apt-mark.8 + cp $< $@ + + diff --git a/doc/ja/manpage.refs b/doc/ja/manpage.refs deleted file mode 100644 index 16ffc791b..000000000 --- a/doc/ja/manpage.refs +++ /dev/null @@ -1,4 +0,0 @@ -{ - '' => '', - '' => '' -} diff --git a/doc/ja/sources.list.ja.5.xml b/doc/ja/sources.list.ja.5.xml deleted file mode 100644 index 8522a3be3..000000000 --- a/doc/ja/sources.list.ja.5.xml +++ /dev/null @@ -1,427 +0,0 @@ - - -%aptent; - -]> - - - - - &apt-author.jgunthorpe; - &apt-author.team; - &apt-email; - &apt-product; - - 29 February 2004 - - - - sources.list - 5 - - - - - sources.list - - APT 用パッケージリソースリスト - - - - 説明 - - このパッケージリソースリストは、 - システムで使用するパッケージの保管場所を特定するのに使用されます。 - 今回このマニュアルページには、 - Debian GNU/Linux システムで使用するパッケージシステムについてのみ記述します。 - この制御ファイルは、/etc/apt/sources.list にあります。 - - - ソースリストは複数の有効な取得元と、 - 様々な取得メディアをサポートしています。 - ファイルには 1 行ごと取得元を列挙し、上の方にあるものから使用します。 - 行のフォーマットは、タイプ uri 引数 となります。 - 先頭の タイプ で、 - 引数 のフォーマットを決定します。 - uri は Universal Resource Identifier (URI) で、 - よく知られた URL のスーパーセットです。 - 行の残りに # を付けて、コメントにできます。 - - - sources.list.d - - /etc/apt/sources.list.d ディレクトリに - ファイル名が .list で終わる個別ファイルを置いておくと、 - sources.list エントリに追加できます。フォーマットは、 - 通常の sources.list ファイルと同じです。 - - - - deb タイプと deb-src タイプ - - deb タイプでは典型的な 2 段階の Debian アーカイブ - (distribution/component) を記述します。 - よくあるケースでは、distribution は通常 - stable unstable - testing のどれか、 - component は、main contrib - non-free non-us のどれかです。 - deb-src タイプでは、 - Debian ディストリビューションのソースコードを、 - deb タイプと同じ形式で記述します。 - deb-src 行は、 - ソースインデックスを取得するのに必要です。 - - - deb タイプと deb-src - タイプで使用する sources.list - エントリのフォーマットは、以下になります。 - - deb uri distribution [component1] [component2] [...] - - - deb タイプの URI は、 - APT が情報を見つけられるように、 - Debian ディストリビューションの基底を指定しなければなりません。 - distribution には正確なパスを指定できます。 - その場合 component を省略し、distribution - はスラッシュ (/) で終わらなくてはなりません。 - これは URL で指定されたアーカイブの、 - 特定のサブセクションのみに関心があるときに役に立ちます。 - distribution に正確なパスを指定しないのなら、 - 少なくともひとつは component を指定しなければなりません。 - - - distribution は、 - $(ARCH) 変数を含む場合があります。 - $(ARCH) 変数は、システムで使用している - Debian アーキテクチャ (i386, m68k, powerpc, ...) に展開されます。 - これにより、アーキテクチャに依存しない sources.list - ファイルを使用できます。 - 一般的に、これは正しいパスを指定するときに気にするだけです。 - そうでない場合は、APT は現在のアーキテクチャで URI - を自動的に生成します。 - - - 有効な全 distribution, component の場所から、 - 一部が必要な場合、1 行につき 1 distribution しか指定できないため、 - 同じ URI の行を複数記述することになるでしょう。 - APT は内部で URI リストを生成してから、並べ替えます。 - そして、同じインターネットホストに対しては複数の参照をまとめます。 - 例えば FTP 接続後、切断してからまた同じホストに再接続するといった、 - 効率の悪いことをせずに、1 接続にまとめます。 - この機能は、同時接続匿名ユーザ数を制限している、 - 混んでいる FTP サイトにアクセスするのに便利です。 - APT は、帯域の狭いサイトを効率よく扱うのに、 - 異なるホストへは、接続を並行して行うようにもしています。 - - - 最優先する取得元を最初に記述するというように、 - 優先順に取得元を記述するのは重要です。 - 一般的には、スピードの速い順に並べることになる - (例えば、CD-ROM に続いてローカルネットワークのホスト、 - さらに続いて彼方のインターネットホスト) でしょう。 - - - 例: - -deb http://http.us.debian.org/debian stable main contrib non-free -deb http://http.us.debian.org/debian dists/stable-updates/ - - - - - - URI の仕様 - - - 現在認識する URI 対応は、cdrom, file, http, ftp です。 - - file - - - file スキームは、システム内の任意のディレクトリを、 - アーカイブとして扱えるようにします。 - これは NFS マウントやローカルミラーで便利です。 - - - cdrom - - - cdrom スキームは、APT がローカル CD-ROM ドライブを、 - メディア交換しながら使えるようにします。 - 取得元リストに cdrom エントリを追加するには、 - &apt-cdrom; プログラムを使用してください。 - - - http - - - http スキームはアーカイブとして、HTTP サーバを指定します。 - 環境変数 http_proxy が、 - http://server:port/ と言った形で指定されていれば、 - http_proxy で指定した プロキシサーバを使用します。 - ユーザ認証が必要な HTTP/1.1 プロキシの場合、 - http://user:pass@server:port/ と言う形で指定してください。 - この認証方法は安全ではないことに注意してください。 - - - ftp - - - ftp スキームは、アーカイブに FTP サーバを指定します。 - APT の FTP の振る舞いは、高度に設定できます。 - 詳細は、&apt-conf; のマニュアルページをご覧ください。 - ftp プロキシは、 - ftp_proxy 環境変数で指定することにご注意ください。 - この方法用に、さらにこの方法でしか使用しないのに、 - http プロキシを使用することができます - (http プロキシサーバは大抵 ftp urlも理解できます)。 - 設定ファイルで http を使用する際に、 - ftp プロキシを使用するよう設定してあっても無視されます。 - - - copy - - - copy スキームは、file スキームと同様ですが、パッケージをその場で使用せず、 - キャッシュディレクトリにコピーするところが違います。 - zip ディスクを使用していて、APT でコピーを行う場合に便利です。 - - - rshssh - - - rsh/ssh メソッドは、与えられたユーザでリモートホストに接続し、 - ファイルにアクセスするのに rsh/ssh を使用します。 - あらかじめ RSA キーや rhosts の配置が必要ですが、 - パスワードなし認証が可能です。 - リモートホストのファイルへのアクセスの際、 - ファイル転送に標準の find コマンドや - dd コマンドを使用します。 - - - - - - - サンプル - - /home/jason/debian に格納されている stable/main, stable/contrib, - stable/non-free 用のローカル (または NFS) アーカイブを使用します。 - deb file:/home/jason/debian stable main contrib non-free - - - 上記同様ですが、不安定版を使用します。 - deb file:/home/jason/debian unstable main contrib non-free - - - 上記のソース行 - deb-src file:/home/jason/debian unstable main contrib non-free - - - archive.debian.org のアーカイブに HTTP アクセスし、 - hamm/main のみを使用します。 - deb http://archive.debian.org/debian-archive hamm main - - - ftp.debian.org のアーカイブに FTP アクセスし、 - debian ディレクトリ以下の stable/contrib のみを使用します。 - deb ftp://ftp.debian.org/debian stable contrib - - - ftp.debian.org のアーカイブに FTP アクセスし、 - debian ディレクトリ以下の unstable/contrib を使用します。 - sources.list に上記サンプルと一緒に指定された場合、 - 両方のリソース行に対応する FTP セッションはひとつだけになります。 - deb ftp://ftp.debian.org/debian unstable contrib - - - nonus.debian.org のアーカイブに HTTP アクセスし、 - debian-non-US ディレクトリ以下を使用します。 - deb http://nonus.debian.org/debian-non-US stable/non-US main contrib non-free - - - nonus.debian.org のアーカイブに HTTP アクセスし、 - debian-non-US ディレクトリ以下を使用します。 - また、i386 マシンでは unstable/binary-i386 - 以下にあるファイル、 - m68k マシンでは unstable/binary-m68k - 以下にあるファイル、 - その他サポートするアーキテクチャごとのファイルのみ使用します。 - [このサンプルは変数展開の使用法の説明でしかないことに注意してください。 - non-us はこのような構造になっていません] - deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/ - - - - - 関連項目 - &apt-cache; &apt-conf; - - - - &manbugs; - &translator; - - - diff --git a/doc/po/ja.po b/doc/po/ja.po new file mode 100644 index 000000000..f6ab7a3e5 --- /dev/null +++ b/doc/po/ja.po @@ -0,0 +1,9649 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2009-07-30 22:55+0900\n" +"PO-Revision-Date: 2009-07-30 22:55+0900\n" +"Last-Translator: KURASAWA Nozomu \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\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 +msgid "Debian GNU/Linux" +msgstr "Debian GNU/Linux" + +# type: SH +#. type: SH +#: apt.8:18 +#, no-wrap +msgid "NAME" +msgstr "名称" + +# type: Plain text +#. type: Plain text +#: apt.8:20 +msgid "apt - Advanced Package Tool" +msgstr "apt - 高度パッケージツール" + +# type: SH +#. type: SH +#: apt.8:20 +#, no-wrap +msgid "SYNOPSIS" +msgstr "書式" + +# type: Plain text +#. type: Plain text +#: apt.8:22 +msgid "B" +msgstr "B" + +# type: SH +#. type: SH +#: apt.8:22 +#, no-wrap +msgid "DESCRIPTION" +msgstr "説明" + +# type: Plain text +#. type: Plain text +#: apt.8:31 +msgid "" +"APT is a management system for software packages. For normal day to day " +"package management there are several frontends available, such as B" +"(8) for the command line or B(8) for the X Window System. Some " +"options are only implemented in B(8) though." +msgstr "" +"APT はソフトウェアパッケージの管理システムです。日々のパッケージ管理には、コ" +"マンドライン用には B(8)、X Window System 用には B(8) と" +"いった、いくつかのフロントエンドが用意されています。しかし、いくつかのオプ" +"ションは B(8) にしか実装されていません。" + +# type: SH +#. type: SH +#: apt.8:31 +#, no-wrap +msgid "OPTIONS" +msgstr "オプション" + +# type: Plain text +#. type: Plain text +#: apt.8:33 apt.8:35 +msgid "None." +msgstr "なし。" + +# type: SH +#. type: SH +#: apt.8:33 +#, no-wrap +msgid "FILES" +msgstr "ファイル" + +# type: SH +#. type: SH +#: apt.8:35 +#, no-wrap +msgid "SEE ALSO" +msgstr "関連項目" + +# type: Plain text +#. type: Plain text +#: apt.8:42 +msgid "" +"B(8), B(8), B(5), B(5), " +"B(5), B(8)" +msgstr "" +"B(8), B(8), B(5), B(5), " +"B(5), B(8)" + +# type: SH +#. type: SH +#: apt.8:42 +#, no-wrap +msgid "DIAGNOSTICS" +msgstr "診断メッセージ" + +# type: Content of: +#. type: Plain text +#: apt.8:44 +msgid "apt returns zero on normal operation, decimal 100 on error." +msgstr "apt は正常終了時に 0 を返します。エラー時には十進の 100 を返します。" + +# type: SH +#. type: SH +#: apt.8:44 +#, no-wrap +msgid "BUGS" +msgstr "バグ" + +# type: Plain text +#. type: Plain text +#: apt.8:46 +msgid "This manpage isn't even started." +msgstr "このマニュアルページは、始まってさえいません。" + +# type: Plain text +#. type: Plain text +#: apt.8:55 +msgid "" +"See Ehttp://bugs.debian.org/aptE. If you wish to report a bug in " +"B, please see I or the " +"B(1) command." +msgstr "" +"Ehttp://bugs.debian.org/aptE をご覧ください。B のバグを報告する" +"場合は、I や B(1) コマン" +"ドをご覧ください。" + +# type: SH +#. type: SH +#: apt.8:55 +#, no-wrap +msgid "AUTHOR" +msgstr "著者" + +# type: Plain text +#. type: Plain text +#: apt.8:56 +msgid "apt was written by the APT team Eapt@packages.debian.orgE." +msgstr "" +"apt は the APT team Eapt@packages.debian.orgE によって書かれました。" + +#. type: Plain text +#: apt.ent:2 +msgid "" +msgstr "" + +#. type: Plain text +#: apt.ent:10 +msgid "" +" &docdir;examples/configure-index.gz\"> /etc/apt.conf\"> " +msgstr "" +" &docdir;examples/configure-index.gz\"> /etc/apt.conf\"> " + +#. type: Plain text +#: apt.ent:17 +#, no-wrap +msgid "" +"\n" +"\n" +" apt.conf\n" +" 5\n" +" \"\n" +">\n" +msgstr "" +"\n" +"\n" +" apt.conf\n" +" 5\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:23 +#, no-wrap +msgid "" +"\n" +" apt-get\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" apt-get\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:29 +#, no-wrap +msgid "" +"\n" +" apt-config\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" apt-config\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:35 +#, no-wrap +msgid "" +"\n" +" apt-cdrom\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" apt-cdrom\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:41 +#, no-wrap +msgid "" +"\n" +" apt-cache\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" apt-cache\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:47 +#, no-wrap +msgid "" +"\n" +" apt_preferences\n" +" 5\n" +" \"\n" +">\n" +msgstr "" +"\n" +" apt_preferences\n" +" 5\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:53 +#, no-wrap +msgid "" +"\n" +" apt-key\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" apt-key\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:59 +#, no-wrap +msgid "" +"\n" +" apt-secure\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" apt-secure\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:65 +#, no-wrap +msgid "" +"\n" +" apt-ftparchive\n" +" 1\n" +" \"\n" +">\n" +msgstr "" +"\n" +" apt-ftparchive\n" +" 1\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:72 +#, no-wrap +msgid "" +"\n" +" sources.list\n" +" 5\n" +" \"\n" +">\n" +msgstr "" +"\n" +" sources.list\n" +" 5\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:78 +#, no-wrap +msgid "" +"\n" +" reportbug\n" +" 1\n" +" \"\n" +">\n" +msgstr "" +"\n" +" reportbug\n" +" 1\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:84 +#, no-wrap +msgid "" +"\n" +" dpkg\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" dpkg\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:90 +#, no-wrap +msgid "" +"\n" +" dpkg-buildpackage\n" +" 1\n" +" \"\n" +">\n" +msgstr "" +"\n" +" dpkg-buildpackage\n" +" 1\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:96 +#, no-wrap +msgid "" +"\n" +" gzip\n" +" 1\n" +" \"\n" +">\n" +msgstr "" +"\n" +" gzip\n" +" 1\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:102 +#, no-wrap +msgid "" +"\n" +" dpkg-scanpackages\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" dpkg-scanpackages\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:108 +#, no-wrap +msgid "" +"\n" +" dpkg-scansources\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" dpkg-scansources\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:114 +#, no-wrap +msgid "" +"\n" +" dselect\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" dselect\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:120 +#, no-wrap +msgid "" +"\n" +" aptitude\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" aptitude\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:126 +#, no-wrap +msgid "" +"\n" +" synaptic\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" synaptic\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:132 +#, no-wrap +msgid "" +"\n" +" debsign\n" +" 1\n" +" \"\n" +">\n" +msgstr "" +"\n" +" debsign\n" +" 1\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:138 +#, no-wrap +msgid "" +"\n" +" debsig-verify\n" +" 1\n" +" \"\n" +">\n" +msgstr "" +"\n" +" debsig-verify\n" +" 1\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:144 +#, no-wrap +msgid "" +"\n" +" gpg\n" +" 1\n" +" \"\n" +">\n" +msgstr "" +"\n" +" gpg\n" +" 1\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:150 +#, no-wrap +msgid "" +"\n" +" gnome-apt\n" +" 1\n" +" \"\n" +">\n" +msgstr "" +"\n" +" gnome-apt\n" +" 1\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:156 +#, no-wrap +msgid "" +"\n" +" wajig\n" +" 1\n" +" \"\n" +">\n" +msgstr "" +"\n" +" wajig\n" +" 1\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:165 +#, no-wrap +msgid "" +"\n" +"\n" +"
apt@packages.debian.org
\n" +" Jason Gunthorpe\n" +" 1998-2001 Jason Gunthorpe\n" +" 28 October 2008\n" +" Linux\n" +msgstr "" +"\n" +"\n" +"
apt@packages.debian.org
\n" +" Jason Gunthorpe\n" +" 1998-2001 Jason Gunthorpe\n" +" 28 October 2008\n" +" Linux\n" + +#. type: Plain text +#: apt.ent:168 +#, no-wrap +msgid "" +" \n" +"\"> \n" +msgstr "" +" \n" +"\"> \n" + +#. type: Plain text +#: apt.ent:174 apt.ent:204 +#, no-wrap +msgid "" +"\n" +" apt@packages.debian.org\n" +" \n" +"\">\n" +msgstr "" +"\n" +" apt@packages.debian.org\n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:181 apt.ent:211 +#, no-wrap +msgid "" +"\n" +" Jason\n" +" Gunthorpe\n" +" \n" +"\">\n" +msgstr "" +"\n" +" Jason\n" +" Gunthorpe\n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:188 +#, no-wrap +msgid "" +"\n" +" Mike\n" +" O'Connor\n" +" \n" +"\">\n" +msgstr "" +"\n" +" Mike\n" +" O'Connor\n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:194 apt.ent:217 +#, no-wrap +msgid "" +"\n" +" APT team\n" +" \n" +"\">\n" +msgstr "" +"\n" +" APT team\n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:198 apt.ent:228 +#, no-wrap +msgid "" +"Linux\n" +"\">\n" +msgstr "" +"Linux\n" +"\">\n" + +#. type: Plain text +#: apt.ent:224 +#, no-wrap +msgid "" +"\n" +" Jason Gunthorpe\n" +" 1998-2001\n" +" \n" +"\">\n" +msgstr "" +"\n" +" Jason Gunthorpe\n" +" 1998-2001\n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:234 +#, no-wrap +msgid "" +"\n" +"\t\tQA Page\n" +"\t
\n" +"\">\n" +msgstr "" +"\n" +"\t\tQA Page\n" +"\t\n" +"\">\n" + +#. type: Plain text +#: apt.ent:245 +#, no-wrap +msgid "" +"\n" +"Bugs\n" +" APT bug page. \n" +" If you wish to report a bug in APT, please see\n" +" /usr/share/doc/debian/bug-reporting.txt or the\n" +" &reportbug; command.\n" +" \n" +"
\n" +"\">\n" +msgstr "" +"\n" +"バグ\n" +" APT バグページ をご覧ください。 \n" +" APT のバグを報告する場合は、\n" +" /usr/share/doc/debian/bug-reporting.txt や\n" +" &reportbug; コマンドをご覧ください。\n" +" \n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:253 +#, no-wrap +msgid "" +"\n" +"Author\n" +" APT was written by the APT team apt@packages.debian.org.\n" +" \n" +" \n" +"\">\n" +msgstr "" +"\n" +"著者\n" +" APT は APT team apt@packages.debian.org によって書かれました。\n" +" \n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:263 +#, no-wrap +msgid "" +"\n" +"\n" +" \n" +" Show a short usage summary.\n" +" \n" +" \n" +" \n" +msgstr "" +"\n" +"\n" +" \n" +" 使い方の短い要約を表示します。\n" +" \n" +" \n" +" \n" + +#. type: Plain text +#: apt.ent:271 +#, no-wrap +msgid "" +" \n" +" \n" +" \n" +" Show the program version.\n" +" \n" +" \n" +" \n" +msgstr "" +" \n" +" \n" +" \n" +" プログラムのバージョンを表示します。\n" +" \n" +" \n" +" \n" + +#. type: Plain text +#: apt.ent:281 +#, no-wrap +msgid "" +" \n" +" \n" +" \n" +" Configuration File; Specify a configuration file to use. \n" +" The program will read the default configuration file and then this \n" +" configuration file. See &apt-conf; for syntax information. \n" +" \n" +" \n" +" \n" +msgstr "" +" \n" +" \n" +" \n" +" 設定ファイル。 使用する設定ファイルを指定します。\n" +" この設定ファイルが読めない場合はデフォルトの設定ファイルを読み込みます。\n" +" 文法については &apt-conf; を参照してください。\n" +" \n" +" \n" +" \n" + +#. type: Plain text +#: apt.ent:293 +#, no-wrap +msgid "" +" \n" +" \n" +" \n" +" Set a Configuration Option; This will set an arbitrary\n" +" configuration option. The syntax is .\n" +" and can be used multiple\n" +" times to set different options.\n" +" \n" +" \n" +" \n" +"\">\n" +msgstr "" +" \n" +" \n" +" \n" +" 設定オプションのセット。任意の設定オプションをセットします。\n" +" 文法は となります。\n" +" 異なるオプションを設定するため、 は、\n" +" 複数回使用できます。 \n" +" \n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:304 +#, no-wrap +msgid "" +"\n" +"All command line options may be set using the configuration file, the\n" +" descriptions indicate the configuration option to set. For boolean\n" +" options you can override the config file by using something like \n" +" ,, \n" +" or several other variations.\n" +" \n" +"\">\n" +msgstr "" +"\n" +"ここで設定オプションとして説明したコマンドラインオプションは、\n" +" すべて設定ファイルを使用して設定できます。\n" +" 設定ファイルに書いた真偽値をとるオプションは\n" +" ,, \n" +" などのようにして上書きできます。\n" +" \n" +"\">\n" + +#. The last update date +#. type: Content of: +#: apt-cache.8.xml:13 apt-config.8.xml:13 apt-extracttemplates.1.xml:13 +#: apt-ftparchive.1.xml:13 apt-sortpkgs.1.xml:13 sources.list.5.xml:13 +msgid "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 29 " +"February 2004" +msgstr "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 29 " +"February 2004" + +# type: Content of: +#. type: Content of: +#: apt-cache.8.xml:22 apt-cache.8.xml:28 +msgid "apt-cache" +msgstr "apt-cache" + +#. type: Content of: +#: apt-cache.8.xml:23 apt-cdrom.8.xml:22 apt-config.8.xml:23 apt-get.8.xml:23 +#: apt-key.8.xml:15 apt-mark.8.xml:23 apt-secure.8.xml:15 +msgid "8" +msgstr "8" + +# type: Content of: +#. type: Content of: +#: apt-cache.8.xml:29 +msgid "APT package handling utility -- cache manipulator" +msgstr "APT パッケージ操作ユーティリティ -- キャッシュ操作ツール" + +# type: Content of: +#. type: Content of: +#: apt-cache.8.xml:35 +msgid "" +"apt-cache " +"add file gencaches showpkg pkg " +"showsrc pkg stats dump dumpavail unmet search regex show pkg depends pkg " +"rdepends pkg pkgnames prefix dotty pkg " +"xvcg pkg policy pkgs madison pkgs " +msgstr "" +"apt-cache " +"add file gencaches showpkg pkg " +"showsrc pkg stats dump dumpavail unmet search regex show pkg depends pkg " +"rdepends pkg pkgnames prefix dotty pkg " +"xvcg pkg policy pkgs madison pkgs " + +# type: Content of: +#. type: Content of: <refentry><refsect1><title> +#: apt-cache.8.xml:61 apt-cdrom.8.xml:46 apt-config.8.xml:46 +#: apt-extracttemplates.1.xml:42 apt-ftparchive.1.xml:54 apt-get.8.xml:114 +#: apt-key.8.xml:33 apt-mark.8.xml:43 apt-secure.8.xml:39 +#: apt-sortpkgs.1.xml:43 apt.conf.5.xml:38 apt_preferences.5.xml:32 +#: sources.list.5.xml:32 +msgid "Description" +msgstr "説明" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-cache.8.xml:62 +msgid "" +"<command>apt-cache</command> performs a variety of operations on APT's " +"package cache. <command>apt-cache</command> does not manipulate the state of " +"the system but does provide operations to search and generate interesting " +"output from the package metadata." +msgstr "" +"<command>apt-cache</command> は APT のパッケージキャッシュに対して、さまざま" +"な操作を行います。<command>apt-cache</command> は、システム状態の操作は行いま" +"せんが、パッケージのメタデータより検索したり、興味深い出力を生成するといった" +"操作を提供します。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-cache.8.xml:67 apt-get.8.xml:120 +msgid "" +"Unless the <option>-h</option>, or <option>--help</option> option is given, " +"one of the commands below must be present." +msgstr "" +"<option>-h</option> オプションや <option>--help</option> オプションを除き、以" +"下に挙げるコマンドが必要です。" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:71 +msgid "add <replaceable>file(s)</replaceable>" +msgstr "add <replaceable>file(s)</replaceable>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:72 +msgid "" +"<literal>add</literal> adds the named package index files to the package " +"cache. This is for debugging only." +msgstr "" +"<literal>add</literal> は、パッケージキャッシュに指定したパッケージインデック" +"スファイルを追加します。デバッグ専用です。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:76 +msgid "gencaches" +msgstr "gencaches" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:77 +msgid "" +"<literal>gencaches</literal> performs the same operation as <command>apt-get " +"check</command>. It builds the source and package caches from the sources in " +"&sources-list; and from <filename>/var/lib/dpkg/status</filename>." +msgstr "" +"<literal>gencaches</literal> は、<command>apt-get check</command> と同じ動作" +"を提供します。これは &sources-list; 内の取得元と <filename>/var/lib/dpkg/" +"status</filename>から、ソースとパッケージのキャッシュを構築します。" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:83 +msgid "showpkg <replaceable>pkg(s)</replaceable>" +msgstr "showpkg <replaceable>pkg(s)</replaceable>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:84 +msgid "" +"<literal>showpkg</literal> displays information about the packages listed on " +"the command line. Remaining arguments are package names. The available " +"versions and reverse dependencies of each package listed are listed, as well " +"as forward dependencies for each version. Forward (normal) dependencies are " +"those packages upon which the package in question depends; reverse " +"dependencies are those packages that depend upon the package in question. " +"Thus, forward dependencies must be satisfied for a package, but reverse " +"dependencies need not be. For instance, <command>apt-cache showpkg " +"libreadline2</command> would produce output similar to the following:" +msgstr "" +"<literal>showpkg</literal> は、コマンドライン上に列挙したパッケージの情報を表" +"示します。後に続く引数はパッケージ名となります。各パッケージについて、有効な" +"バージョンと被依存関係を列挙し、さらにその各バージョンについて依存関係を表示" +"します。(通常の) 依存関係とは、対象のパッケージが依存しているパッケージを指し" +"ます。また、被依存関係とは、対象のパッケージに依存しているパッケージを指しま" +"す。従って、パッケージの依存関係は満たさなければなりませんが、被依存関係は満" +"たす必要はありません。実例として、以下に <command>apt-cache showpkg " +"libreadline2</command> の出力を掲げます。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> +#: apt-cache.8.xml:96 +#, no-wrap +msgid "" +"Package: libreadline2\n" +"Versions: 2.1-12(/var/state/apt/lists/foo_Packages),\n" +"Reverse Depends: \n" +" libreadlineg2,libreadline2\n" +" libreadline2-altdev,libreadline2\n" +"Dependencies:\n" +"2.1-12 - libc5 (2 5.4.0-0) ncurses3.0 (0 (null))\n" +"Provides:\n" +"2.1-12 - \n" +"Reverse Provides: \n" +msgstr "" +"Package: libreadline2\n" +"Versions: 2.1-12(/var/state/apt/lists/foo_Packages),\n" +"Reverse Depends: \n" +" libreadlineg2,libreadline2\n" +" libreadline2-altdev,libreadline2\n" +"Dependencies:\n" +"2.1-12 - libc5 (2 5.4.0-0) ncurses3.0 (0 (null))\n" +"Provides:\n" +"2.1-12 - \n" +"Reverse Provides: \n" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:108 +msgid "" +"Thus it may be seen that libreadline2, version 2.1-12, depends on libc5 and " +"ncurses3.0 which must be installed for libreadline2 to work. In turn, " +"libreadlineg2 and libreadline2-altdev depend on libreadline2. If " +"libreadline2 is installed, libc5 and ncurses3.0 (and ldso) must also be " +"installed; libreadlineg2 and libreadline2-altdev do not have to be " +"installed. For the specific meaning of the remainder of the output it is " +"best to consult the apt source code." +msgstr "" +"つまり、libreadline2 の version 2.1-12 は、libc5 と ncurses3.0 に依存してい" +"て、libreadline2 が動作するには、これらをインストールする必要があるということ" +"が判ります。一方、libreadlineg2 と libreadline2-altdev は libreadline2 に依存" +"しています。libreadline2 をインストールするためには、libc5, ncurses3.0, ldso " +"をすべてインストールしなければなりませんが、libreadlineg2 と libreadline2-" +"altdev はインストールする必要はありません。出力の残りの部分の意味については、" +"apt のソースコードを調べるのが最良でしょう。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:117 +msgid "stats" +msgstr "stats" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:117 +msgid "" +"<literal>stats</literal> displays some statistics about the cache. No " +"further arguments are expected. Statistics reported are:" +msgstr "" +"<literal>stats</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> +#: apt-cache.8.xml:120 +msgid "" +"<literal>Total package names</literal> is the number of package names found " +"in the cache." +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> +#: apt-cache.8.xml:124 +msgid "" +"<literal>Normal packages</literal> is the number of regular, ordinary " +"package names; these are packages that bear a one-to-one correspondence " +"between their names and the names used by other packages for them in " +"dependencies. The majority of packages fall into this category." +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> +#: apt-cache.8.xml:130 +msgid "" +"<literal>Pure virtual packages</literal> is the number of packages that " +"exist only as a virtual package name; that is, packages only \"provide\" the " +"virtual package name, and no package actually uses the name. For instance, " +"\"mail-transport-agent\" in the Debian GNU/Linux system is a pure virtual " +"package; several packages provide \"mail-transport-agent\", but there is no " +"package named \"mail-transport-agent\"." +msgstr "" +"<literal>純粋仮想パッケージ</literal>は、仮想パッケージ名としてのみ存在する" +"パッケージ (仮想パッケージ名のみを「提供」し、実際にはいかなるパッケージもそ" +"の名称を持たない) の数を表します。例えば、Debian GNU/Linux システムでは " +"\"mail-transport-agent\" は純粋仮想パッケージです。\"mail-transport-agent\" " +"を提供するパッケージはいくつもありますが、\"mail-transport-agent\" という名称" +"のパッケージはありません。" + +# 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:138 +msgid "" +"<literal>Single virtual packages</literal> is the number of packages with " +"only one package providing a particular virtual package. For example, in the " +"Debian GNU/Linux system, \"X11-text-viewer\" is a virtual package, but only " +"one package, xless, provides \"X11-text-viewer\"." +msgstr "" +"<literal>単一仮想パッケージ</literal>は、特定の仮想パッケージ名を提供するパッ" +"ケージが、ただ一つの場合の数を表します。例えば、Debian GNU/Linux システムで" +"は、\"X11-text-viewer\" は仮想パッケージですが、\"X11-text-viewer\" を提供す" +"るパッケージは、xless パッケージのみということです。" + +# 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:144 +msgid "" +"<literal>Mixed virtual packages</literal> is the number of packages that " +"either provide a particular virtual package or have the virtual package name " +"as the package name. For instance, in the Debian GNU/Linux system, \"debconf" +"\" is both an actual package, and provided by the debconf-tiny package." +msgstr "" +"<literal>複合仮想パッケージ</literal>は、その仮想パッケージ名を提供するパッ" +"ケージが複数あるか、またパッケージ名と同じ仮想パッケージ名を持つパッケージ数" +"を表します。例えば、Debian GNU/Linux システムでは、debconf は実際のパッケージ" +"名でもありますが、debconf-tiny によって提供もされています。" + +# 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:151 +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." +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> +#: apt-cache.8.xml:158 +msgid "" +"<literal>Total distinct</literal> versions is the number of package versions " +"found in the cache; this value is therefore at least equal to the number of " +"total package names. If more than one distribution (both \"stable\" and " +"\"unstable\", for instance), is being accessed, this value can be " +"considerably larger than the number of total package names." +msgstr "" +"<literal>個別バージョン総数</literal>は、キャッシュに存在するパッケージのバー" +"ジョンの数を表します。そのため、この値は最小でもパッケージ名総数と一致しま" +"す。もし複数のディストリビューション (例 \"stable\" と \"unstable\" の両方) " +"を利用した場合、この値はパッケージ名総数よりもかなり大きい数になります。" + +# 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:165 +msgid "" +"<literal>Total dependencies</literal> is the number of dependency " +"relationships claimed by all of the packages in the cache." +msgstr "" +"<literal>依存関係総数</literal>は、キャッシュにあるすべてのパッケージで要求さ" +"れた依存関係の数です。" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:172 +msgid "showsrc <replaceable>pkg(s)</replaceable>" +msgstr "showsrc <replaceable>pkg(s)</replaceable>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:173 +msgid "" +"<literal>showsrc</literal> displays all the source package records that " +"match the given package names. All versions are shown, as well as all " +"records that declare the name to be a Binary." +msgstr "" +"<literal>showsrc</literal> は、指定したパッケージ名に一致するソースパッケージ" +"を、すべて表示します。バイナリになるときの名称を宣言したレコードと同様に、す" +"べてのバージョンについて表示します。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:178 apt-config.8.xml:83 +msgid "dump" +msgstr "dump" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:179 +msgid "" +"<literal>dump</literal> shows a short listing of every package in the cache. " +"It is primarily for debugging." +msgstr "" +"<literal>dump</literal> は、キャッシュ内のパッケージそれぞれについて、短い一" +"覧を表示します。主にデバッグ用です。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:183 +msgid "dumpavail" +msgstr "dumpavail" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:184 +msgid "" +"<literal>dumpavail</literal> prints out an available list to stdout. This is " +"suitable for use with &dpkg; and is used by the &dselect; method." +msgstr "" +"<literal>dumpavail</literal> は、標準出力に利用可能なものの一覧を出力しま" +"す。 &dpkg; と共に使用すると便利ですし、&dselect; でも使用されます。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:188 +msgid "unmet" +msgstr "unmet" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:189 +msgid "" +"<literal>unmet</literal> displays a summary of all unmet dependencies in the " +"package cache." +msgstr "" +"<literal>unmet</literal> は、パッケージキャッシュ内にある、不適当な依存関係の" +"概要を表示します。" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:193 +msgid "show <replaceable>pkg(s)</replaceable>" +msgstr "show <replaceable>pkg(s)</replaceable>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:194 +msgid "" +"<literal>show</literal> performs a function similar to <command>dpkg --print-" +"avail</command>; it displays the package records for the named packages." +msgstr "" +"<literal>show</literal> は、<command>dpkg --print-avail</command> と同様の機" +"能を実行します。これは、指定したパッケージのパッケージレコードの表示です。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:199 +msgid "search <replaceable>regex [ regex ... ]</replaceable>" +msgstr "search <replaceable>regex [ regex ... ]</replaceable>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:200 +msgid "" +"<literal>search</literal> performs a full text search on all available " +"package lists for the POSIX regex pattern given, see " +"<citerefentry><refentrytitle><command>regex</command></refentrytitle> " +"<manvolnum>7</manvolnum></citerefentry>. It searches the package names and " +"the descriptions for an occurrence of the regular expression and prints out " +"the package name and the short description, including virtual package " +"names. If <option>--full</option> is given then output identical to " +"<literal>show</literal> is produced for each matched package, and if " +"<option>--names-only</option> is given then the long description is not " +"searched, only the package name is." +msgstr "" +"<literal>search</literal> は、与えられた POSIX の正規表現 " +"(<citerefentry><refentrytitle><command>regex</command></refentrytitle> " +"<manvolnum>7</manvolnum></citerefentry> 参照) により、すべての利用可能なパッ" +"ケージに対して全文検索を行います。パッケージ名と説明に対して正規表現で検索を" +"行い、パッケージ名 (仮想パッケージ名を含む) と短い説明文を表示します。" +"<option>--full</option> が与えられた場合、マッチしたパッケージに対し " +"<literal>show</literal> と同じ情報を出力します。<option>--names-only</" +"option> が与えられた場合は、説明文に対して検索を行わず、パッケージ名に対して" +"のみ対象とします。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:213 +msgid "" +"Separate arguments can be used to specify multiple search patterns that are " +"and'ed together." +msgstr "空白で区切った引数で、複数の検索パターンの and をとることができます。" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:217 +msgid "depends <replaceable>pkg(s)</replaceable>" +msgstr "depends <replaceable>pkg(s)</replaceable>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:218 +msgid "" +"<literal>depends</literal> shows a listing of each dependency a package has " +"and all the possible other packages that can fulfill that dependency." +msgstr "" +"<literal>depends</literal> は、パッケージが持っている依存関係と、その依存関係" +"を満たす他のパッケージの一覧を表示します。" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:222 +msgid "rdepends <replaceable>pkg(s)</replaceable>" +msgstr "rdepends <replaceable>pkg(s)</replaceable>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:223 +msgid "" +"<literal>rdepends</literal> shows a listing of each reverse dependency a " +"package has." +msgstr "" +"<literal>rdepends</literal> は、パッケージが持つ被依存関係を一覧表示します。" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:227 +msgid "pkgnames <replaceable>[ prefix ]</replaceable>" +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:228 +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." +msgstr "" +"このコマンドは、システムでの各パッケージの名称を表示します。オプションの引数" +"により、取得する一覧より先頭一致で抽出することができます。この出力はシェルの" +"タブによる補完機能に使いやすく、また非常に速く生成されます。このコマンドは " +"<option>--generate</option> オプションと共に使用すると非常に便利です。" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:235 +msgid "dotty <replaceable>pkg(s)</replaceable>" +msgstr "dotty <replaceable>pkg(s)</replaceable>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:236 +msgid "" +"<literal>dotty</literal> takes a list of packages on the command line and " +"generates output suitable for use by dotty from the <ulink url=\"http://www." +"research.att.com/sw/tools/graphviz/\">GraphViz</ulink> package. The result " +"will be a set of nodes and edges representing the relationships between the " +"packages. By default the given packages will trace out all dependent " +"packages; this can produce a very large graph. To limit the output to only " +"the packages listed on the command line, set the <literal>APT::Cache::" +"GivenOnly</literal> option." +msgstr "" +"<literal>dotty</literal> は、コマンドライン上のパッケージ名から、<ulink url=" +"\"http://www.research.att.com/sw/tools/graphviz/\">GraphViz</ulink> パッケー" +"ジの dotty コマンドで利用するのに便利な出力を生成します。結果はパッケージの関" +"係を表わす、ノード・エッジのセットで表現されます。デフォルトでは、すべての依" +"存パッケージをトレースするので、非常に大きい図が得られます。これは、" +"<literal>APT::Cache::GivenOnly</literal> オプションを設定して解除できます。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:245 +msgid "" +"The resulting nodes will have several shapes; normal packages are boxes, " +"pure provides are triangles, mixed provides are diamonds, missing packages " +"are hexagons. Orange boxes mean recursion was stopped [leaf packages], blue " +"lines are pre-depends, green lines are conflicts." +msgstr "" +"結果のノードは数種の形状をとります。通常パッケージは四角、純粋仮想パッケージ" +"は三角、複合仮想パッケージは菱形、六角形は欠落パッケージをそれぞれ表します。" +"オレンジの四角は再帰が終了した「リーフパッケージ」、青い線は先行依存、緑の線" +"は競合を表します。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:250 +msgid "Caution, dotty cannot graph larger sets of packages." +msgstr "注意) dotty は、パッケージのより大きなセットのグラフは描けません。" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:253 +msgid "xvcg <replaceable>pkg(s)</replaceable>" +msgstr "xvcg <replaceable>pkg(s)</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:254 +msgid "" +"The same as <literal>dotty</literal>, only for xvcg from the <ulink url=" +"\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." +msgstr "" +"<literal>dotty</literal> と同様ですが、<ulink url=\"http://rw4.cs.uni-sb.de/" +"users/sander/html/gsvcg1.html\">VCG tool</ulink> の xvcg 専用です。" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:258 +msgid "policy <replaceable>[ pkg(s) ]</replaceable>" +msgstr "policy <replaceable>[ pkg(s) ]</replaceable>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:259 +msgid "" +"<literal>policy</literal> is meant to help debug issues relating to the " +"preferences file. With no arguments it will print out the priorities of each " +"source. Otherwise it prints out detailed information about the priority " +"selection of the named package." +msgstr "" +"<literal>policy</literal> は、設定ファイル関係の問題について、デバッグを支援" +"します。引数を指定しなかった場合、取得元ごとの優先順位を表示します。一方、" +"パッケージ名を指定した場合、優先順の詳細情報を表示します。" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:265 +msgid "madison <replaceable>/[ pkg(s) ]</replaceable>" +msgstr "madison <replaceable>/[ pkg(s) ]</replaceable>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:266 +msgid "" +"<literal>apt-cache</literal>'s <literal>madison</literal> command attempts " +"to mimic the output format and a subset of the functionality of the Debian " +"archive management tool, <literal>madison</literal>. It displays available " +"versions of a package in a tabular format. Unlike the original " +"<literal>madison</literal>, it can only display information for the " +"architecture for which APT has retrieved package lists (<literal>APT::" +"Architecture</literal>)." +msgstr "" +"<literal>apt-cache</literal> の <literal>madison</literal> コマンドは、" +"Debian アーカイブ管理ツール <literal>madison</literal> の機能のサブセットで、" +"出力フォーマットを真似ようとします。パッケージの利用可能バージョンを表形式で" +"表示します。オリジナルの <literal>madison</literal> と違い、APT がパッケージ" +"一覧を検索したアーキテクチャ (<literal>APT::Architecture</literal>) の情報を" +"表示するだけです。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:277 apt-config.8.xml:92 apt-extracttemplates.1.xml:55 +#: apt-ftparchive.1.xml:491 apt-get.8.xml:299 apt-mark.8.xml:73 +#: apt-sortpkgs.1.xml:53 apt.conf.5.xml:373 apt.conf.5.xml:395 +msgid "options" +msgstr "オプション" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:281 +msgid "<option>-p</option>" +msgstr "<option>-p</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:281 +msgid "<option>--pkg-cache</option>" +msgstr "<option>--pkg-cache</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:282 +msgid "" +"Select the file to store the package cache. The package cache is the primary " +"cache used by all operations. Configuration Item: <literal>Dir::Cache::" +"pkgcache</literal>." +msgstr "" +"パッケージキャッシュを格納するファイルを選択します。パッケージキャッシュは、" +"すべての操作で使用される一次キャッシュです。設定項目 - <literal>Dir::Cache::" +"pkgcache</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:287 apt-ftparchive.1.xml:534 apt-get.8.xml:356 +#: apt-sortpkgs.1.xml:57 +msgid "<option>-s</option>" +msgstr "<option>-s</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:287 +msgid "<option>--src-cache</option>" +msgstr "<option>--src-cache</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:288 +msgid "" +"Select the file to store the source cache. The source is used only by " +"<literal>gencaches</literal> and it stores a parsed version of the package " +"information from remote sources. When building the package cache the source " +"cache is used to avoid reparsing all of the package files. Configuration " +"Item: <literal>Dir::Cache::srcpkgcache</literal>." +msgstr "" +"ソースキャッシュを格納するファイルを選択します。このソースキャッシュは " +"<literal>gencaches</literal> でのみ使用され、ここに解析された取得元のパッケー" +"ジ情報が格納されています。パッケージキャッシュを構築する際に、ソースキャッ" +"シュは、全パッケージファイルを再解析を避ける上で便利です。設定項目 - " +"<literal>Dir::Cache::srcpkgcache</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:295 apt-ftparchive.1.xml:508 apt-get.8.xml:346 +msgid "<option>-q</option>" +msgstr "<option>-q</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:295 apt-ftparchive.1.xml:508 apt-get.8.xml:346 +msgid "<option>--quiet</option>" +msgstr "<option>--quiet</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:296 +msgid "" +"Quiet; produces output suitable for logging, omitting progress indicators. " +"More q's will produce more quietness up to a maximum of 2. You can also use " +"<option>-q=#</option> to set the quietness level, overriding the " +"configuration file. Configuration Item: <literal>quiet</literal>." +msgstr "" +"静粛 - 進捗表示を省略し、ログをとるのに便利な出力を行います。最大 2 つまで q " +"を重ねることでさらに静粛にできます。また、<option>-q=#</option> のように静粛" +"レベルを指定して、設定ファイルを上書きすることもできます。設定項目 - " +"<literal>quiet</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:302 +msgid "<option>-i</option>" +msgstr "<option>-i</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:302 +msgid "<option>--important</option>" +msgstr "<option>--important</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:303 +msgid "" +"Print only important dependencies; for use with unmet and depends. Causes " +"only Depends and Pre-Depends relations to be printed. Configuration Item: " +"<literal>APT::Cache::Important</literal>." +msgstr "" +"「重要」依存関係のみ表示 - unmet や depends と共に使用します。これは「依存」" +"関係と「先行依存」関係のみを表示するためです。設定項目 - <literal>APT::" +"Cache::Important</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:308 apt-cdrom.8.xml:120 apt-get.8.xml:313 +msgid "<option>-f</option>" +msgstr "<option>-f</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:308 +msgid "<option>--full</option>" +msgstr "<option>--full</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:309 +msgid "" +"Print full package records when searching. Configuration Item: " +"<literal>APT::Cache::ShowFull</literal>." +msgstr "" +"search 時に全パッケージレコードを表示します。設定項目 - <literal>APT::Cache::" +"ShowFull</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:313 apt-cdrom.8.xml:130 +msgid "<option>-a</option>" +msgstr "<option>-a</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:313 +msgid "<option>--all-versions</option>" +msgstr "<option>--all-versions</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:314 +msgid "" +"Print full records for all available versions. This is the default; to turn " +"it off, use <option>--no-all-versions</option>. If <option>--no-all-" +"versions</option> is specified, only the candidate version will displayed " +"(the one which would be selected for installation). This option is only " +"applicable to the <literal>show</literal> command. Configuration Item: " +"<literal>APT::Cache::AllVersions</literal>." +msgstr "" +"全利用可能バージョンのレコード全体を表示します。これはデフォルトの動作で、無" +"効にするには <option>--no-all-versions</option> を使用してください。" +"<option>--no-all-versions</option> を指定すると、候補バージョン (インストール" +"の際に選択されるもの) だけ表示します。このオプションは、show コマンドでのみ適" +"用できます。設定項目 - <literal>APT::Cache::AllVersions</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:322 +msgid "<option>-g</option>" +msgstr "<option>-g</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:322 +msgid "<option>--generate</option>" +msgstr "<option>--generate</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:323 +msgid "" +"Perform automatic package cache regeneration, rather than use the cache as " +"it is. This is the default; to turn it off, use <option>--no-generate</" +"option>. Configuration Item: <literal>APT::Cache::Generate</literal>." +msgstr "" +"そのままキャッシュを使用するのではなく、自動的にパッケージキャッシュを再生成" +"します。これはデフォルトの動作で、無効にするには <option>--no-generate</" +"option> を使用してください。設定項目 - <literal>APT::Cache::Generate</" +"literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:328 +msgid "<option>--names-only</option>" +msgstr "<option>--names-only</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:328 apt-cdrom.8.xml:138 +msgid "<option>-n</option>" +msgstr "<option>-n</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:329 +msgid "" +"Only search on the package names, not the long descriptions. Configuration " +"Item: <literal>APT::Cache::NamesOnly</literal>." +msgstr "" +"説明文ではなく、パッケージ名からのみ検索します。設定項目 - <literal>APT::" +"Cache::NamesOnly</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:333 +msgid "<option>--all-names</option>" +msgstr "<option>--all-names</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:334 +msgid "" +"Make <literal>pkgnames</literal> print all names, including virtual packages " +"and missing dependencies. Configuration Item: <literal>APT::Cache::" +"AllNames</literal>." +msgstr "" +"<literal>pkgnames</literal> で、仮想パッケージや欠落依存関係を含めた全名称を" +"表示します。設定項目 - <literal>APT::Cache::AllNames</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:339 +msgid "<option>--recurse</option>" +msgstr "<option>--recurse</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:340 +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>." +msgstr "" +"<literal>depends</literal> や <literal>rdepends</literal> で、指定した全パッ" +"ケージを再帰的に一度に表示します。設定項目 - <literal>APT::Cache::" +"RecurseDepends</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:345 +msgid "<option>--installed</option>" +msgstr "<option>--installed</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:347 +msgid "" +"Limit the output of <literal>depends</literal> and <literal>rdepends</" +"literal> to packages which are currently installed. Configuration Item: " +"<literal>APT::Cache::Installed</literal>." +msgstr "" +"<literal>depends</literal> や <literal>rdepends</literal> の出力を、現在イン" +"ストールされているパッケージに限定します。設定項目 - <literal>APT::Cache::" +"Installed</literal>" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><variablelist> +#: apt-cache.8.xml:352 apt-cdrom.8.xml:149 apt-config.8.xml:97 +#: apt-extracttemplates.1.xml:66 apt-ftparchive.1.xml:546 apt-get.8.xml:534 +#: apt-sortpkgs.1.xml:63 +msgid "&apt-commonoptions;" +msgstr "&apt-commonoptions;" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: apt-cache.8.xml:357 apt-get.8.xml:539 apt-key.8.xml:137 apt.conf.5.xml:824 +msgid "Files" +msgstr "ファイル" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:359 apt-get.8.xml:541 +msgid "<filename>/etc/apt/sources.list</filename>" +msgstr "<filename>/etc/apt/sources.list</filename>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:360 apt-get.8.xml:542 +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> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:364 apt-get.8.xml:575 +msgid "<filename>&statedir;/lists/</filename>" +msgstr "<filename>&statedir;/lists/</filename>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:365 apt-get.8.xml:576 +msgid "" +"Storage area for state information for each package resource specified in " +"&sources-list; Configuration Item: <literal>Dir::State::Lists</literal>." +msgstr "" +"&sources-list; に指定した、パッケージリソースごとの状態情報格納エリア。設定項" +"目 - <literal>Dir::State::Lists</literal>" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:370 apt-get.8.xml:581 +msgid "<filename>&statedir;/lists/partial/</filename>" +msgstr "<filename>&statedir;/lists/partial/</filename>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:371 apt-get.8.xml:582 +msgid "" +"Storage area for state information in transit. Configuration Item: " +"<literal>Dir::State::Lists</literal> (implicit partial)." +msgstr "" +"取得中状態情報格納エリア。設定項目 - <literal>Dir::State::Lists</literal> (必" +"然的に不完全)" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: apt-cache.8.xml:377 apt-cdrom.8.xml:154 apt-config.8.xml:102 +#: apt-extracttemplates.1.xml:73 apt-ftparchive.1.xml:562 apt-get.8.xml:588 +#: apt-key.8.xml:161 apt-mark.8.xml:104 apt-secure.8.xml:180 +#: apt-sortpkgs.1.xml:68 apt.conf.5.xml:828 apt_preferences.5.xml:613 +#: sources.list.5.xml:220 +msgid "See Also" +msgstr "関連項目" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-cache.8.xml:378 +msgid "&apt-conf;, &sources-list;, &apt-get;" +msgstr "&apt-conf;, &sources-list;, &apt-get;" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: apt-cache.8.xml:382 apt-cdrom.8.xml:159 apt-config.8.xml:107 +#: apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:566 apt-get.8.xml:594 +#: apt-mark.8.xml:108 apt-sortpkgs.1.xml:72 +msgid "Diagnostics" +msgstr "診断メッセージ" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-cache.8.xml:383 +msgid "" +"<command>apt-cache</command> returns zero on normal operation, decimal 100 " +"on error." +msgstr "" +"<command>apt-cache</command> は正常終了時に 0 を返します。エラー時には十進の " +"100 を返します。" + +#. type: Content of: <refentry><refentryinfo> +#: apt-cdrom.8.xml:13 +msgid "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>14 " +"February 2004</date>" +msgstr "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>14 " +"February 2004</date>" + +# type: Content of: <refentry><refnamediv><refname> +#. type: Content of: <refentry><refnamediv><refname> +#: apt-cdrom.8.xml:21 apt-cdrom.8.xml:27 +msgid "apt-cdrom" +msgstr "apt-cdrom" + +# type: Content of: <refentry><refnamediv><refpurpose> +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-cdrom.8.xml:28 +msgid "APT CDROM management utility" +msgstr "APT CDROM 管理ユーティリティ" + +# type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-cdrom.8.xml:34 +msgid "" +"<command>apt-cdrom</command> <arg><option>-hvrmfan</option></arg> " +"<arg><option>-d=<replaceable>cdrom mount point</replaceable></option></arg> " +"<arg><option>-o=<replaceable>config string</replaceable></option></arg> " +"<arg><option>-c=<replaceable>file</replaceable></option></arg> <group> " +"<arg>add</arg> <arg>ident</arg> </group>" +msgstr "" +"<command>apt-cdrom</command> <arg><option>-hvrmfan</option></arg> " +"<arg><option>-d=<replaceable>cdrom mount point</replaceable></option></arg> " +"<arg><option>-o=<replaceable>config string</replaceable></option></arg> " +"<arg><option>-c=<replaceable>file</replaceable></option></arg> <group> " +"<arg>add</arg> <arg>ident</arg> </group>" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:47 +msgid "" +"<command>apt-cdrom</command> is used to add a new CDROM to APTs list of " +"available sources. <command>apt-cdrom</command> takes care of determining " +"the structure of the disc as well as correcting for several possible mis-" +"burns and verifying the index files." +msgstr "" +"<command>apt-cdrom</command> は利用可能な取得元として、APT のリストに新しい " +"CDROM を追加するのに便利です。<command>apt-cdrom</command> は焼き損じを可能な" +"限り補正し、ディスク構造の確認を助けます。また、インデックスファイルの確認を" +"行います。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:54 +msgid "" +"It is necessary to use <command>apt-cdrom</command> to add CDs to the APT " +"system, it cannot be done by hand. Furthermore each disk in a multi-cd set " +"must be inserted and scanned separately to account for possible mis-burns." +msgstr "" +"APT システムに手作業で CD を追加するのは難しいため、<command>apt-cdrom</" +"command> が必要になります。その上、CD セットのディスクを 1 枚づつ、焼き損じを" +"補正できるか評価しなければなりません。" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:64 +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:65 +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." +msgstr "" +"<literal>add</literal> は、新しいディスクを取得元リストに追加します。CDROM デ" +"バイスのアンマウント、ディスク挿入のプロンプトの表示の後に、ディスクのスキャ" +"ンとインデックスファイルのコピーを行います。ディスクに正しい <filename>disk</" +"filename> ディレクトリが存在しない場合、タイトルを入力するよう促します。" + +# type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:73 +msgid "" +"APT uses a CDROM ID to track which disc is currently in the drive and " +"maintains a database of these IDs in <filename>&statedir;/cdroms.list</" +"filename>" +msgstr "" +"APT は、現在ドライブにあるディスクのトラックから取得した、CDROM ID を使用しま" +"す。またその ID を、<filename>&statedir;/cdroms.list</filename> 内のデータ" +"ベースで管理します。" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:80 +msgid "ident" +msgstr "ident" + +# type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:81 +msgid "" +"A debugging tool to report the identity of the current disc as well as the " +"stored file name" +msgstr "" +"格納されているファイル名と現在のディスクが同一かどうかをレポートする、デバッ" +"グツールです。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:60 +msgid "" +"Unless the <option>-h</option>, or <option>--help</option> option is given " +"one of the commands below must be present. <placeholder type=\"variablelist" +"\" id=\"0\"/>" +msgstr "" +"<option>-h</option> オプションや <option>--help</option> オプションを除き、以" +"下に挙げるコマンドが必要です。<placeholder type=\"variablelist\" id=\"0\"/>" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: apt-cdrom.8.xml:90 +msgid "Options" +msgstr "オプション" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:94 apt-ftparchive.1.xml:502 apt-get.8.xml:308 +msgid "<option>-d</option>" +msgstr "<option>-d</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:94 +msgid "<option>--cdrom</option>" +msgstr "<option>--cdrom</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:95 +msgid "" +"Mount point; specify the location to mount the cdrom. This mount point must " +"be listed in <filename>/etc/fstab</filename> and properly configured. " +"Configuration Item: <literal>Acquire::cdrom::mount</literal>." +msgstr "" +"マウントポイント - cdrom をマウントする場所を指定します。このマウントポイント" +"は、<filename>/etc/fstab</filename> に正しく設定されている必要があります。設" +"定項目 - <literal>Acquire::cdrom::mount</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:103 +msgid "<option>-r</option>" +msgstr "<option>-r</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:103 +msgid "<option>--rename</option>" +msgstr "<option>--rename</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:104 +msgid "" +"Rename a disc; change the label of a disk or override the disks given label. " +"This option will cause <command>apt-cdrom</command> to prompt for a new " +"label. Configuration Item: <literal>APT::CDROM::Rename</literal>." +msgstr "" +"ディスクの名前変更 - 指定した名前でディスクのラベルを変更・更新します。このオ" +"プションにより、<command>apt-cdrom</command> が新しいラベルを入力するよう促し" +"ます。設定項目 - <literal>APT::CDROM::Rename</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:112 apt-get.8.xml:327 +msgid "<option>-m</option>" +msgstr "<option>-m</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:112 +msgid "<option>--no-mount</option>" +msgstr "<option>--no-mount</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:113 +msgid "" +"No mounting; prevent <command>apt-cdrom</command> from mounting and " +"unmounting the mount point. Configuration Item: <literal>APT::CDROM::" +"NoMount</literal>." +msgstr "" +"マウントなし - <command>apt-cdrom</command> が、マウントポイントにマウント・" +"アンマウントしないようにします。設定項目 - <literal>APT::CDROM::NoMount</" +"literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:120 +msgid "<option>--fast</option>" +msgstr "<option>--fast</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:121 +msgid "" +"Fast Copy; Assume the package files are valid and do not check every " +"package. This option should be used only if <command>apt-cdrom</command> has " +"been run on this disc before and did not detect any errors. Configuration " +"Item: <literal>APT::CDROM::Fast</literal>." +msgstr "" +"高速コピー - パッケージファイルが妥当であると仮定し、チェックを全く行いませ" +"ん。このオプションは、このディスクで以前 <command>apt-cdrom</command> を行っ" +"ており、エラーを検出しなかった場合のみ使用すべきです。設定項目 - " +"<literal>APT::CDROM::Fast</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:130 +msgid "<option>--thorough</option>" +msgstr "<option>--thorough</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:131 +msgid "" +"Thorough Package Scan; This option may be needed with some old Debian " +"1.1/1.2 discs that have Package files in strange places. It takes much " +"longer to scan the CD but will pick them all up." +msgstr "" +"完全パッケージスキャン - 古い Debian 1.1/1.2 のディスクは、パッケージファイル" +"が違う場所にあるため、このオプションを使う必要があるかもしれません。CD をス" +"キャンするのに非常に時間がかかりますが、全パッケージファイルを抽出することが" +"できます。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:139 apt-get.8.xml:358 +msgid "<option>--just-print</option>" +msgstr "<option>--just-print</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:140 apt-get.8.xml:360 +msgid "<option>--recon</option>" +msgstr "<option>--recon</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:141 apt-get.8.xml:361 +msgid "<option>--no-act</option>" +msgstr "<option>--no-act</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:142 +msgid "" +"No Changes; Do not change the &sources-list; file and do not write index " +"files. Everything is still checked however. Configuration Item: " +"<literal>APT::CDROM::NoAct</literal>." +msgstr "" +"変更なし - &sources-list; ファイルの変更や、インデックスファイルの書き込みを" +"行いません。とはいえ、すべてのチェックは行います。設定項目 - <literal>APT::" +"CDROM::NoAct</literal>" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:155 +msgid "&apt-conf;, &apt-get;, &sources-list;" +msgstr "&apt-conf;, &apt-get;, &sources-list;" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:160 +msgid "" +"<command>apt-cdrom</command> returns zero on normal operation, decimal 100 " +"on error." +msgstr "" +"<command>apt-cdrom</command> は正常終了時に 0 を返します。エラー時には十進の " +"100 を返します。" + +# type: Content of: <refentry><refnamediv><refname> +#. type: Content of: <refentry><refnamediv><refname> +#: apt-config.8.xml:22 apt-config.8.xml:28 +msgid "apt-config" +msgstr "apt-config" + +# type: Content of: <refentry><refnamediv><refpurpose> +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-config.8.xml:29 +msgid "APT Configuration Query program" +msgstr "APT 設定取得プログラム" + +# type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-config.8.xml:35 +msgid "" +"<command>apt-config</command> <arg><option>-hv</option></arg> <arg><option>-" +"o=<replaceable>config string</replaceable></option></arg> <arg><option>-" +"c=<replaceable>file</replaceable></option></arg> <group choice=\"req\"> " +"<arg>shell</arg> <arg>dump</arg> </group>" +msgstr "" +"<command>apt-config</command> <arg><option>-hv</option></arg> <arg><option>-" +"o=<replaceable>config string</replaceable></option></arg> <arg><option>-" +"c=<replaceable>file</replaceable></option></arg> <group choice=\"req\"> " +"<arg>shell</arg> <arg>dump</arg> </group>" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-config.8.xml:47 +msgid "" +"<command>apt-config</command> is an internal program used by various " +"portions of the APT suite to provide consistent configurability. It accesses " +"the main configuration file <filename>/etc/apt/apt.conf</filename> in a " +"manner that is easy to use by scripted applications." +msgstr "" +"<command>apt-config</command> は、APT スイートの様々な所で一貫した設定を行う" +"ために使用する、内部ツールです。スクリプトアプリケーションで使いやすい方法" +"で、メイン設定ファイル <filename>/etc/apt/apt.conf</filename> にアクセスしま" +"す。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-config.8.xml:52 apt-ftparchive.1.xml:70 +msgid "" +"Unless the <option>-h</option>, or <option>--help</option> option is given " +"one of the commands below must be present." +msgstr "" +"<option>-h</option> オプションや <option>--help</option> オプションを除き、以" +"下に挙げるコマンドが必要です。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-config.8.xml:57 +msgid "shell" +msgstr "shell" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-config.8.xml:59 +msgid "" +"shell is used to access the configuration information from a shell script. " +"It is given pairs of arguments, the first being a shell variable and the " +"second the configuration value to query. As output it lists a series of " +"shell assignments commands for each present value. In a shell script it " +"should be used like:" +msgstr "" +"shell は、シェルスクリプトから設定情報にアクセスするのに使用します。引数とし" +"て、まずシェル変数、次に取得したい設定値をペアで与えます。出力として、現在の" +"値ごとにシェル代入コマンドの一覧を表示します。シェルスクリプト内では、以下の" +"ようにしてください。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> +#: apt-config.8.xml:67 +#, no-wrap +msgid "" +"OPTS=\"-f\"\n" +"RES=`apt-config shell OPTS MyApp::options`\n" +"eval $RES\n" +msgstr "" +"OPTS=\"-f\"\n" +"RES=`apt-config shell OPTS MyApp::options`\n" +"eval $RES\n" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-config.8.xml:72 +msgid "" +"This will set the shell environment variable $OPTS to the value of MyApp::" +"options with a default of <option>-f</option>." +msgstr "" +"これは、MyApp::options の値をシェル環境変数 $OPTS にセットします。デフォルト" +"値は <option>-f</option> となります。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-config.8.xml:76 +msgid "" +"The configuration item may be postfixed with a /[fdbi]. f returns file " +"names, d returns directories, b returns true or false and i returns an " +"integer. Each of the returns is normalized and verified internally." +msgstr "" +"設定項目は /[fdbi] を後ろに付けられます。f はファイル名を、d はディレクトリ" +"を、b は true か false を、i は整数を返します。返り値ごとに内部で正規化と検証" +"を行います。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-config.8.xml:85 +msgid "Just show the contents of the configuration space." +msgstr "設定箇所の内容を表示するだけです。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-config.8.xml:103 apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 +#: apt-mark.8.xml:105 apt-sortpkgs.1.xml:69 +msgid "&apt-conf;" +msgstr "&apt-conf;" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-config.8.xml:108 +msgid "" +"<command>apt-config</command> returns zero on normal operation, decimal 100 " +"on error." +msgstr "" +"<command>apt-config</command> は正常終了時に 0 を返します。エラー時には十進" +"の 100 を返します。" + +# type: Content of: <refentry><refnamediv><refname> +#. type: Content of: <refentry><refnamediv><refname> +#: apt-extracttemplates.1.xml:22 apt-extracttemplates.1.xml:28 +msgid "apt-extracttemplates" +msgstr "apt-extracttemplates" + +#. type: Content of: <refentry><refmeta><manvolnum> +#: apt-extracttemplates.1.xml:23 apt-ftparchive.1.xml:23 apt-sortpkgs.1.xml:23 +msgid "1" +msgstr "1" + +# type: Content of: <refentry><refnamediv><refpurpose> +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-extracttemplates.1.xml:29 +msgid "Utility to extract DebConf config and templates from Debian packages" +msgstr "" +"Debian パッケージから DebConf 設定と DebConf テンプレートを抽出するユーティリ" +"ティ" + +# type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-extracttemplates.1.xml:35 +msgid "" +"<command>apt-extracttemplates</command> <arg><option>-hv</option></arg> " +"<arg><option>-t=<replaceable>temporary directory</replaceable></option></" +"arg> <arg choice=\"plain\" rep=\"repeat\"><replaceable>file</replaceable></" +"arg>" +msgstr "" +"<command>apt-extracttemplates</command> <arg><option>-hv</option></arg> " +"<arg><option>-t=<replaceable>temporary directory</replaceable></option></" +"arg> <arg choice=\"plain\" rep=\"repeat\"><replaceable>file</replaceable></" +"arg>" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-extracttemplates.1.xml:43 +msgid "" +"<command>apt-extracttemplates</command> will take one or more Debian package " +"files as input and write out (to a temporary directory) all associated " +"config scripts and template files. For each passed in package that contains " +"config scripts and templates, one line of output will be generated in the " +"format:" +msgstr "" +"<command>apt-extracttemplates</command> は、入力に複数の Debian パッケージを" +"とり、関連する設定スクリプトとテンプレートファイルを (一時ディレクトリに) 出" +"力します。設定スクリプト・テンプレートファイルを持つ、渡されたパッケージそれ" +"ぞれに対し、以下の形式で 1 行ずつ出力します。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-extracttemplates.1.xml:48 +msgid "package version template-file config-script" +msgstr "package version template-file config-script" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-extracttemplates.1.xml:49 +msgid "" +"template-file and config-script are written to the temporary directory " +"specified by the -t or --tempdir (<literal>APT::ExtractTemplates::TempDir</" +"literal>) directory, with filenames of the form <filename>package.template." +"XXXX</filename> and <filename>package.config.XXXX</filename>" +msgstr "" +"テンプレートファイルや、設定スクリプトは、-t や --tempdir で指定した一時ディ" +"レクトリ (<literal>APT::ExtractTemplates::TempDir</literal>) に書き出され、" +"ファイル名は、<filename>package.template.XXXX</filename> や " +"<filename>package.config.XXXX</filename> と言った形になります。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-extracttemplates.1.xml:59 apt-get.8.xml:468 +msgid "<option>-t</option>" +msgstr "<option>-t</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-extracttemplates.1.xml:59 +msgid "<option>--tempdir</option>" +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:61 +msgid "" +"Temporary directory in which to write extracted debconf template files and " +"config scripts Configuration Item: <literal>APT::ExtractTemplates::TempDir</" +"literal>" +msgstr "" +"抽出した debconf テンプレートファイルや設定スクリプトを書き出す一時ディレクト" +"リ。設定項目 - <literal>APT::ExtractTemplates::TempDir</literal>" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-extracttemplates.1.xml:78 +msgid "" +"<command>apt-extracttemplates</command> returns zero on normal operation, " +"decimal 100 on error." +msgstr "" +"<command>apt-extracttemplates</command> は正常終了時に 0 を返します。エラー時" +"には十進の 100 を返します。" + +# type: Content of: <refentry><refnamediv><refname> +#. type: Content of: <refentry><refnamediv><refname> +#: apt-ftparchive.1.xml:22 apt-ftparchive.1.xml:28 +msgid "apt-ftparchive" +msgstr "apt-ftparchive" + +# type: Content of: <refentry><refnamediv><refpurpose> +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-ftparchive.1.xml:29 +msgid "Utility to generate index files" +msgstr "インデックスファイル生成ユーティリティ" + +# type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-ftparchive.1.xml:35 +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>" +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</" +"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>" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:55 +msgid "" +"<command>apt-ftparchive</command> is the command line tool that generates " +"the index files that APT uses to access a distribution source. The index " +"files should be generated on the origin site based on the content of that " +"site." +msgstr "" +"<command>apt-ftparchive</command> は、APT が取得元にアクセスするのに必要な、" +"インデックスファイルを生成するコマンドラインツールです。インデックスファイル" +"は、元のサイトの内容に基づき生成されるべきです。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:59 +msgid "" +"<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; " +"program, incorporating its entire functionality via the <literal>packages</" +"literal> command. It also contains a contents file generator, " +"<literal>contents</literal>, and an elaborate means to 'script' the " +"generation process for a complete archive." +msgstr "" +"<command>apt-ftparchive</command> は、&dpkg-scanpackages; プログラムのスー" +"パーセットで、<literal>packages</literal> コマンド経由で機能全体を取り込んで" +"います。また、contents ファイルジェネレータ <literal>contents</literal> と完" +"全なアーカイブの生成プロセス「スクリプト」である綿密な手段を含んでいます。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:65 +msgid "" +"Internally <command>apt-ftparchive</command> can make use of binary " +"databases to cache the contents of a .deb file and it does not rely on any " +"external programs aside from &gzip;. When doing a full generate it " +"automatically performs file-change checks and builds the desired compressed " +"output files." +msgstr "" +"本質的に <command>apt-ftparchive</command> は、.deb ファイルの内容をキャッ" +"シュするのにバイナリデータベースを使用できます。また、&gzip; 以外のいかなる外" +"部プログラムにも依存しません。すべて生成する際には、ファイル変更点の検出と希" +"望した圧縮出力ファイルの作成を自動的に実行します。" + +# type: <tag></tag> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:74 +msgid "packages" +msgstr "packages" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:76 +msgid "" +"The packages command generates a package file from a directory tree. It " +"takes the given directory and recursively searches it for .deb files, " +"emitting a package record to stdout for each. This command is approximately " +"equivalent to &dpkg-scanpackages;." +msgstr "" +"packages コマンドは、ディレクトリツリーからパッケージファイルを生成します。与" +"えられたディレクトリから再帰検索し、.deb ファイルを取得します。またパッケージ" +"レコードを標準出力にそれぞれ出力します。このコマンドは、&dpkg-scanpackages; " +"とほぼ同じです。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:81 apt-ftparchive.1.xml:105 +msgid "" +"The option <option>--db</option> can be used to specify a binary caching DB." +msgstr "<option>--db</option> オプションで、キャッシュ DB を指定できます。" + +# type: Content of: <refentry><refnamediv><refname> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:84 +msgid "sources" +msgstr "sources" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:86 +msgid "" +"The <literal>sources</literal> command generates a source index file from a " +"directory tree. It takes the given directory and recursively searches it " +"for .dsc files, emitting a source record to stdout for each. This command is " +"approximately equivalent to &dpkg-scansources;." +msgstr "" +"<literal>sources</literal> コマンドは、ディレクトリツリーからソースインデック" +"スファイルを生成します。与えられたディレクトリから再帰検索し、.dsc ファイルを" +"取得します。またソースレコードを標準出力にそれぞれ出力します。このコマンド" +"は、&dpkg-scansources; とほぼ同じです。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:91 +msgid "" +"If an override file is specified then a source override file will be looked " +"for with an extension of .src. The --source-override option can be used to " +"change the source override file that will be used." +msgstr "" +"override ファイルを指定した場合、src 拡張子がついたソースオーバーライドファイ" +"ルを探します。使用するソースオーバーライドファイルを変更するのには、--source-" +"override オプションを使用します。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:96 +msgid "contents" +msgstr "contents" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:98 +msgid "" +"The <literal>contents</literal> command generates a contents file from a " +"directory tree. It takes the given directory and recursively searches it " +"for .deb files, and reads the file list from each file. It then sorts and " +"writes to stdout the list of files matched to packages. Directories are not " +"written to the output. If multiple packages own the same file then each " +"package is separated by a comma in the output." +msgstr "" +"<literal>contents</literal> コマンドは、ディレクトリツリーからコンテンツファ" +"イルを生成します。与えられたディレクトリから再帰検索し、.deb ファイルを取得し" +"ます。またファイルごとにファイル一覧を読み取ります。その後、パッケージに対応" +"するファイル一覧を標準出力にソートして出力します。ディレクトリは出力に含まれ" +"ません。複数のパッケージが同じファイルを持つ場合、パッケージ名をカンマ区切り" +"で出力します。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:108 +msgid "release" +msgstr "release" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:110 +msgid "" +"The <literal>release</literal> command generates a Release file from a " +"directory tree. It recursively searches the given directory for Packages, " +"Packages.gz, Packages.bz2, Sources, Sources.gz, Sources.bz2, Release and " +"md5sum.txt files. It then writes to stdout a Release file containing an MD5 " +"digest and SHA1 digest for each file." +msgstr "" +"<literal>release</literal> コマンドは、ディレクトリツリーから Release ファイ" +"ルを生成します。与えられたディレクトリから、Packages, Packages.gz, Packages." +"bz2, Sources, Sources.gz, Sources.bz2, Release, md5sum.txt といったファイルを" +"再帰検索します。その後、ファイルごとの 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:117 +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>." +msgstr "" +"Release ファイルの追加メタデータフィールドの値は、<literal>APT::FTPArchive::" +"Release</literal> 以下の相当する値 (例: <literal>APT::FTPArchive::Release::" +"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> です。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:127 +msgid "generate" +msgstr "generate" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:129 +msgid "" +"The <literal>generate</literal> command is designed to be runnable from a " +"cron script and builds indexes according to the given config file. The " +"config language provides a flexible means of specifying which index files " +"are built from which directories, as well as providing a simple means of " +"maintaining the required settings." +msgstr "" +"<literal>generate</literal> コマンドは、cron スクリプトから実行できるよう設計" +"されており、与えられた設定ファイルに従ってインデックスを生成します。設定言語" +"は、必要な設定を維持する簡単な方法を提供すると共に、インデックスファイルをど" +"のディレクトリから作成するかを指定する、柔軟な方法を提供します。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:136 apt-get.8.xml:272 +msgid "clean" +msgstr "clean" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:138 +msgid "" +"The <literal>clean</literal> command tidies the databases used by the given " +"configuration file by removing any records that are no longer necessary." +msgstr "" +"<literal>clean</literal> コマンドは、設定ファイルで与えられたデータベースを、" +"もう必要ないレコードを削除して整理します。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:144 +msgid "The Generate Configuration" +msgstr "Generate 設定" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:146 +msgid "" +"The <literal>generate</literal> command uses a configuration file to " +"describe the archives that are going to be generated. It follows the typical " +"ISC configuration format as seen in ISC tools like bind 8 and dhcpd. &apt-" +"conf; contains a description of the syntax. Note that the generate " +"configuration is parsed in sectional manner, but &apt-conf; is parsed in a " +"tree manner. This only effects how the scope tag is handled." +msgstr "" +"<literal>generate</literal> コマンドは、生成するアーカイブに関する記述をした" +"設定ファイルを使用します。設定ファイルは、bind 8 や dhcpd といった ISC ツール" +"に見られるような、ISC 設定フォーマットに従います。&apt-conf; に、文法の説明が" +"あります。Generate 設定はセクション法で解析しますが、&apt-conf; はツリー法で" +"解析するのに注意してください。これはスコープタグの扱い方に違いがあるだけで" +"す。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:154 +msgid "" +"The generate configuration has 4 separate sections, each described below." +msgstr "" +"generate 設定には 4 個の独立したセクションがあります。以下それぞれ説明しま" +"す。" + +# type: Content of: <refentry><refsect1><refsect2><title> +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:156 +msgid "Dir Section" +msgstr "Dir セクション" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:158 +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." +msgstr "" +"<literal>Dir</literal> セクションは、生成プロセスで必要なファイルを配置するた" +"めの、標準ディレクトリを定義します。このディレクトリは、完全な絶対パスを生成" +"するため、後のセクションで定義される相対パスの前に結合します。" + +# type: <tag></tag> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:163 +msgid "ArchiveDir" +msgstr "ArchiveDir" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:165 +msgid "" +"Specifies the root of the FTP archive, in a standard Debian configuration " +"this is the directory that contains the <filename>ls-LR</filename> and dist " +"nodes." +msgstr "" +"FTP アーカイブのルートを指定します。標準的な Debian 設定では、このディレクト" +"リには <filename>ls-LR</filename> と dist ノードがあります。" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:170 +msgid "OverrideDir" +msgstr "OverrideDir" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:172 +msgid "Specifies the location of the override files." +msgstr "オーバーライドファイルの場所を指定します。" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:175 +msgid "CacheDir" +msgstr "CacheDir" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:177 +msgid "Specifies the location of the cache files" +msgstr "キャッシュファイルの場所を指定します。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:180 +msgid "FileListDir" +msgstr "FileListDir" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:182 +msgid "" +"Specifies the location of the file list files, if the <literal>FileList</" +"literal> setting is used below." +msgstr "" +"<literal>FileList</literal> 設定が以下で使用されている場合、ファイルリスト" +"ファイルの場所を指定します。" + +# type: Content of: <refentry><refsect1><refsect2><title> +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:188 +msgid "Default Section" +msgstr "Default セクション" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:190 +msgid "" +"The <literal>Default</literal> section specifies default values, and " +"settings that control the operation of the generator. Other sections may " +"override these defaults with a per-section setting." +msgstr "" +"<literal>Default</literal> セクションではデフォルト値を指定します。また、生成" +"器の動作を制御する設定も行います。他のセクションでは、ここにあるデフォルト値" +"を、セクションごとの設定で上書きします。" + +# type: <tag></tag> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:194 +msgid "Packages::Compress" +msgstr "Packages::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:196 +msgid "" +"Sets the default compression schemes to use for the Package index files. It " +"is a string that contains a space separated list of at least one of: '.' (no " +"compression), 'gzip' and 'bzip2'. The default for all compression schemes is " +"'. gzip'." +msgstr "" +"Package インデックスファイルのデフォルトの圧縮方法を設定します。少なくともひ" +"とつは '.' (圧縮なし), 'gzip', 'bzip2' が入る、空白区切りの文字列です。圧縮方" +"法のデフォルトはすべて '. gzip' です。" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:202 +msgid "Packages::Extensions" +msgstr "Packages::Extensions" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:204 +msgid "" +"Sets the default list of file extensions that are package files. This " +"defaults to '.deb'." +msgstr "" +"パッケージファイル拡張子のデフォルト値を列挙します。このデフォルト値は '." +"deb' です。" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:208 +msgid "Sources::Compress" +msgstr "Sources::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:210 +msgid "" +"This is similar to <literal>Packages::Compress</literal> except that it " +"controls the compression for the Sources files." +msgstr "" +"<literal>Packages::Compress</literal> と同様に、Sources ファイルの圧縮方法を" +"指定します。" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:214 +msgid "Sources::Extensions" +msgstr "Sources::Extensions" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:216 +msgid "" +"Sets the default list of file extensions that are source files. This " +"defaults to '.dsc'." +msgstr "" +"ソースファイル拡張子のデフォルト値を列挙します。このデフォルト値は '.dsc' で" +"す。" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:220 +msgid "Contents::Compress" +msgstr "Contents::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:222 +msgid "" +"This is similar to <literal>Packages::Compress</literal> except that it " +"controls the compression for the Contents files." +msgstr "" +"<literal>Packages::Compress</literal> と同様に、Contents ファイルの圧縮方法を" +"指定します。" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:226 +msgid "DeLinkLimit" +msgstr "DeLinkLimit" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:228 +msgid "" +"Specifies the number of kilobytes to delink (and replace with hard links) " +"per run. This is used in conjunction with the per-section <literal>External-" +"Links</literal> setting." +msgstr "" +"実行するごとに delink (及びハードリンクの置き換え) する量を、キロバイト単位で" +"指定します。セクションごとの <literal>External-Links</literal> 設定と合わせて" +"使います。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:233 +msgid "FileMode" +msgstr "FileMode" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:235 +msgid "" +"Specifies the mode of all created index files. It defaults to 0644. All " +"index files are set to this mode with no regard to the umask." +msgstr "" +"作成したインデックスファイルのモードを指定します。デフォルトは 0644 です。全" +"インデックスファイルは、umask を無視してこのモードを使用します。" + +# type: Content of: <refentry><refsect1><refsect2><title> +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:242 +msgid "TreeDefault Section" +msgstr "TreeDefault セクション" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:244 +msgid "" +"Sets defaults specific to <literal>Tree</literal> sections. All of these " +"variables are substitution variables and have the strings $(DIST), " +"$(SECTION) and $(ARCH) replaced with their respective values." +msgstr "" +"特定の <literal>Tree</literal> セクションのデフォルトを設定します。これらの変" +"数はすべて置換変数であり、文字列 $(DIST), $(SECTION), $(ARCH) をそれぞれの値" +"に展開します。" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:249 +msgid "MaxContentsChange" +msgstr "MaxContentsChange" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:251 +msgid "" +"Sets the number of kilobytes of contents files that are generated each day. " +"The contents files are round-robined so that over several days they will all " +"be rebuilt." +msgstr "" +"日毎に生成する contents ファイルをキロバイト単位で設定します。contents ファイ" +"ルをラウンドロビンし、数日経つとすべて再生成します。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:256 +msgid "ContentsAge" +msgstr "ContentsAge" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:258 +msgid "" +"Controls the number of days a contents file is allowed to be checked without " +"changing. If this limit is passed the mtime of the contents file is updated. " +"This case can occur if the package file is changed in such a way that does " +"not result in a new contents file [override edit for instance]. A hold off " +"is allowed in hopes that new .debs will be installed, requiring a new file " +"anyhow. The default is 10, the units are in days." +msgstr "" +"変更がない contents ファイルをチェックする日数を指定します。この制限を越えた " +"contents ファイルの mtime を、更新します。パッケージファイルが変更されても、" +"[例えば上書き編集で] contents ファイルが更新されないような場合、こういったこ" +"とが発生します。新しい .deb ファイルをインストールしたい場合、保留を解除で" +"き、少なくとも新しいファイルが必要です。デフォルトは 10 で、単位は日です。" + +# type: Content of: <refentry><refsect1><refsect2><title> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:267 +msgid "Directory" +msgstr "Directory" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:269 +msgid "" +"Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/" +"$(SECTION)/binary-$(ARCH)/</filename>" +msgstr "" +".deb ディレクトリツリーの先頭を設定します。デフォルトは <filename>$(DIST)/" +"$(SECTION)/binary-$(ARCH)/</filename> です。" + +# type: Content of: <refentry><refsect1><refsect2><title> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:273 +msgid "SrcDirectory" +msgstr "SrcDirectory" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:275 +msgid "" +"Sets the top of the source package directory tree. Defaults to <filename>" +"$(DIST)/$(SECTION)/source/</filename>" +msgstr "" +"ソースパッケージディレクトリツリーの先頭を設定します。デフォルトは <filename>" +"$(DIST)/$(SECTION)/source/</filename> です。" + +# type: <tag></tag> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:279 apt-ftparchive.1.xml:405 +msgid "Packages" +msgstr "Packages" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:281 +msgid "" +"Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" +"binary-$(ARCH)/Packages</filename>" +msgstr "" +"Packages ファイルの出力先を設定します。デフォルトは <filename>$(DIST)/" +"$(SECTION)/binary-$(ARCH)/Packages</filename> です。" + +# type: Content of: <refentry><refnamediv><refname> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:285 apt-ftparchive.1.xml:410 +msgid "Sources" +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:287 +msgid "" +"Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" +"source/Sources</filename>" +msgstr "" +"Packages ファイルの出力先を設定します。デフォルトは <filename>$(DIST)/" +"$(SECTION)/source/Sources</filename> です。" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:291 +msgid "InternalPrefix" +msgstr "InternalPrefix" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:293 +msgid "" +"Sets the path prefix that causes a symlink to be considered an internal link " +"instead of an external link. Defaults to <filename>$(DIST)/$(SECTION)/</" +"filename>" +msgstr "" +"外部リンクではなく、内部リンクと見なす判断材料となる、パスのプレフィックスを" +"設定します。デフォルトは、<filename>$(DIST)/$(SECTION)/</filename> です。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:298 apt-ftparchive.1.xml:416 +msgid "Contents" +msgstr "Contents" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:300 +msgid "" +"Sets the output Contents file. Defaults to <filename>$(DIST)/Contents-$(ARCH)" +"</filename>. If this setting causes multiple Packages files to map onto a " +"single Contents file (such as the default) then <command>apt-ftparchive</" +"command> will integrate those package files together automatically." +msgstr "" +"Contents ファイルの出力先を設定します。デフォルトは、<filename>$(DIST)/" +"Contents-$(ARCH)</filename> です。複数の Packages ファイルをひとつの " +"Contents ファイルにまとめられる設定 (デフォルト) の場合、<command>apt-" +"ftparchive</command> は自動でパッケージファイルをまとめます。" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:307 +msgid "Contents::Header" +msgstr "Contents::Header" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:309 +msgid "Sets header file to prepend to the contents output." +msgstr "contents の出力に付けるヘッダファイルを設定します。" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:312 apt-ftparchive.1.xml:441 +msgid "BinCacheDB" +msgstr "BinCacheDB" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:314 +msgid "" +"Sets the binary cache database to use for this section. Multiple sections " +"can share the same database." +msgstr "" +"このセクションで使用するバイナリキャッシュデータベースを設定します。複数のセ" +"クションで同じデータベースを共有できます。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:318 +msgid "FileList" +msgstr "FileList" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:320 +msgid "" +"Specifies that instead of walking the directory tree, <command>apt-" +"ftparchive</command> should read the list of files from the given file. " +"Relative files names are prefixed with the archive directory." +msgstr "" +"ディレクトリツリーを走査する代わりに、<command>apt-ftparchive</command> が読" +"み込むファイル一覧ファイルを指定します。相対ファイル名は、アーカイブディレク" +"トリが先頭につきます。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:325 +msgid "SourceFileList" +msgstr "SourceFileList" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:327 +msgid "" +"Specifies that instead of walking the directory tree, <command>apt-" +"ftparchive</command> should read the list of files from the given file. " +"Relative files names are prefixed with the archive directory. This is used " +"when processing source indexes." +msgstr "" +"ディレクトリツリーを走査する代わりに、<command>apt-ftparchive</command> が読" +"み込むファイル一覧ファイルを指定します。相対ファイル名は、アーカイブディレク" +"トリが先頭につきます。ソースインデックスを処理する際に使用します。" + +# type: Content of: <refentry><refsect1><refsect2><title> +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:335 +msgid "Tree Section" +msgstr "Tree セクション" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:337 +msgid "" +"The <literal>Tree</literal> section defines a standard Debian file tree " +"which consists of a base directory, then multiple sections in that base " +"directory and finally multiple Architectures in each section. The exact " +"pathing used is defined by the <literal>Directory</literal> substitution " +"variable." +msgstr "" +"<literal>Tree</literal> セクションでは、ベースディレクトリからの標準 Debian " +"ファイルツリー、ベースディレクトリの複数のセクション、最終的にはセクションご" +"との複数のアーキテクチャを定義します。使用する正確なパスは、" +"<literal>Directory</literal> 変数で定義されます。" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:342 +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>." +msgstr "" +"<literal>Tree</literal> セクションは、<literal>$(DIST)</literal> 変数で設定さ" +"れているスコープタグをとり、ツリーのルート (<literal>ArchiveDir</literal>が先" +"頭につくパス) を定義します。通常、この設定は <filename>dists/woody</" +"filename> のようになります。" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:347 +msgid "" +"All of the settings defined in the <literal>TreeDefault</literal> section " +"can be use in a <literal>Tree</literal> section as well as three new " +"variables." +msgstr "" +"<literal>TreeDefault</literal> セクションで定義される設定はすべて、3 個の新し" +"い変数と同様に、<literal>Tree</literal> セクションで使用できます。" + +# type: Content of: <refentry><refsect1><refsect2><para><informalexample> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:350 +msgid "" +"When processing a <literal>Tree</literal> section <command>apt-ftparchive</" +"command> performs an operation similar to:" +msgstr "" +"<literal>Tree</literal> セクションを処理する際、<command>apt-ftparchive</" +"command> は以下のような操作を行います。" + +# type: Content of: <refentry><refsect1><refsect2><para><informalexample><programlisting> +#. type: Content of: <refentry><refsect1><refsect2><para><informalexample><programlisting> +#: apt-ftparchive.1.xml:353 +#, 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 Sections do \n" +" for j in Architectures do\n" +" Generate for DIST=scope SECTION=i ARCH=j\n" + +# type: Content of: <refentry><refsect1><refsect2><title> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:359 +msgid "Sections" +msgstr "Sections" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:361 +msgid "" +"This is a space separated list of sections which appear under the " +"distribution, typically this is something like <literal>main contrib non-" +"free</literal>" +msgstr "" +"distribution 以下に現れるセクションを、空白区切りで指定したリストです。通常、" +"<literal>main contrib non-free</literal>のようになります。" + +# type: <tag></tag> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:366 +msgid "Architectures" +msgstr "Architectures" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:368 +msgid "" +"This is a space separated list of all the architectures that appear under " +"search section. The special architecture 'source' is used to indicate that " +"this tree has a source archive." +msgstr "" +"search セクション以下に現れるアーキテクチャを、空白区切りで指定したリストで" +"す。特殊アーキテクチャ 'source' は、ソースアーカイブのツリーであることを示し" +"ます。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:373 apt-ftparchive.1.xml:421 +msgid "BinOverride" +msgstr "BinOverride" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:375 +msgid "" +"Sets the binary override file. The override file contains section, priority " +"and maintainer address information." +msgstr "" +"バイナリオーバーライドファイルを設定します。このオーバーライドファイルには、" +"セクション、優先度、メンテナのアドレスといった情報が含まれています。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:379 apt-ftparchive.1.xml:426 +msgid "SrcOverride" +msgstr "SrcOverride" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:381 +msgid "" +"Sets the source override file. The override file contains section " +"information." +msgstr "" +"ソースオーバーライドファイルを設定します。このオーバーライドファイルには、セ" +"クションの情報が含まれています。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:385 apt-ftparchive.1.xml:431 +msgid "ExtraOverride" +msgstr "ExtraOverride" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:387 apt-ftparchive.1.xml:433 +msgid "Sets the binary extra override file." +msgstr "バイナリ特別オーバーライドファイルを設定します。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:390 apt-ftparchive.1.xml:436 +msgid "SrcExtraOverride" +msgstr "SrcExtraOverride" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:392 apt-ftparchive.1.xml:438 +msgid "Sets the source extra override file." +msgstr "ソース特別オーバーライドファイルを設定します。" + +# type: Content of: <refentry><refsect1><refsect2><title> +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:397 +msgid "BinDirectory Section" +msgstr "BinDirectory セクション" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:399 +msgid "" +"The <literal>bindirectory</literal> section defines a binary directory tree " +"with no special structure. The scope tag specifies the location of the " +"binary directory and the settings are similar to the <literal>Tree</literal> " +"section with no substitution variables or <literal>Section</" +"literal><literal>Architecture</literal> settings." +msgstr "" +"<literal>bindirectory</literal> セクションでは、特殊な構造を持たないバイナリ" +"ディレクトリツリーを定義します。スコープタグはバイナリディレクトリの場所を指" +"定し、設定は変数展開のない <literal>Tree</literal> セクションや " +"<literal>Section</literal><literal>Architecture</literal> 設定に似ています。" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:407 +msgid "Sets the Packages file output." +msgstr "Packages ファイルの出力先を設定します。" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:412 +msgid "" +"Sets the Sources file output. At least one of <literal>Packages</literal> or " +"<literal>Sources</literal> is required." +msgstr "" +"Sources ファイルの出力先を設定します。少なくとも <literal>Packages</literal> " +"や <literal>SrcPackages</literal> は設定されていなければなりません。" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:418 +msgid "Sets the Contents file output. (optional)" +msgstr "Contents ファイルの出力先を設定します。(オプション)" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:423 +msgid "Sets the binary override file." +msgstr "バイナリオーバーライドファイルを設定します。" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:428 +msgid "Sets the source override file." +msgstr "ソースオーバーライドファイルを設定します。" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:443 +msgid "Sets the cache DB." +msgstr "キャッシュ DB を設定します。" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:446 +msgid "PathPrefix" +msgstr "PathPrefix" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:448 +msgid "Appends a path to all the output paths." +msgstr "全出力パスに付加するパス。" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:451 +msgid "FileList, SourceFileList" +msgstr "FileList, SourceFileList" + +# type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:453 +msgid "Specifies the file list file." +msgstr "ファイル一覧ファイルを指定します。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:460 +msgid "The Binary Override File" +msgstr "バイナリオーバーライドファイル" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:461 +msgid "" +"The binary override file is fully compatible with &dpkg-scanpackages;. It " +"contains 4 fields separated by spaces. The first field is the package name, " +"the second is the priority to force that package to, the third is the the " +"section to force that package to and the final field is the maintainer " +"permutation field." +msgstr "" +"バイナリオーバーライドファイルは、&dpkg-scanpackages; と完全に互換性がありま" +"す。ここには、空白区切りでフィールドが 4 個あります。先頭のフィールドはパッ" +"ケージ名、2 番目のフィールドはパッケージに強制する優先度、3 番目のフィールド" +"はパッケージに強制するセクション、最後のフィールドはメンテナ順列フィールドで" +"す。" + +#. type: Content of: <refentry><refsect1><para><literallayout> +#: apt-ftparchive.1.xml:467 +#, no-wrap +msgid "old [// oldn]* => new" +msgstr "old [// oldn]* => new" + +#. type: Content of: <refentry><refsect1><para><literallayout> +#: apt-ftparchive.1.xml:469 +#, no-wrap +msgid "new" +msgstr "new" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:466 +msgid "" +"The general form of the maintainer field is: <placeholder type=" +"\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" " +"id=\"1\"/> The first form allows a double-slash separated list of old email " +"addresses to be specified. If any of those are found then new is substituted " +"for the maintainer field. The second form unconditionally substitutes the " +"maintainer field." +msgstr "" +"メンテナフィールドの一般的な形は以下のようになります。<placeholder type=" +"\"literallayout\" id=\"0\"/> また単純に以下のようにもなります。<placeholder " +"type=\"literallayout\" id=\"1\"/>最初の形式は、// で区切られた古い email アド" +"レスのリストを許可します。この形式がある場合は、メンテナフィールドになるよう " +"new に置換してください。2 番目の形式は無条件にメンテナフィールドに置換しま" +"す。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:477 +msgid "The Source Override File" +msgstr "ソースオーバーライドファイル" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:479 +msgid "" +"The source override file is fully compatible with &dpkg-scansources;. It " +"contains 2 fields separated by spaces. The first fields is the source " +"package name, the second is the section to assign it." +msgstr "" +"ソースオーバーライドファイルは、&dpkg-scansources; と完全に互換性があります。" +"ここには、空白区切りでフィールドが 2 個あります。先頭のフィールドはソースパッ" +"ケージ名、2 番目のフィールドは割り当てるセクションです。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:484 +msgid "The Extra Override File" +msgstr "特別オーバーライドファイル" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:486 +msgid "" +"The extra override file allows any arbitrary tag to be added or replaced in " +"the output. It has 3 columns, the first is the package, the second is the " +"tag and the remainder of the line is the new value." +msgstr "" +"特別オーバーライドファイルは、出力中に任意のタグを追加・置換できるようにしま" +"す。3 列からなり、先頭はパッケージ、2番目はタグ、残りは新しい値です。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:495 +msgid "<option>--md5</option>" +msgstr "<option>--md5</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:497 +msgid "" +"Generate MD5 sums. This defaults to on, when turned off the generated index " +"files will not have MD5Sum fields where possible. Configuration Item: " +"<literal>APT::FTPArchive::MD5</literal>" +msgstr "" +"MD5 sum を生成します。デフォルトで on になっており、off にすると生成したイン" +"デックスファイルに MD5Sum フィールドがありません。設定項目 - <literal>APT::" +"FTPArchive::MD5</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:502 +msgid "<option>--db</option>" +msgstr "<option>--db</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:504 +msgid "" +"Use a binary caching DB. This has no effect on the generate command. " +"Configuration Item: <literal>APT::FTPArchive::DB</literal>." +msgstr "" +"バイナリキャッシュ DB を使用します。generate コマンドには影響しません。設定項" +"目 - <literal>APT::FTPArchive::DB</literal>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:510 +msgid "" +"Quiet; produces output suitable for logging, omitting progress indicators. " +"More q's will produce more quiet up to a maximum of 2. You can also use " +"<option>-q=#</option> to set the quiet level, overriding the configuration " +"file. Configuration Item: <literal>quiet</literal>." +msgstr "" +"静粛 - 進捗表示を省略し、ログをとるのに便利な出力を行います。最大 2 つまで q " +"を重ねることでより静粛にできます。また、<option>-q=#</option> のように静粛レ" +"ベルを指定して、設定ファイルを上書きすることもできます。設定項目 - " +"<literal>quiet</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:516 +msgid "<option>--delink</option>" +msgstr "<option>--delink</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:518 +msgid "" +"Perform Delinking. If the <literal>External-Links</literal> setting is used " +"then this option actually enables delinking of the files. It defaults to on " +"and can be turned off with <option>--no-delink</option>. Configuration " +"Item: <literal>APT::FTPArchive::DeLinkAct</literal>." +msgstr "" +"Delink を実行します。<literal>External-Links</literal> 設定を使用している場" +"合、このオプションはファイルの delink を有効にします。デフォルトは on で、" +"off にするには <option>--no-delink</option> としてください。設定項目 - " +"<literal>APT::FTPArchive::DeLinkAct</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:524 +msgid "<option>--contents</option>" +msgstr "<option>--contents</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:526 +msgid "" +"Perform contents generation. When this option is set and package indexes are " +"being generated with a cache DB then the file listing will also be extracted " +"and stored in the DB for later use. When using the generate command this " +"option also allows the creation of any Contents files. The default is on. " +"Configuration Item: <literal>APT::FTPArchive::Contents</literal>." +msgstr "" +"contents の生成を行います。このオプションを指定し、パッケージインデックスを" +"キャッシュ DB と共に生成する際、ファイルリストを後で使用するように、抽出し " +"DB に格納します。generate コマンドを使用する際、このオプションでいずれの " +"Contents ファイルも作成できます。デフォルトは on です。設定項目 - " +"<literal>APT::FTPArchive::Contents</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:534 +msgid "<option>--source-override</option>" +msgstr "<option>--source-override</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:536 +msgid "" +"Select the source override file to use with the <literal>sources</literal> " +"command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</" +"literal>." +msgstr "" +"<literal>sources</literal> コマンドで使用する、ソースオーバーライドファイルを" +"選択します。設定項目 - <literal>APT::FTPArchive::SourceOverride</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:540 +msgid "<option>--readonly</option>" +msgstr "<option>--readonly</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:542 +msgid "" +"Make the caching databases read only. Configuration Item: <literal>APT::" +"FTPArchive::ReadOnlyDB</literal>." +msgstr "" +"キャッシュデータベースを読み取り専用にします。設定項目 - <literal>APT::" +"FTPArchive::ReadOnlyDB</literal>" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:551 apt.conf.5.xml:818 apt_preferences.5.xml:460 +#: sources.list.5.xml:180 +msgid "Examples" +msgstr "サンプル" + +# type: Content of: <refentry><refsect1><para><programlisting> +#. type: Content of: <refentry><refsect1><para><programlisting> +#: apt-ftparchive.1.xml:557 +#, 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" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:553 +msgid "" +"To create a compressed Packages file for a directory containing binary " +"packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" +msgstr "" +"バイナリパッケージ (.deb) があるディレクトリの Packages ファイルを生成するに" +"は、以下のようにします。<placeholder type=\"programlisting\" id=\"0\"/>" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:567 +msgid "" +"<command>apt-ftparchive</command> returns zero on normal operation, decimal " +"100 on error." +msgstr "" +"<command>apt-ftparchive</command> は正常終了時に 0 を返します。エラー時には十" +"進の 100 を返します。" + +#. The last update date +#. type: Content of: <refentry><refentryinfo> +#: apt-get.8.xml:13 +msgid "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>08 " +"November 2008</date>" +msgstr "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>08 " +"November 2008</date>" + +# type: Content of: <refentry><refnamediv><refname> +#. type: Content of: <refentry><refnamediv><refname> +#: apt-get.8.xml:22 apt-get.8.xml:28 +msgid "apt-get" +msgstr "apt-get" + +# type: Content of: <refentry><refnamediv><refpurpose> +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-get.8.xml:29 +msgid "APT package handling utility -- command-line interface" +msgstr "APT パッケージ操作ユーティリティ -- コマンドラインインターフェース" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-get.8.xml:35 +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>" +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 " +"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> +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:115 +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;." +msgstr "" +"<command>apt-get</command> は、パッケージを操作するコマンドラインツールで、" +"APT ライブラリを用いる他のツールのユーザ側「バックエンド」といえるものです。" +"「フロントエンド」インターフェースには、&dselect;, &aptitude;, &synaptic;, " +"&gnome-apt;, &wajig; などがあります。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:124 apt-key.8.xml:122 +msgid "update" +msgstr "update" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:125 +msgid "" +"<literal>update</literal> is used to resynchronize the package index files " +"from their sources. The indexes of available packages are fetched from the " +"location(s) specified in <filename>/etc/apt/sources.list</filename>. For " +"example, when using a Debian archive, this command retrieves and scans the " +"<filename>Packages.gz</filename> files, so that information about new and " +"updated packages is available. An <literal>update</literal> should always be " +"performed before an <literal>upgrade</literal> or <literal>dist-upgrade</" +"literal>. Please be aware that the overall progress meter will be incorrect " +"as the size of the package files cannot be known in advance." +msgstr "" +"<literal>update</literal>は、取得元からパッケージインデックスファイルの再同期" +"を行うのに使用します。利用可能なパッケージのインデックスは、<filename>/etc/" +"apt/sources.list</filename> に記述した場所から取得します。例えば Debian アー" +"カイブを利用する際、このコマンドが <filename>Packages.gz</filename> ファイル" +"を検索することで、新規または更新されたパッケージの情報が利用可能となります。" +"<literal>update</literal> は、<literal>upgrade</literal> や <literal>dist-" +"upgrade</literal> を行う前に常に実行してください。前もってパッケージファイル" +"のサイズを知ることができないため、全体の進捗メータは正しく表示されません。" + +# type: <tag></tag> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:136 +msgid "upgrade" +msgstr "upgrade" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:137 +msgid "" +"<literal>upgrade</literal> is used to install the newest versions of all " +"packages currently installed on the system from the sources enumerated in " +"<filename>/etc/apt/sources.list</filename>. Packages currently installed " +"with new versions available are retrieved and upgraded; under no " +"circumstances are currently installed packages removed, or packages not " +"already installed retrieved and installed. New versions of currently " +"installed packages that cannot be upgraded without changing the install " +"status of another package will be left at their current version. An " +"<literal>update</literal> must be performed first so that <command>apt-get</" +"command> knows that new versions of packages are available." +msgstr "" +"<literal>upgrade</literal> は、現在システムにインストールされている全パッケー" +"ジの最新バージョンを、<filename>/etc/apt/sources.list</filename> に列挙した取" +"得元からインストールするのに使用します。現在インストール中のパッケージに新し" +"いバージョンがあれば更新しますが、いかなる時も現在インストール中のパッケージ" +"の削除は行いません。対象のパッケージが、他のパッケージのインストール状態を変" +"更せずに更新できない場合は、現在のバージョンのままとなります。最初に " +"<literal>update</literal> を実行しておき、<command>apt-get</command> にパッ" +"ケージの新しいバージョンがあることを知らせる必要があります。" + +# type: <tag></tag> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:149 +msgid "dselect-upgrade" +msgstr "dselect-upgrade" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:150 +msgid "" +"<literal>dselect-upgrade</literal> is used in conjunction with the " +"traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</" +"literal> follows the changes made by &dselect; to the <literal>Status</" +"literal> field of available packages, and performs the actions necessary to " +"realize that state (for instance, the removal of old and the installation of " +"new packages)." +msgstr "" +"<literal>dselect-upgrade</literal> は、伝統的な Debian GNU/Linux パッケージ管" +"理フロントエンドの &dselect; と共に使用されます。<literal>dselect-upgrade</" +"literal> は、&dselect; で作られた利用可能パッケージの<literal>Status</" +"literal> フィールドの変更を追跡し、その状態を反映させるのに必要なアクションを" +"実行します。(例えば、古いパッケージの削除や新しいパッケージのインストールな" +"ど)" + +# type: <tag></tag> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:159 +msgid "dist-upgrade" +msgstr "dist-upgrade" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:160 +msgid "" +"<literal>dist-upgrade</literal> in addition to performing the function of " +"<literal>upgrade</literal>, also intelligently handles changing dependencies " +"with new versions of packages; <command>apt-get</command> has a \"smart\" " +"conflict resolution system, and it will attempt to upgrade the most " +"important packages at the expense of less important ones if necessary. So, " +"<literal>dist-upgrade</literal> command may remove some packages. The " +"<filename>/etc/apt/sources.list</filename> file contains a list of locations " +"from which to retrieve desired package files. See also &apt-preferences; " +"for a mechanism for overriding the general settings for individual packages." +msgstr "" +"<literal>dist-upgrade</literal> は、<literal>upgrade</literal> の機能に加え、" +"新バージョンのパッケージに対する依存関係の変更を知的に操作します。" +"<command>apt-get</command> は「洗練された」競合解決システムを持ち、必要とあら" +"ば比較的重要でないパッケージを犠牲にして、最重要パッケージの更新を試みます。" +"そのため <literal>dist-upgrade</literal> は、いくつかのパッケージを削除する可" +"能性があります。<filename>/etc/apt/sources.list</filename> ファイルには、必要" +"なパッケージファイルを検索する場所のリストが含まれています。特定のパッケージ" +"向けに、一般的な設定を上書きする機構については、&apt-preferences; をご覧くだ" +"さい。" + +# type: <tag></tag> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:172 +msgid "install" +msgstr "install" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:174 +msgid "" +"<literal>install</literal> is followed by one or more packages desired for " +"installation or upgrading. Each package is a package name, not a fully " +"qualified filename (for instance, in a Debian GNU/Linux system, libc6 would " +"be the argument provided, not <literal>libc6_1.9.6-2.deb</literal>). All " +"packages required by the package(s) specified for installation will also be " +"retrieved and installed. The <filename>/etc/apt/sources.list</filename> " +"file is used to locate the desired packages. If a hyphen is appended to the " +"package name (with no intervening space), the identified package will be " +"removed if it is installed. Similarly a plus sign can be used to designate " +"a package to install. These latter features may be used to override " +"decisions made by apt-get's conflict resolution system." +msgstr "" +"<literal>install</literal> の後には、インストールするパッケージを 1 つ以上指" +"定します。指定するパッケージは、完全なファイル名ではなくパッケージ名です (例" +"えば Debian GNU/Linux システムでは、<literal>libc6_1.9.6-2.deb</literal> では" +"なく libc6 を引数として与えます)。インストールするよう指定したすべてのパッ" +"ケージに対し、取得・インストールを行います。<filename>/etc/apt/sources.list</" +"filename> ファイルを、要求するパッケージの場所を特定するのに使用します。パッ" +"ケージ名の後ろに (空白を含まず) ハイフンが追加されている場合、そのパッケージ" +"がインストールされていれば削除します。同様に、インストールするパッケージを明" +"示するのにプラス記号も使用できます。この記号は apt-get の競合解決システムの判" +"断を上書きするのに利用される可能性があります。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:192 +msgid "" +"A specific version of a package can be selected for installation by " +"following the package name with an equals and the version of the package to " +"select. This will cause that version to be located and selected for install. " +"Alternatively a specific distribution can be selected by following the " +"package name with a slash and the version of the distribution or the Archive " +"name (stable, testing, unstable)." +msgstr "" +"パッケージにイコール記号とバージョンを続けることで、選択したバージョンのパッ" +"ケージをインストールすることができます。つまり、指定のバージョンのパッケージ" +"をインストールするように選択する、ということです。別の方法としては、ディスト" +"リビューションを特定するのに、パッケージ名に続けて、スラッシュとディストリ" +"ビューションのバージョンやアーカイブ名 (stable, testing, unstable) を記述でき" +"ます。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:199 +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:202 +msgid "" +"This is also the target to use if you want to upgrade one or more already-" +"installed packages without upgrading every package you have on your system. " +"Unlike the \"upgrade\" target, which installs the newest version of all " +"currently installed packages, \"install\" will install the newest version of " +"only the package(s) specified. Simply provide the name of the package(s) " +"you wish to upgrade, and if a newer version is available, it (and its " +"dependencies, as described above) will be downloaded and installed." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:213 +msgid "" +"Finally, the &apt-preferences; mechanism allows you to create an alternative " +"installation policy for individual packages." +msgstr "" +"最後に、&apt-preferences; 機構により、特定のパッケージに対するインストールポ" +"リシーを作成できます。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:217 +msgid "" +"If no package matches the given expression and the expression contains one " +"of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and " +"it is applied to all package names in the database. Any matches are then " +"installed (or removed). Note that matching is done by substring so 'lo.*' " +"matches 'how-lo' and 'lowest'. If this is undesired, anchor the regular " +"expression with a '^' or '$' character, or create a more specific regular " +"expression." +msgstr "" +"構文に '.', '?', '*' を含み、パッケージ名がマッチしなかった場合、POSIX 正規表" +"現であると見なし、データベース内の全パッケージ名に対して適用します。マッチし" +"たパッケージすべてがインストール(もしくは削除)されます。'lo.*' のような文字列" +"は、'how-lo' や 'lowest' にマッチすることに注意してください。そうしたくなけれ" +"ば、'^' や '$' を付けるか、もっと詳しい正規表現を指定してください。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:226 +msgid "remove" +msgstr "remove" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:227 +msgid "" +"<literal>remove</literal> is identical to <literal>install</literal> except " +"that packages are removed instead of installed. Note the removing a package " +"leaves its configuration files in system. If a plus sign is appended to the " +"package name (with no intervening space), the identified package will be " +"installed instead of removed." +msgstr "" +"<literal>remove</literal> は、パッケージが削除されることを除き、" +"<literal>install</literal> と同様です。削除されたパッケージの設定ファイルは、" +"システムに残ったままになることに注意してください。プラス記号がパッケージ名に " +"(間に空白を含まずに) 付加されると、識別されたパッケージを、削除ではなくインス" +"トールします。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:234 +msgid "purge" +msgstr "purge" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:235 +msgid "" +"<literal>purge</literal> is identical to <literal>remove</literal> except " +"that packages are removed and purged (any configuration files are deleted " +"too)." +msgstr "" +"パッケージが削除かつ完全削除 (すべての設定ファイルも削除) されるのを除き、" +"<literal>purge</literal> は <literal>remove</literal> と同じです。" + +# type: Content of: <refentry><refnamediv><refname> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:239 +msgid "source" +msgstr "source" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:240 +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." +msgstr "" +"<literal>source</literal> は、ソースパッケージを取得するのに <command>apt-" +"get</command> します。APT はどのソースパッケージを取得するか決定するよう、利" +"用可能なパッケージを検討します。その後、最新の利用可能なソースパッケージを見" +"つけ、カレントディレクトリへダウンロードします。バイナリパッケージとは別に " +"&sources-list; ファイルの<literal>deb-src</literal> 行から、ソースパッケージ" +"を追跡します。これは、インストールした (またはインストールできる) パッケージ" +"と、取得元を変えることができることを示しています。--compile オプションが指定" +"された場合、dpkg-buildpackage を用いてバイナリ .deb ファイルへコンパイルを行" +"います。--download-only の場合はソースパッケージを展開しません。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:251 +msgid "" +"A specific source version can be retrieved by postfixing the source name " +"with an equals and then the version to fetch, similar to the mechanism used " +"for the package files. This enables exact matching of the source package " +"name and version, implicitly enabling the <literal>APT::Get::Only-Source</" +"literal> option." +msgstr "" +"パッケージと同様に、ソース名の後ろにイコールと取得したいバージョンを置くと、" +"指定したバージョンのソースを取得できます。<literal>APT::Get::Only-Source</" +"literal> オプションが暗黙のうちに有効になっているため、ソースパッケージ名と" +"バージョンに厳密に一致させています。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:257 +msgid "" +"Note that source packages are not tracked like binary packages, they exist " +"only in the current directory and are similar to downloading source tar " +"balls." +msgstr "" +"tar ball はカレントディレクトリにのみダウンロードされ、カレントディレクトリに" +"展開されることに注意してください。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:262 +msgid "build-dep" +msgstr "build-dep" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:263 +msgid "" +"<literal>build-dep</literal> causes apt-get to install/remove packages in an " +"attempt to satisfy the build dependencies for a source package." +msgstr "" +"<literal>build-dep</literal> は、ソースパッケージの構築依存関係を満たすよう" +"に、パッケージのインストール・削除を行います。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:267 +msgid "check" +msgstr "check" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:268 +msgid "" +"<literal>check</literal> is a diagnostic tool; it updates the package cache " +"and checks for broken dependencies." +msgstr "" +"<literal>check</literal> は、パッケージキャッシュの更新や壊れた依存関係を" +"チェックする診断ツールです。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:273 +msgid "" +"<literal>clean</literal> clears out the local repository of retrieved " +"package files. It removes everything but the lock file from " +"<filename>&cachedir;/archives/</filename> and <filename>&cachedir;/archives/" +"partial/</filename>. When APT is used as a &dselect; method, <literal>clean</" +"literal> is run automatically. Those who do not use dselect will likely " +"want to run <literal>apt-get clean</literal> from time to time to free up " +"disk space." +msgstr "" +"<literal>clean</literal> は、取得したパッケージのローカルリポジトリを掃除しま" +"す。<filename>&cachedir;/archives/</filename> と <filename>&cachedir;/" +"archives/partial/</filename> からロックファイル以外すべて削除します。APT が " +"&dselect; から呼ばれるときには、自動的に <literal>clean</literal> が実行され" +"ます。dselectを使用しない場合は、ディスクスペースを解放するため、時々 " +"<literal>apt-get clean</literal> を実行したくなるでしょう。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:282 +msgid "autoclean" +msgstr "autoclean" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:283 +msgid "" +"Like <literal>clean</literal>, <literal>autoclean</literal> clears out the " +"local repository of retrieved package files. The difference is that it only " +"removes package files that can no longer be downloaded, and are largely " +"useless. This allows a cache to be maintained over a long period without it " +"growing out of control. The configuration option <literal>APT::Clean-" +"Installed</literal> will prevent installed packages from being erased if it " +"is set to off." +msgstr "" +"<literal>clean</literal> と同様に、<literal>autoclean</literal> は取得した" +"パッケージのローカルリポジトリを掃除します。違いは、もうダウンロードされるこ" +"とがないパッケージファイルや、ほとんど不要なパッケージファイルのみを削除する" +"ことです。このため、長い期間、キャッシュが管理できずに肥大化することなく、維" +"持することができます。設定オプション <literal>APT::Clean-Installed</literal> " +"に off をセットしていれば、インストール済のパッケージファイルが削除されるのを" +"防げます。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:292 +msgid "autoremove" +msgstr "autoremove" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:293 +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." +msgstr "" +"<literal>autoremove</literal> は、依存関係を満たすために自動的にインストール" +"され、もう必要なくなったパッケージを削除するのに使用します。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:303 apt-get.8.xml:409 +msgid "<option>--no-install-recommends</option>" +msgstr "<option>--no-install-recommends</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:304 +msgid "" +"Do not consider recommended packages as a dependency for installing. " +"Configuration Item: <literal>APT::Install-Recommends</literal>." +msgstr "" +"「推奨」パッケージをインストールする依存関係と見なしません。設定項目 - " +"<literal>APT::Install-Recommends</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:308 +msgid "<option>--download-only</option>" +msgstr "<option>--download-only</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:309 +msgid "" +"Download only; package files are only retrieved, not unpacked or installed. " +"Configuration Item: <literal>APT::Get::Download-Only</literal>." +msgstr "" +"ダウンロードのみ - パッケージファイルの取得のみを行い、展開・インストールを行" +"いません。設定項目 - <literal>APT::Get::Download-Only</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:313 +msgid "<option>--fix-broken</option>" +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:314 +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>." +msgstr "" +"修復 - 依存関係が壊れたシステムの修正を試みます。このオプションを install や " +"remove と一緒に使うときは、パッケージを指定しなくてもかまいません。どのパッ" +"ケージを指定しても、完全に問題を解決します。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:327 +msgid "<option>--ignore-missing</option>" +msgstr "<option>--ignore-missing</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:328 +msgid "<option>--fix-missing</option>" +msgstr "<option>--fix-missing</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:329 +msgid "" +"Ignore missing packages; If packages cannot be retrieved or fail the " +"integrity check after retrieval (corrupted package files), hold back those " +"packages and handle the result. Use of this option together with <option>-f</" +"option> may produce an error in some situations. If a package is selected " +"for installation (particularly if it is mentioned on the command line) and " +"it could not be downloaded then it will be silently held back. " +"Configuration Item: <literal>APT::Get::Fix-Missing</literal>." +msgstr "" +"欠落パッケージの無視 - パッケージが取得できなかったり、(パッケージの破損で) " +"取得した後の整合性チェックを通らなかった場合、そのパッケージの処理を保留し最" +"後まで処理を続けます。このオプションを <option>-f</option> オプションと同時に" +"使用すると、エラーになる状況があるかもしれません。パッケージをインストールす" +"るよう選択している場合 (特にコマンドラインでの操作時) や、ダウンロードできな" +"かった場合に、なにも表示せず保留することになります。設定項目 - <literal>APT::" +"Get::Fix-Missing</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:339 +msgid "<option>--no-download</option>" +msgstr "<option>--no-download</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:340 +msgid "" +"Disables downloading of packages. This is best used with <option>--ignore-" +"missing</option> to force APT to use only the .debs it has already " +"downloaded. Configuration Item: <literal>APT::Get::Download</literal>." +msgstr "" +"パッケージのダウンロードを無効にします。これはすでにダウンロードした .deb に" +"対してのみ APT を行う場合に、<option>--ignore-missing</option> と併せて使うの" +"がよいでしょう。設定項目 - <literal>APT::Get::Download</literal>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:347 +msgid "" +"Quiet; produces output suitable for logging, omitting progress indicators. " +"More q's will produce more quiet up to a maximum of 2. You can also use " +"<option>-q=#</option> to set the quiet level, overriding the configuration " +"file. Note that quiet level 2 implies <option>-y</option>, you should never " +"use -qq without a no-action modifier such as -d, --print-uris or -s as APT " +"may decided to do something you did not expect. Configuration Item: " +"<literal>quiet</literal>." +msgstr "" +"静粛 - 進捗表示を省略し、ログをとるのに便利な出力を行います。最大 2 つまで q " +"を重ねることでより静粛にできます。また、<option>-q=#</option> のように静粛レ" +"ベルを指定して、設定ファイルを上書きすることもできます。静粛レベル 2 は " +"<option>-y</option> を含んでいることに注意してください。APT が意図しない決定" +"を行うかもしれないので -d, --print-uris, -s のような操作を行わないオプション" +"をつけずに -qq を使用するべきではありません。設定項目 - <literal>quiet</" +"literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:357 +msgid "<option>--simulate</option>" +msgstr "<option>--simulate</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:359 +msgid "<option>--dry-run</option>" +msgstr "<option>--dry-run</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:362 +msgid "" +"No action; perform a simulation of events that would occur but do not " +"actually change the system. Configuration Item: <literal>APT::Get::" +"Simulate</literal>." +msgstr "" +"動作なし - なにが起こるのかのシミュレーションを行い、実際にはシステムの変更を" +"行いません。設定項目 - <literal>APT::Get::Simulate</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:366 +msgid "" +"Simulation run as user will deactivate locking (<literal>Debug::NoLocking</" +"literal>) automatical. Also a notice will be displayed indicating that this " +"is only a simulation, if the option <literal>APT::Get::Show-User-Simulation-" +"Note</literal> is set (Default: true) Neigther NoLocking nor the notice " +"will be triggered if run as root (root should know what he is doing without " +"further warnings by <literal>apt-get</literal>)." +msgstr "" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:372 +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)." +msgstr "" +"シミュレートの結果、dpkg の動作を表す一連の行のそれぞれに、設定 (Conf)、削除 " +"(Remv)、展開 (Inst) を表示します。角カッコは壊れたパッケージを表し、(まれに) " +"空の角カッコは大した問題ではないことを表します。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:379 +msgid "<option>-y</option>" +msgstr "<option>-y</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:379 +msgid "<option>--yes</option>" +msgstr "<option>--yes</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:380 +msgid "<option>--assume-yes</option>" +msgstr "<option>--assume-yes</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:381 +msgid "" +"Automatic yes to prompts; assume \"yes\" as answer to all prompts and run " +"non-interactively. If an undesirable situation, such as changing a held " +"package, trying to install a unauthenticated package or removing an " +"essential package occurs then <literal>apt-get</literal> will abort. " +"Configuration Item: <literal>APT::Get::Assume-Yes</literal>." +msgstr "" +"プロンプトへの自動承諾 - すべてのプロンプトに自動的に \"yes\" と答え、非対話" +"的に実行します。保留したパッケージの状態を変更したり、必須パッケージを削除す" +"るような不適切な状況の場合、<literal>apt-get</literal> は処理を中断します。設" +"定項目 - <literal>APT::Get::Assume-Yes</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:388 +msgid "<option>-u</option>" +msgstr "<option>-u</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:388 +msgid "<option>--show-upgraded</option>" +msgstr "<option>--show-upgraded</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:389 +msgid "" +"Show upgraded packages; Print out a list of all packages that are to be " +"upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>." +msgstr "" +"更新パッケージ表示 - 更新される全パッケージを一覧表示します。設定項目 - " +"<literal>APT::Get::Show-Upgraded</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:394 +msgid "<option>-V</option>" +msgstr "<option>-V</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:394 +msgid "<option>--verbose-versions</option>" +msgstr "<option>--verbose-versions</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:395 +msgid "" +"Show full versions for upgraded and installed packages. Configuration Item: " +"<literal>APT::Get::Show-Versions</literal>." +msgstr "" +"更新・インストールするパッケージのバージョンをすべて表示します。設定項目 - " +"<literal>APT::Get::Show-Versions</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:399 +msgid "<option>-b</option>" +msgstr "<option>-b</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:399 +msgid "<option>--compile</option>" +msgstr "<option>--compile</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:400 +msgid "<option>--build</option>" +msgstr "<option>--build</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:401 +msgid "" +"Compile source packages after downloading them. Configuration Item: " +"<literal>APT::Get::Compile</literal>." +msgstr "" +"ソースパッケージをダウンロード後、コンパイルします。設定項目 - <literal>APT::" +"Get::Compile</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:405 +msgid "<option>--install-recommends</option>" +msgstr "<option>--install-recommends</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:406 +msgid "Also install recommended packages." +msgstr "「推奨」パッケージもインストールします。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:410 +msgid "Do not install recommended packages." +msgstr "「推奨」パッケージをインストールしません。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:413 +msgid "<option>--ignore-hold</option>" +msgstr "<option>--ignore-hold</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:414 +msgid "" +"Ignore package Holds; This causes <command>apt-get</command> to ignore a " +"hold placed on a package. This may be useful in conjunction with " +"<literal>dist-upgrade</literal> to override a large number of undesired " +"holds. Configuration Item: <literal>APT::Ignore-Hold</literal>." +msgstr "" +"保留パッケージの無視 - パッケージの保留指示を無視して <command>apt-get</" +"command> を行います。<literal>dist-upgrade</literal> と共に、大量のパッケージ" +"を保留の解除をするのに使用すると便利です。設定項目 - <literal>APT::Ignore-" +"Hold</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:420 +msgid "<option>--no-upgrade</option>" +msgstr "<option>--no-upgrade</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:421 +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>." +msgstr "" +"パッケージ更新なし - <literal>install</literal> と同時に使用すると、" +"<literal>no-upgrade</literal> は、指定したパッケージがすでにインストールして" +"ある場合に更新を行いません。設定項目 - <literal>APT::Get::Upgrade</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:427 +msgid "<option>--force-yes</option>" +msgstr "<option>--force-yes</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:428 +msgid "" +"Force yes; This is a dangerous option that will cause apt to continue " +"without prompting if it is doing something potentially harmful. It should " +"not be used except in very special situations. Using <literal>force-yes</" +"literal> can potentially destroy your system! Configuration Item: " +"<literal>APT::Get::force-yes</literal>." +msgstr "" +"強制承諾 - APT が何か損傷を与えかねない動作をしようとした場合でも、確認の入力" +"なしで実行してしまう危険なオプションです。よほどの状況でなければ、使用しない" +"方がいいでしょう。<literal>force-yes</literal> は、あなたのシステムを破壊しか" +"ねません! 設定項目 - <literal>APT::Get::force-yes</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:435 +msgid "<option>--print-uris</option>" +msgstr "<option>--print-uris</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:436 +msgid "" +"Instead of fetching the files to install their URIs are printed. Each URI " +"will have the path, the destination file name, the size and the expected md5 " +"hash. Note that the file name to write to will not always match the file " +"name on the remote site! This also works with the <literal>source</literal> " +"and <literal>update</literal> commands. When used with the <literal>update</" +"literal> command the MD5 and size are not included, and it is up to the user " +"to decompress any compressed files. Configuration Item: <literal>APT::Get::" +"Print-URIs</literal>." +msgstr "" +"インストールするファイルを取得する代わりに、その URI を表示します。URI には、" +"パス、対象ファイル名、ファイルサイズ、予測される md5 ハッシュが含まれていま" +"す。出力したファイル名が、常にリモートサイトのファイル名と一致するわけではな" +"い、ということに注意してください! これは <literal>source</literal> コマンド、" +"<literal>update</literal> コマンドでも動作します。<literal>update</literal> " +"で使用したときには、MD5 やファイルサイズを含みません。このとき、圧縮ファイル" +"の展開はユーザの責任において行ってください。設定項目 - <literal>APT::Get::" +"Print-URIs</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:446 +msgid "<option>--purge</option>" +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:447 +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>." +msgstr "" +"削除する際、「削除」ではなく「完全削除」を行います。「完全削除」を行うと指示" +"したパッケージ名の後には、アスタリスク (\"*\") が付きます。<option>remove --" +"purge</option> は <option>purge</option> コマンドと等価です。 設定項目 - " +"<literal>APT::Get::Purge</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:454 +msgid "<option>--reinstall</option>" +msgstr "<option>--reinstall</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:455 +msgid "" +"Re-Install packages that are already installed and at the newest version. " +"Configuration Item: <literal>APT::Get::ReInstall</literal>." +msgstr "" +"すでに最新版がインストールされていても、パッケージを再インストールします。設" +"定項目 - <literal>APT::Get::ReInstall</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:459 +msgid "<option>--list-cleanup</option>" +msgstr "<option>--list-cleanup</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:460 +msgid "" +"This option defaults to on, use <literal>--no-list-cleanup</literal> to turn " +"it off. When on <command>apt-get</command> will automatically manage the " +"contents of <filename>&statedir;/lists</filename> to ensure that obsolete " +"files are erased. The only reason to turn it off is if you frequently " +"change your source list. Configuration Item: <literal>APT::Get::List-" +"Cleanup</literal>." +msgstr "" +"この機能はデフォルトで ON になっています。OFF にするには <literal>--no-list-" +"cleanup</literal> としてください。ON の場合、<command>apt-get</command> は古" +"くなったファイルを確実に消去するため、自動的に <filename>&statedir;/lists</" +"filename> の中身を管理します。これを OFF にするのは、取得元リストを頻繁に変更" +"する時ぐらいでしょう。設定項目 - <literal>APT::Get::List-Cleanup</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:469 +msgid "<option>--target-release</option>" +msgstr "<option>--target-release</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:470 +msgid "<option>--default-release</option>" +msgstr "<option>--default-release</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:471 +msgid "" +"This option controls the default input to the policy engine, it creates a " +"default pin at priority 990 using the specified release string. This " +"overrides the general settings in <filename>/etc/apt/preferences</" +"filename>. Specifically pinned packages are not affected by the value of " +"this option. In short, this option lets you have simple control over which " +"distribution packages will be retrieved from. Some common examples might be " +"<option>-t '2.1*'</option>, <option>-t unstable</option> or <option>-t sid</" +"option>. Configuration Item: <literal>APT::Default-Release</literal>; see " +"also the &apt-preferences; manual page." +msgstr "" +"このオプションは、ポリシーエンジンへのデフォルト入力を制御します。これは、指" +"定されたリリース文字列を使用し、デフォルト pin を優先度 990 で作成します。" +"<filename>/etc/apt/preferences</filename> にある一般設定を上書きします。pin " +"で留めるのを明示されたパッケージには、このオプションの値は影響を与えません。" +"つまりこのオプションで、どの配布パッケージを取得するかを簡単に管理します。一" +"般的な例としては、<option>-t '2.1*'</option> や <option>-t unstable</" +"option>、<option>-t sid</option> でしょう。設定項目 - <literal>APT::Default-" +"Release</literal>。&apt-preferences; のマニュアルページもご覧ください。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:484 +msgid "<option>--trivial-only</option>" +msgstr "<option>--trivial-only</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:486 +msgid "" +"Only perform operations that are 'trivial'. Logically this can be considered " +"related to <option>--assume-yes</option>, where <option>--assume-yes</" +"option> will answer yes to any prompt, <option>--trivial-only</option> will " +"answer no. Configuration Item: <literal>APT::Get::Trivial-Only</literal>." +msgstr "" +"「重要でない」操作のみを行います。これは論理的に <option>--assume-yes</" +"option> の仲間と見なせます。<option>--assume-yes</option> は質問にすべて yes " +"と答えますが、<option>--trivial-only</option> はすべて no と答えます。設定項" +"目 - <literal>APT::Get::Trivial-Only</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:492 +msgid "<option>--no-remove</option>" +msgstr "<option>--no-remove</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:493 +msgid "" +"If any packages are to be removed apt-get immediately aborts without " +"prompting. Configuration Item: <literal>APT::Get::Remove</literal>." +msgstr "" +"パッケージが削除される状況になったとき、プロンプトを表示せず中断します。設定" +"項目 - <literal>APT::Get::Remove</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:498 +msgid "<option>--auto-remove</option>" +msgstr "<option>--auto-remove</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:499 +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>." +msgstr "" +"コマンドが <literal>install</literal> か <literal>remove</literal> である場" +"合、このオプションは使用していないパッケージを削除し、<literal>autoremove</" +"literal> のように動作します。設定項目 - <literal>APT::Get::AutomaticRemove</" +"literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:505 +msgid "<option>--only-source</option>" +msgstr "<option>--only-source</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:506 +msgid "" +"Only has meaning for the <literal>source</literal> and <literal>build-dep</" +"literal> commands. Indicates that the given source names are not to be " +"mapped through the binary table. This means that if this option is " +"specified, these commands will only accept source package names as " +"arguments, rather than accepting binary package names and looking up the " +"corresponding source package. Configuration Item: <literal>APT::Get::Only-" +"Source</literal>." +msgstr "" +"<literal>source</literal> コマンドと <literal>build-dep</literal> コマンドで" +"のみ意味があります。指定されたソース名がバイナリテーブルにマップされないよう" +"にします。これは、このオプションを指定すると、バイナリパッケージ名を受け付け" +"て対応するソースパッケージを探すのではなく、引数にソースパッケージ名しか受け" +"付けなくなる、ということです。設定項目 - <literal>APT::Get::Only-Source</" +"literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:516 +msgid "<option>--diff-only</option>" +msgstr "<option>--diff-only</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:516 +msgid "<option>--dsc-only</option>" +msgstr "<option>--dsc-only</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:516 +msgid "<option>--tar-only</option>" +msgstr "<option>--tar-only</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:517 +msgid "" +"Download only the diff, dsc, or tar file of a source archive. Configuration " +"Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" +"literal>, and <literal>APT::Get::Tar-Only</literal>." +msgstr "" +"ソースアーカイブの diff ファイルや tar ファイルのダウンロードのみを行います。" +"設定項目 - <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Tar-" +"Only</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:522 +msgid "<option>--arch-only</option>" +msgstr "<option>--arch-only</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:523 +msgid "" +"Only process architecture-dependent build-dependencies. Configuration Item: " +"<literal>APT::Get::Arch-Only</literal>." +msgstr "" +"構築依存関係の解決を、アーキテクチャに依存したもののみ行います。設定項目 - " +"<literal>APT::Get::Arch-Only</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:527 +msgid "<option>--allow-unauthenticated</option>" +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:528 +#, 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::" +"AllowUnauthenticated</literal>." +msgstr "" +"パッケージを確認できない場合に無視し、それについて質問しません。pbuilder のよ" +"うなツールで便利です。設定項目 - <literal>APT::Get::AllowUnauthenticated</" +"literal>" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:546 apt.conf.5.xml:825 +msgid "<filename>/etc/apt/apt.conf</filename>" +msgstr "<filename>/etc/apt/apt.conf</filename>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:547 +msgid "" +"APT configuration file. Configuration Item: <literal>Dir::Etc::Main</" +"literal>." +msgstr "APT 設定ファイル。設定項目 - <literal>Dir::Etc::Main</literal>" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:551 +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> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:552 +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> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:556 +msgid "<filename>/etc/apt/preferences</filename>" +msgstr "<filename>/etc/apt/preferences</filename>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:557 +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>." +msgstr "" +"バージョン優先ファイル。ここに \"pin\" の設定を行います。つまり、別々の取得元" +"や異なるディストリビューションのバージョンの、どこからパッケージを取得するか" +"を設定します。設定項目 - <literal>Dir::Etc::Preferences</literal>" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:565 +msgid "<filename>&cachedir;/archives/</filename>" +msgstr "<filename>&cachedir;/archives/</filename>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:566 +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> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:570 +msgid "<filename>&cachedir;/archives/partial/</filename>" +msgstr "<filename>&cachedir;/archives/partial/</filename>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:571 +msgid "" +"Storage area for package files in transit. Configuration Item: " +"<literal>Dir::Cache::Archives</literal> (implicit partial)." +msgstr "" +"取得中パッケージファイル格納エリア。設定項目 - <literal>Dir::Cache::" +"Archives</literal> (必然的に不完全)" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:589 +msgid "" +"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " +"&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" +"preferences;, the APT Howto." +msgstr "" +"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " +"&apt-config;, &docdir; の APT ユーザーズガイド, &apt-preferences;, APT Howto" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:595 +msgid "" +"<command>apt-get</command> returns zero on normal operation, decimal 100 on " +"error." +msgstr "" +"<command>apt-get</command> は正常終了時に 0 を返します。エラー時には十進の " +"100 を返します。" + +#. type: Content of: <refentry><refsect1><title> +#: apt-get.8.xml:598 +msgid "ORIGINAL AUTHORS" +msgstr "原著者" + +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:599 +msgid "&apt-author.jgunthorpe;" +msgstr "&apt-author.jgunthorpe;" + +#. type: Content of: <refentry><refsect1><title> +#: apt-get.8.xml:602 +msgid "CURRENT AUTHORS" +msgstr "現著者" + +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:604 +msgid "&apt-author.team;" +msgstr "&apt-author.team;" + +# type: Content of: <refentry><refnamediv><refname> +#. type: Content of: <refentry><refnamediv><refname> +#: apt-key.8.xml:14 apt-key.8.xml:20 +msgid "apt-key" +msgstr "apt-key" + +# type: Content of: <refentry><refnamediv><refpurpose> +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-key.8.xml:21 +msgid "APT key management utility" +msgstr "APT キー管理ユーティリティ" + +# type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-key.8.xml:27 +msgid "" +"<command>apt-key</command> <arg><replaceable>command</replaceable>/</arg> " +"<arg rep=\"repeat\"><option><replaceable>arguments</replaceable></option></" +"arg>" +msgstr "" +"<command>apt-key</command> <arg><replaceable>command</replaceable>/</arg> " +"<arg rep=\"repeat\"><option><replaceable>arguments</replaceable></option></" +"arg>" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-key.8.xml:35 +msgid "" +"<command>apt-key</command> is used to manage the list of keys used by apt to " +"authenticate packages. Packages which have been authenticated using these " +"keys will be considered trusted." +msgstr "" +"<command>apt-key</command> は、apt が パッケージを認証するのに使用するキーの" +"一覧を管理するのに使用します。このキーで認証されたパッケージは、信頼するに足" +"ると見なせるでしょう。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: apt-key.8.xml:41 +msgid "Commands" +msgstr "コマンド" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:43 +msgid "add <replaceable>filename</replaceable>" +msgstr "add <replaceable>filename</replaceable>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:47 +msgid "" +"Add a new key to the list of trusted keys. The key is read from " +"<replaceable>filename</replaceable>, or standard input if " +"<replaceable>filename</replaceable> is <literal>-</literal>." +msgstr "" +"信頼キー一覧に新しいキーを追加します。このキーは <replaceable>filename</" +"replaceable> から読み込みますが、<replaceable>filename</replaceable> を " +"<literal>-</literal> とすると、標準入力から読み込みます。" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:55 +msgid "del <replaceable>keyid</replaceable>" +msgstr "del <replaceable>keyid</replaceable>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:59 +msgid "Remove a key from the list of trusted keys." +msgstr "信頼キー一覧からキーを削除します。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:66 +msgid "export <replaceable>keyid</replaceable>" +msgstr "export <replaceable>keyid</replaceable>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:70 +msgid "Output the key <replaceable>keyid</replaceable> to standard output." +msgstr "キー <replaceable>keyid</replaceable> を標準出力に出力します。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:77 +msgid "exportall" +msgstr "exportall" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:81 +msgid "Output all trusted keys to standard output." +msgstr "信頼するキーをすべて標準出力に出力します。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:88 +msgid "list" +msgstr "list" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:92 +msgid "List trusted keys." +msgstr "信頼キーを一覧表示します。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:99 +msgid "finger" +msgstr "finger" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:103 +msgid "List fingerprints of trusted keys." +msgstr "信頼キーのフィンガープリントを一覧表示します。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:110 +msgid "adv" +msgstr "adv" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:114 +msgid "" +"Pass advanced options to gpg. With adv --recv-key you can download the " +"public key." +msgstr "" +"gpg に上級オプションを渡します。adv --recv-key とすると、公開鍵をダウンロード" +"できます。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:126 +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 "" +"Debian アーカイブキーで、ローカルキーリングを更新し、もう有効でないキーをキー" +"リングから削除します。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:139 +msgid "<filename>/etc/apt/trusted.gpg</filename>" +msgstr "<filename>/etc/apt/trusted.gpg</filename>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:140 +msgid "Keyring of local trusted keys, new keys will be added here." +msgstr "ローカル信頼キーのキーリング。新しいキーはここに追加されます。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:143 +msgid "<filename>/etc/apt/trustdb.gpg</filename>" +msgstr "<filename>/etc/apt/trustdb.gpg</filename>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:144 +msgid "Local trust database of archive keys." +msgstr "アーカイブキーのローカル信頼データベースです。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:147 +msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>" +msgstr "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:148 +msgid "Keyring of Debian archive trusted keys." +msgstr "Debian アーカイブ信頼キーのキーリングです。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:151 +msgid "" +"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" +msgstr "" +"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:152 +msgid "Keyring of Debian archive removed trusted keys." +msgstr "削除された Debian アーカイブ信頼キーのキーリングです。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-key.8.xml:163 +msgid "&apt-get;, &apt-secure;" +msgstr "&apt-get;, &apt-secure;" + +#. The last update date +#. type: Content of: <refentry><refentryinfo> +#: apt-mark.8.xml:13 +msgid "" +"&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>2 " +"November 2007</date>" +msgstr "" +"&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>2 " +"November 2007</date>" + +# type: Content of: <refentry><refnamediv><refname> +#. type: Content of: <refentry><refnamediv><refname> +#: apt-mark.8.xml:22 apt-mark.8.xml:28 +msgid "apt-mark" +msgstr "apt-mark" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-mark.8.xml:29 +msgid "mark/unmark a package as being automatically-installed" +msgstr "パッケージが自動的にインストールされたかどうかのマークを変更します。" + +# type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-mark.8.xml:35 +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>" +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>" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-mark.8.xml:44 +msgid "" +"<command>apt-mark</command> will change whether a package has been marked as " +"being automatically installed." +msgstr "" +"<command>apt-mark</command> は、パッケージが自動的にインストールされたかどう" +"かのマークを変更します。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-mark.8.xml:48 +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." +msgstr "" +"パッケージをインストールすると要求し、その結果、別のパッケージが依存関係を満" +"たすためにインストールされた場合、依存関係に自動的にインストールしたとマーク" +"します。いったん自動的にインストールされたパッケージは、手動でインストールし" +"たパッケージに依存されなくなると、そのパッケージは削除されます。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:55 +msgid "markauto" +msgstr "markauto" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:56 +msgid "" +"<literal>markauto</literal> is used to mark a package as being automatically " +"installed, which will cause the package to be removed when no more manually " +"installed packages depend on this package." +msgstr "" +"<literal>markauto</literal> は、パッケージを自動的にインストールしたとして" +"マークします。このパッケージに依存する、手動でインストールされたパッケージが" +"なくなると、このパッケージを削除します。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:63 +msgid "unmarkauto" +msgstr "unmarkauto" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:64 +msgid "" +"<literal>unmarkauto</literal> is used to mark a package as being manually " +"installed, which will prevent the package from being automatically removed " +"if no other packages depend on it." +msgstr "" +"<literal>unmarkauto</literal> は、パッケージを手動でインストールしたとして" +"マークします。このパッケージに依存する他のパッケージがなくなっても、このパッ" +"ケージを自動的に削除するのを防ぎます。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:76 +msgid "<option>-f=<filename>FILENAME</filename></option>" +msgstr "<option>-f=<filename>FILENAME</filename></option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:76 +msgid "<option>--file=<filename>FILENAME</filename></option>" +msgstr "<option>--file=<filename>FILENAME</filename></option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:79 +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>." +msgstr "" +"デフォルトの場所 (設定項目: <literal>Dir::State</literal> で定義したディレク" +"トリの <filename>extended_status</filename>) に代えて、<filename>FILENAME</" +"filename> からパッケージの統計を読み書きします。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:85 +msgid "<option>-h</option>" +msgstr "<option>-h</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:86 +msgid "<option>--help</option>" +msgstr "<option>--help</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:87 +msgid "Show a short usage summary." +msgstr "短い使用方法を表示します。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:93 +msgid "<option>-v</option>" +msgstr "<option>-v</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:94 +msgid "<option>--version</option>" +msgstr "<option>--version</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:95 +msgid "Show the program version." +msgstr "プログラムのバージョン情報を表示します" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-mark.8.xml:109 +msgid "" +"<command>apt-mark</command> returns zero on normal operation, non-zero on " +"error." +msgstr "" +"<command>apt-mark</command> は正常終了時に 0 を返します。エラー時には十進の " +"100 を返します。" + +# type: Content of: <refentry><refnamediv><refname> +#. type: Content of: <refentry><refnamediv><refname> +#: apt-secure.8.xml:14 apt-secure.8.xml:35 +msgid "apt-secure" +msgstr "apt-secure" + +# type: Content of: <refentry><refnamediv><refpurpose> +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-secure.8.xml:36 +msgid "Archive authentication support for APT" +msgstr "APT アーカイブ認証サポート" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:41 +msgid "" +"Starting with version 0.6, <command>apt</command> contains code that does " +"signature checking of the Release file for all archives. This ensures that " +"packages in the archive can't be modified by people who have no access to " +"the Release file signing key." +msgstr "" +"バージョン 0.6 より、<command>apt</command> 全アーカイブに対する Release ファ" +"イルの署名チェックコードが含まれています。Release ファイル署名キーにアクセス" +"できない人が、アーカイブのパッケージの変更が確実にできないようにします。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:49 +msgid "" +"If a package comes from a archive without a signature or with a signature " +"that apt does not have a key for that package is considered untrusted and " +"installing it will result in a big warning. <command>apt-get</command> will " +"currently only warn for unsigned archives, future releases might force all " +"sources to be verified before downloading packages from them." +msgstr "" +"パッケージに署名されなかったり、apt が知らないキーで署名されていた場合、アー" +"カイブから来たパッケージは、信頼されていないと見なし、インストールの際に重要" +"な警告が表示されます。 <command>apt-get</command> は、現在未署名のパッケージ" +"に対して警告するだけですが、将来のリリースでは全ソースに対し、パッケージダウ" +"ンロード前に強制的に検証される可能性があります。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:58 +msgid "" +"The package frontends &apt-get;, &aptitude; and &synaptic; support this new " +"authentication feature." +msgstr "" +"&apt-get;, &aptitude;, &synaptic; といったパッケージフロントエンドは、この新" +"認証機能をサポートしています。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml:63 +msgid "Trusted archives" +msgstr "信頼済アーカイブ" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:66 +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." +msgstr "" +"apt アーカイブからエンドユーザまでの信頼の輪は、いくつかのステップで構成され" +"ています。<command>apt-secure</command> は、この輪の最後のステップで、アーカ" +"イブを信頼することは、パッケージに悪意のあるコードが含まれていないと信頼する" +"わけではありませんが、アーカイブメンテナを信頼すると言うことです。これは、" +"アーカイブの完全性を保証するのは、アーカイブメンテナの責任だということです。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:74 +msgid "" +"apt-secure does not review signatures at a package level. If you require " +"tools to do this you should look at <command>debsig-verify</command> and " +"<command>debsign</command> (provided in the debsig-verify and devscripts " +"packages respectively)." +msgstr "" +"apt-secure はパッケージレベルの署名検証は行いません。そのようなツールが必要な" +"場合は、<command>debsig-verify</command> や <command>debsign</command> " +"(debsig-verify パッケージと devscripts パッケージでそれぞれ提供されています) " +"を確認してください。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:81 +msgid "" +"The chain of trust in Debian starts when a maintainer uploads a new package " +"or a new version of a package to the Debian archive. This upload in order to " +"become effective needs to be signed by a key of a maintainer within the " +"Debian maintainer's keyring (available in the debian-keyring package). " +"Maintainer's keys are signed by other maintainers following pre-established " +"procedures to ensure the identity of the key holder." +msgstr "" +"Debian における信頼の輪は、新しいパッケージやパッケージの新しいバージョンを、" +"メンテナが Debian アーカイブにアップロードすることで始まります。これは、" +"Debian メンテナキーリング (debian-keyring パッケージにあります) にあるメンテ" +"ナのキーで署名しなければ、アップロードできないということです。メンテナのキー" +"は、キーの所有者のアイデンティティを確保するため、以下のような事前に確立した" +"手段で、他のメンテナに署名されています。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:91 +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." +msgstr "" +"アップロードされたパッケージごとに、検証してアーカイブに格納します。パッケー" +"ジは、メンテナの署名をはがされ、MD5 sum を計算されて、Packages ファイルに格納" +"されます。その後、全パッケージファイルの MD5 sum を計算してから、Release ファ" +"イルに置きます。Release ファイルは、アーカイブキーで署名されます。アーカイブ" +"キーは年ごとに作成され、FTP サーバで配布されます。このキーも Debian キーリン" +"グに含まれます。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:101 +msgid "" +"Any end user can check the signature of the Release file, extract the MD5 " +"sum of a package from it and compare it with the MD5 sum of the package he " +"downloaded. Prior to version 0.6 only the MD5 sum of the downloaded Debian " +"package was checked. Now both the MD5 sum and the signature of the Release " +"file are checked." +msgstr "" +"エンドユーザは誰でも、Release ファイルの署名をチェックし、パッケージの MD5 " +"sum を抽出して、ダウンロードしたパッケージの MD5 sum と比較できます。バージョ" +"ン 0.6 以前では、ダウンロードした Debian パッケージの MD5 sum しか、チェック" +"していませんでした。現在では、MD5 sum と Release ファイルの署名の両方でチェッ" +"クします。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:108 +msgid "" +"Notice that this is distinct from checking signatures on a per package " +"basis. It is designed to prevent two possible attacks:" +msgstr "" +"以上は、パッケージごとの署名チェックとは違うことに注意してください。以下のよ" +"うに考えられる 2 種類の攻撃を防ぐよう設計されています。" + +# type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: apt-secure.8.xml:113 +msgid "" +"<literal>Network \"man in the middle\" attacks</literal>. Without signature " +"checking, a malicious agent can introduce himself in the package download " +"process and provide malicious software either by controlling a network " +"element (router, switch, etc.) or by redirecting traffic to a rogue server " +"(through arp or DNS spoofing attacks)." +msgstr "" +"<literal>ネットワーク中間者攻撃</literal> 署名をチェックしないと、悪意ある" +"エージェントがパッケージダウンロードプロセスに割り込んだり、ネットワーク構成" +"要素 (ルータ、スイッチなど) の制御や、悪漢サーバへのネットワークトラフィック" +"のリダイレクトなど (arp スプーフィング攻撃や DNS スプーフィング攻撃) で、悪意" +"あるソフトウェアを掴まされたりします。" + +# type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: apt-secure.8.xml:121 +msgid "" +"<literal>Mirror network compromise</literal>. Without signature checking, a " +"malicious agent can compromise a mirror host and modify the files in it to " +"propagate malicious software to all users downloading packages from that " +"host." +msgstr "" +"<literal>ミラーネットワーク感染</literal>。署名をチェックしないと、悪意ある" +"エージェントがミラーホストに感染し、このホストからダウンロードしたユーザすべ" +"てに、悪意あるソフトウェアが伝播するようにファイルを変更できます。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:128 +msgid "" +"However, it does not defend against a compromise of the Debian master server " +"itself (which signs the packages) or against a compromise of the key used to " +"sign the Release files. In any case, this mechanism can complement a per-" +"package signature." +msgstr "" +"しかしこれは、(パッケージに署名する) Debian マスターサーバ自体の侵害や、" +"Release ファイルに署名するのに使用したキーの漏洩を防げません。いずれにせよ、" +"この機構はパッケージごとの署名を補完することができます。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml:134 +msgid "User configuration" +msgstr "ユーザの設定" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:136 +msgid "" +"<command>apt-key</command> is the program that manages the list of keys used " +"by apt. It can be used to add or remove keys although an installation of " +"this release will automatically provide the default Debian archive signing " +"keys used in the Debian package repositories." +msgstr "" +"<command>apt-key</command> は、apt が使用するキーリストを管理するプログラムで" +"す。このリリースのインストールでは、Debian パッケージリポジトリで使用する、" +"キーで署名するデフォルトの Debian アーカイブを提供しますが、<command>apt-" +"key</command> でキーの追加・削除が行えます。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:143 +msgid "" +"In order to add a new key you need to first download it (you should make " +"sure you are using a trusted communication channel when retrieving it), add " +"it with <command>apt-key</command> and then run <command>apt-get update</" +"command> so that apt can download and verify the <filename>Release.gpg</" +"filename> files from the archives you have configured." +msgstr "" +"新しいキーを追加するためには、まずキーをダウンロードする必要があります。(取得" +"する際には、信頼できる通信チャネルを使用するよう、特に留意してください) 取得" +"したキーを、<command>apt-key</command> で追加し、<command>apt-get update</" +"command> を実行してください。以上により、apt は指定したアーカイブから、" +"<filename>Release.gpg</filename> ファイルをダウンロード・検証できるようになり" +"ます。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml:152 +msgid "Archive configuration" +msgstr "アーカイブの設定" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:154 +msgid "" +"If you want to provide archive signatures in an archive under your " +"maintenance you have to:" +msgstr "" +"あなたがメンテナンスしているアーカイブで、アーカイブ署名を提供したい場合、以" +"下のようにしてください。" + +# type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: apt-secure.8.xml:159 +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)." +msgstr "" +"<literal>最上位 Release ファイルの作成</literal>。既にこれが存在しているので" +"なければ、<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:164 +msgid "" +"<literal>Sign it</literal>. You can do this by running <command>gpg -abs -o " +"Release.gpg Release</command>." +msgstr "" +"<literal>署名</literal>します。<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:167 +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." +msgstr "" +"<literal>キーの指紋を配布</literal> これにより、アーカイブ内のファイル認証" +"に、どのキーをインポートする必要があるかを、ユーザに知らせることになります。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:174 +msgid "" +"Whenever the contents of the archive changes (new packages are added or " +"removed) the archive maintainer has to follow the first two steps previously " +"outlined." +msgstr "" +"アーカイブの内容に変化がある場合 (新しいパッケージの追加や削除)、アーカイブメ" +"ンテナは前述の最初の 1, 2 ステップに従わなければなりません。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:182 +msgid "" +"&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " +"&debsign; &debsig-verify;, &gpg;" +msgstr "" +"&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " +"&debsign; &debsig-verify;, &gpg;" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:186 +msgid "" +"For more background information you might want to review the <ulink url=" +"\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7.en.html" +"\">Debian Security Infrastructure</ulink> chapter of the Securing Debian " +"Manual (available also in the harden-doc package) and the <ulink url=" +"\"http://www.cryptnet.net/fdp/crypto/strong_distro.html\" >Strong " +"Distribution HOWTO</ulink> by V. Alex Brennen." +msgstr "" +"詳細な背景情報を検証するのなら、Securing Debian Manual (harden-doc パッケージ" +"にも収録) の <ulink url=\"http://www.debian.org/doc/manuals/securing-debian-" +"howto/ch7.en.html\">Debian Security Infrastructure</ulink> 章や、V. Alex " +"Brennen による <ulink url=\"http://www.cryptnet.net/fdp/crypto/strong_distro." +"html\" >Strong Distribution HOWTO</ulink> をご覧ください。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml:199 +msgid "Manpage Authors" +msgstr "マニュアルページ作者" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:201 +msgid "" +"This man-page is based on the work of Javier Fernández-Sanguino Peña, Isaac " +"Jones, Colin Walters, Florian Weimer and Michael Vogt." +msgstr "" +"このマニュアルページは Javier Fernández-Sanguino Peña, Isaac Jones, Colin " +"Walters, Florian Weimer, Michael Vogt の作業を元にしています。" + +# type: Content of: <refentry><refnamediv><refname> +#. type: Content of: <refentry><refnamediv><refname> +#: apt-sortpkgs.1.xml:22 apt-sortpkgs.1.xml:28 +msgid "apt-sortpkgs" +msgstr "apt-sortpkgs" + +# type: Content of: <refentry><refnamediv><refpurpose> +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-sortpkgs.1.xml:29 +msgid "Utility to sort package index files" +msgstr "パッケージインデックスファイルのソートユーティリティ" + +# type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-sortpkgs.1.xml:35 +msgid "" +"<command>apt-sortpkgs</command> <arg><option>-hvs</option></arg> " +"<arg><option>-o=<replaceable>config string</replaceable></option></arg> " +"<arg><option>-c=<replaceable>file</replaceable></option></arg> <arg choice=" +"\"plain\" rep=\"repeat\"><replaceable>file</replaceable></arg>" +msgstr "" +"<command>apt-sortpkgs</command> <arg><option>-hvs</option></arg> " +"<arg><option>-o=<replaceable>config string</replaceable></option></arg> " +"<arg><option>-c=<replaceable>file</replaceable></option></arg> <arg choice=" +"\"plain\" rep=\"repeat\"><replaceable>file</replaceable></arg>" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-sortpkgs.1.xml:44 +msgid "" +"<command>apt-sortpkgs</command> will take an index file (Source index or " +"Package index) and sort the records so that they are ordered by the package " +"name. It will also sort the internal fields of each record according to the " +"internal sorting rules." +msgstr "" +"<command>apt-sortpkgs</command> は、インデックスファイル (ソースインデックス" +"やパッケージインデックス) からレコードをソートし、パッケージ名順に整えます。" +"また、内部のソート規則に従って、内部フィールドについてもソートを行います。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-sortpkgs.1.xml:50 +msgid "All output is sent to stdout, the input must be a seekable file." +msgstr "" +"出力はすべて標準出力に送られ、入力は検索できるファイルでなければなりません。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-sortpkgs.1.xml:57 +msgid "<option>--source</option>" +msgstr "<option>--source</option>" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-sortpkgs.1.xml:59 +msgid "" +"Use Source index field ordering. Configuration Item: <literal>APT::" +"SortPkgs::Source</literal>." +msgstr "" +"ソースインデックスフィールド順に並べ替えに使用します。設定項目 - " +"<literal>APT::SortPkgs::Source</literal>." + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt-sortpkgs.1.xml:73 +msgid "" +"<command>apt-sortpkgs</command> returns zero on normal operation, decimal " +"100 on error." +msgstr "" +"<command>apt-sortpkgs</command> は正常終了時に 0 を返します。エラー時には十進" +"の 100 を返します。" + +#. The last update date +#. type: Content of: <refentry><refentryinfo> +#: apt.conf.5.xml:13 +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>" +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>" + +# type: Content of: <refentry><refnamediv><refname> +#. type: Content of: <refentry><refnamediv><refname> +#: apt.conf.5.xml:28 apt.conf.5.xml:34 +msgid "apt.conf" +msgstr "apt.conf" + +#. type: Content of: <refentry><refmeta><manvolnum> +#: apt.conf.5.xml:29 apt_preferences.5.xml:22 sources.list.5.xml:23 +msgid "5" +msgstr "5" + +# type: Content of: <refentry><refnamediv><refpurpose> +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt.conf.5.xml:35 +msgid "Configuration file for APT" +msgstr "APT の設定ファイル" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:39 +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> +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:49 +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." +msgstr "" +"設定ファイルは、機能グループごとに系統立てられたオプションを木構造で表しま" +"す。オプションの内容は、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:55 +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:" +msgstr "" +"設定言語の文法は、bind や dhcp のような ISC ツールをモデルにしています。" +"<literal>//</literal> で始まる行はコメントとして扱われます (無視)。同様に C/C" +"++ のコメントのような <literal>/*</literal> と <literal>*/</literal> の間もコ" +"メントとして扱います。いずれの行も、<literallayout>APT::Get::Assume-Yes " +"\"true\";</literallayout> のような形式です。行末のセミコロンは必要ですが、ダ" +"ブルクォートは使わなくてもかまいません。以下のように中カッコを使うと、新しい" +"スコープを開くことができます。" + +# type: Content of: <refentry><refsect1><informalexample><programlisting> +#. type: Content of: <refentry><refsect1><informalexample><programlisting> +#: apt.conf.5.xml:65 +#, no-wrap +msgid "" +"APT {\n" +" Get {\n" +" Assume-Yes \"true\";\n" +" Fix-Broken \"true\";\n" +" };\n" +"};\n" +msgstr "" +"APT {\n" +" Get {\n" +" Assume-Yes \"true\";\n" +" Fix-Broken \"true\";\n" +" };\n" +"};\n" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:73 +msgid "" +"with newlines placed to make it more readable. Lists can be created by " +"opening a scope and including a single string enclosed in quotes followed by " +"a semicolon. Multiple entries can be included, each separated by a semicolon." +msgstr "" +"また適宜改行することで、より読みやすくなります。リストは、開いたスコープ、" +"クォートで囲まれた 1 単語、そしてセミコロンと続けることで作成できます。セミコ" +"ロンで区切ると、複数のエントリを表せます。" + +# type: Content of: <refentry><refsect1><informalexample><programlisting> +#. type: Content of: <refentry><refsect1><informalexample><programlisting> +#: apt.conf.5.xml:78 +#, no-wrap +msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" +msgstr "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:81 +msgid "" +"In general the sample configuration file in <filename>&docdir;examples/apt." +"conf</filename> &configureindex; is a good guide for how it should look." +msgstr "" +"<filename>&docdir;examples/apt.conf</filename> &configureindex; は一般的な設" +"定ファイルのサンプルです。どのように設定するか参考になるでしょう。" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:85 +msgid "" +"The names of the configuration items are not case-sensitive. So in the " +"previous example you could use <literal>dpkg::pre-install-pkgs</literal>." +msgstr "" +"設定項目の名前は、文字の大小を区別しません。そのため、前述の例を " +"<literal>dpkg::pre-install-pkgs</literal> とできます。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:88 +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." +msgstr "" +"<literal>#include</literal> と <literal>#clear</literal> の 2 つの特別な記法" +"があります。<literal>#include</literal> は指定したファイルを取り込みます。" +"ファイル名がスラッシュで終わった場合には、そのディレクトリをすべて取り込みま" +"す。<literal>#clear</literal> は、設定ツリーの一部を削除するにに使用します。" +"指定した要素と、それ以下の要素を削除します。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:94 +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." +msgstr "" +"すべての APT ツールで、コマンドラインで任意の設定を行う -o オプションが使用で" +"きます。文法は、完全なオプション名 (例: <literal>APT::Get::Assume-Yes</" +"literal>)、等号、続いてオプションの新しい値となります。リスト名に続き::を加え" +"ることで、リストを追加することができます。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:101 +msgid "The APT Group" +msgstr "APT グループ" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:102 +msgid "" +"This group of options controls general APT behavior as well as holding the " +"options for all of the tools." +msgstr "" +"このオプショングループは、ツール全体に影響のある、一般的な APT の振る舞いを制" +"御します。" + +# type: <tag></tag> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:106 +msgid "Architecture" +msgstr "Architecture" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:107 +msgid "" +"System Architecture; sets the architecture to use when fetching files and " +"parsing package lists. The internal default is the architecture apt was " +"compiled for." +msgstr "" +"システムアーキテクチャ - ファイルを取得したり、パッケージリストを解析するとき" +"に使用するアーキテクチャをセットします。内部でのデフォルトは、apt をコンパイ" +"ルしたアーキテクチャです。" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:112 +msgid "Default-Release" +msgstr "Default-Release" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:113 +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;." +msgstr "" +"ひとつ以上のバージョンがある場合に、パッケージをインストールを行うデフォルト" +"リリースです。リリース名や、コード名、リリースバージョンです。例えば " +"stable', 'testing', 'unstable', 'lenny', 'squeeze', '4.0', '5.0*' となりま" +"す。 &apt-preferences; も参照してください。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:117 +msgid "Ignore-Hold" +msgstr "Ignore-Hold" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:118 +msgid "" +"Ignore Held packages; This global option causes the problem resolver to " +"ignore held packages in its decision making." +msgstr "" +"保留パッケージの無視 - このグローバルオプションは、問題解決器に保留と指定した" +"パッケージを無視します。" + +# type: <tag></tag> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:122 +msgid "Clean-Installed" +msgstr "Clean-Installed" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:123 +msgid "" +"Defaults to on. When turned on the autoclean feature will remove any " +"packages which can no longer be downloaded from the cache. If turned off " +"then packages that are locally installed are also excluded from cleaning - " +"but note that APT provides no direct means to reinstall them." +msgstr "" +"デフォルトで有効です。autoclean 機能が on の時、ダウンロードできなくなった" +"パッケージをキャッシュから削除します。off の場合、ローカルにインストールされ" +"ているパッケージは、削除対象から外します。しかし、 APT はキャッシュから削除し" +"たパッケージの再インストール方法を、直接提供するわけではないことに注意してく" +"ださい。" + +# type: Content of: <refentry><refnamediv><refname> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:129 +msgid "Immediate-Configure" +msgstr "Immediate-Configure" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:130 +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><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:137 +msgid "Force-LoopBreak" +msgstr "Force-LoopBreak" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:138 +msgid "" +"Never Enable this option unless you -really- know what you are doing. It " +"permits APT to temporarily remove an essential package to break a Conflicts/" +"Conflicts or Conflicts/Pre-Depend loop between two essential packages. SUCH " +"A LOOP SHOULD NEVER EXIST AND IS A GRAVE BUG. This option will work if the " +"essential packages are not tar, gzip, libc, dpkg, bash or anything that " +"those packages depend on." +msgstr "" +"何をしようとしているのか「本当に」判っているのでなければ、絶対にこのオプショ" +"ンを有効にしないでください。不可欠 (essential) パッケージ同士で、競合 " +"(Conflicts) /競合や競合/事前依存 (Pre-Depend) のループに落ち込んだときに、不" +"可欠パッケージを一時的に削除してループを抜けられるようにします。<emphasis>そ" +"んなループはあり得ないはずで、あるとすれば重大なバグです。</emphasis>このオプ" +"ションは、tar, gzip, libc, dpkg, bash とそれらが依存しているパッケージ以外の" +"不可欠パッケージで動作します。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:146 +msgid "Cache-Limit" +msgstr "Cache-Limit" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:147 +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><variablelist><varlistentry><term> +#: apt.conf.5.xml:151 +msgid "Build-Essential" +msgstr "Build-Essential" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:152 +msgid "Defines which package(s) are considered essential build dependencies." +msgstr "構築依存関係で不可欠なパッケージを定義します。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:155 +msgid "Get" +msgstr "Get" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:156 +msgid "" +"The Get subsection controls the &apt-get; tool, please see its documentation " +"for more information about the options here." +msgstr "" +"Get サブセクションは &apt-get; ツールを制御します。このオプションの詳細は " +"&apt-get; の文書を参照してください。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:160 +msgid "Cache" +msgstr "Cache" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:161 +msgid "" +"The Cache subsection controls the &apt-cache; tool, please see its " +"documentation for more information about the options here." +msgstr "" +"Cache サブセクションは &apt-cache; ツールを制御します。このオプションの詳細" +"は &apt-cache; の文書を参照してください。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:165 +msgid "CDROM" +msgstr "CDROM" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:166 +msgid "" +"The CDROM subsection controls the &apt-cdrom; tool, please see its " +"documentation for more information about the options here." +msgstr "" +"CDROM サブセクションは &apt-cdrom; ツールを制御します。このオプションの詳細" +"は &apt-cdrom; の文書を参照してください。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:172 +msgid "The Acquire Group" +msgstr "Acquire グループ" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:177 +msgid "PDiffs" +msgstr "PDiffs" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:178 +msgid "" +"Try to download deltas called <literal>PDiffs</literal> for Packages or " +"Sources files instead of downloading whole ones. True by default." +msgstr "" +"Packages ファイルや Sources ファイルの全体をダウンロードするのではなく、" +"<literal>PDiffs</literal> と呼ばれる差分をダウンロードしようとします。デフォ" +"ルトでは True です。" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:183 +msgid "Queue-Mode" +msgstr "Queue-Mode" + +# type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:184 +msgid "" +"Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" +"literal> or <literal>access</literal> which determines how APT parallelizes " +"outgoing connections. <literal>host</literal> means that one connection per " +"target host will be opened, <literal>access</literal> means that one " +"connection per URI type will be opened." +msgstr "" +"キューモード - <literal>Queue-Mode</literal> は、APT がどのように並列接続を行" +"うか、<literal>host</literal> か <literal>access</literal> で指定できます。" +"<literal>host</literal> は、ターゲットホストごとに 1 接続を開きます。" +"<literal>access</literal> は、URI タイプごとに 1 接続を開きます。" + +# type: Content of: <refentry><refsect1><refsect2><title> +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:191 +msgid "Retries" +msgstr "Retries" + +# type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:192 +msgid "" +"Number of retries to perform. If this is non-zero APT will retry failed " +"files the given number of times." +msgstr "" +"リトライの回数を設定します。0 でない場合、APT は失敗したファイルに対して、与" +"えられた回数だけリトライを行います。" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:196 +msgid "Source-Symlinks" +msgstr "Source-Symlinks" + +# type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:197 +msgid "" +"Use symlinks for source archives. If set to true then source archives will " +"be symlinked when possible instead of copying. True is the default." +msgstr "" +"ソースアーカイブのシンボリックリンクを使用します。true がセットされていると" +"き、可能ならコピーの代わりにシンボリックリンクを張ります。true がデフォルトで" +"す。" + +# type: <tag></tag> +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:201 sources.list.5.xml:138 +msgid "http" +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:202 +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." +msgstr "" +"HTTP URI - http::Proxy は、デフォルトで使用する http プロキシです。" +"<literal>http://[[user][:pass]@]host[:port]/</literal> という標準形で表しま" +"す。ホストごとのプロキシの場合は、<literal>http::Proxy::<host></" +"literal> という形と、プロキシを使用しないという意味の特殊キーワード " +"<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> +#: apt.conf.5.xml:209 +msgid "" +"Three settings are provided for cache control with HTTP/1.1 compliant proxy " +"caches. <literal>No-Cache</literal> tells the proxy to not use its cached " +"response under any circumstances, <literal>Max-Age</literal> is sent only " +"for index files and tells the cache to refresh its object if it is older " +"than the given number of seconds. Debian updates its index files daily so " +"the default is 1 day. <literal>No-Store</literal> specifies that the cache " +"should never store this request, it is only set for archive files. This may " +"be useful to prevent polluting a proxy cache with very large .deb files. " +"Note: Squid 2.0.2 does not support any of these options." +msgstr "" +"HTTP/1.1 準拠のプロキシキャッシュの制御について 3 種類の設定があります。" +"<literal>No-Cache</literal> はプロキシに対して、いかなる時もキャッシュを使用" +"しないと伝えます。<literal>Max-Age</literal> は、インデックスファイル用のとき" +"だけ送信し、得られた時間よりも古かった場合に、オブジェクトをリフレッシュする" +"ようキャッシュに指示します。デフォルトでは 1 日となっているため、Debian は日" +"毎にそのインデックスファイルを更新します。<literal>No-Store</literal> は、" +"キャッシュがこのリクエストを格納せず、アーカイブファイルのみ設定するよう指定" +"します。これは、非常に大きな .deb ファイルで、プロキシキャッシュが汚れるのを" +"防ぐのに便利かもしれません。注) Squid 2.0.2 では、これらのオプションをサポー" +"トしていません。" + +# type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:219 apt.conf.5.xml:267 +msgid "" +"The option <literal>timeout</literal> sets the timeout timer used by the " +"method, this applies to all things including connection timeout and data " +"timeout." +msgstr "" +"<literal>timeout</literal> オプションは、この方法でのタイムアウトまでの時間を" +"設定します。これには、接続のタイムアウトとデータのタイムアウトが含まれていま" +"す。" + +# type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:222 +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." +msgstr "" +"リモートサーバが RFC 準拠でなかったり、(Squid 2.0.2 のように) バグがあったり" +"したときのために、パイプラインの深さの制御を設定します。<literal>Acquire::" +"http::Pipeline-Depth</literal> により、APT が送信できるリクエストの回数を 0 " +"から 5 の値で設定できます。リモートサーバが適切でなく、TCP 接続に時間がかかる" +"ときは、<emphasis>必ず</emphasis> 0 の値を設定しなければなりません。そうでな" +"ければデータが破損してしまいます。これが必要なホストは RFC 2068 に違反してい" +"ます。" + +# type: <tag></tag> +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:231 +msgid "https" +msgstr "https" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:232 +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." +msgstr "" +"HTTPS URI - キャッシュの制御やプロキシオプションは <literal>http</literal> メ" +"ソッドと同様です。<literal>Pipeline-Depth</literal> オプションはまだサポート" +"していません。" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:236 +msgid "" +"<literal>CaInfo</literal> suboption specifies place of file that holds info " +"about trusted certificates. <literal><host>::CaInfo</literal> is " +"corresponding per-host option. <literal>Verify-Peer</literal> boolean " +"suboption determines whether verify server's host certificate against " +"trusted certificates or not. <literal><host>::Verify-Peer</literal> " +"is corresponding per-host option. <literal>Verify-Host</literal> boolean " +"suboption determines whether verify server's hostname or not. <literal><" +"host>::Verify-Host</literal> is corresponding per-host option. " +"<literal>SslCert</literal> determines what certificate to use for client " +"authentication. <literal><host>::SslCert</literal> is corresponding " +"per-host option. <literal>SslKey</literal> determines what private key to " +"use for client authentication. <literal><host>::SslKey</literal> is " +"corresponding per-host option. <literal>SslForceVersion</literal> overrides " +"default SSL version to use. Can contain 'TLSv1' or 'SSLv3' string. " +"<literal><host>::SslForceVersion</literal> is corresponding per-host " +"option." +msgstr "" + +# type: <tag></tag> +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:254 sources.list.5.xml:149 +msgid "ftp" +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:255 +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." +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> <literal>$(SITE_USER)</literal> <literal>$(SITE_PASS)</literal> " +"<literal>$(SITE)</literal> and <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> +#: apt.conf.5.xml:270 +msgid "" +"Several settings are provided to control passive mode. Generally it is safe " +"to leave passive mode on, it works in nearly every environment. However " +"some situations require that passive mode be disabled and port mode ftp used " +"instead. This can be done globally, for connections that go through a proxy " +"or for a specific host (See the sample config file for examples)." +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:277 +msgid "" +"It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" +"envar> environment variable to a http url - see the discussion of the http " +"method above for syntax. You cannot set this in the configuration file and " +"it is not recommended to use FTP over HTTP due to its low efficiency." +msgstr "" +"環境変数 <envar>ftp_proxy</envar> の http url により FTP over HTTP のプロキシ" +"が利用可能になります。文法は上の http についての説明を参照してください。設定" +"ファイルの中でこれをセットすることはできません。また、効率が悪いため FTP " +"over 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:282 +msgid "" +"The setting <literal>ForceExtended</literal> controls the use of RFC2428 " +"<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " +"false, which means these commands are only used if the control connection is " +"IPv6. Setting this to true forces their use even on IPv4 connections. Note " +"that most FTP servers do not support RFC2428." +msgstr "" +"<literal>ForceExtended</literal> の設定は RFC2428 の <literal>EPSV</literal> " +"コマンドと <literal>EPRT</literal> コマンドの使用を制御します。デフォルトで" +"は false で、コントロールコネクションが IPv6 の時にのみ、このコマンドを使用す" +"るということです。これを true にセットすると、IPv4 コネクションでも、強制的に" +"このコマンドを使用します。ほとんどの FTP サーバは RFC2428 をサポートしていな" +"いことに注意してください。" + +# type: Content of: <refentry><refnamediv><refname> +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:289 sources.list.5.xml:131 +msgid "cdrom" +msgstr "cdrom" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> +#: apt.conf.5.xml:295 +#, no-wrap +msgid "\"/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> +#: apt.conf.5.xml:290 +msgid "" +"CDROM URIs; the only setting for CDROM URIs is the mount point, " +"<literal>cdrom::Mount</literal> which must be the mount point for the CDROM " +"drive as specified in <filename>/etc/fstab</filename>. It is possible to " +"provide alternate mount and unmount commands if your mount point cannot be " +"listed in the fstab (such as an SMB mount and old mount packages). The " +"syntax is to put <placeholder type=\"literallayout\" id=\"0\"/> within the " +"cdrom block. It is important to have the trailing slash. Unmount commands " +"can be specified using UMount." +msgstr "" +"CDROM URI - CDROM URI はマウントポイントの設定のみを行います。<filename>/etc/" +"fstab</filename> で設定されているように、CDROM ドライブのマウントポイントを " +"<literal>cdrom::Mount</literal> に設定しなければなりません。(SMB マウントや古" +"い mount パッケージなど) マウントポイントが fstab に記述できない場合、かわり" +"にマウント・アンマウントコマンドも使用できます。文法は、cdrom ブロックを " +"<placeholder type=\"literallayout\" id=\"0\"/> の形で記述します。スラッシュを" +"後につけるのが重要です。アンマウントコマンドは UMount で指定することができま" +"す。" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:300 +msgid "gpgv" +msgstr "gpgv" + +# type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:301 +msgid "" +"GPGV URIs; the only option for GPGV URIs is the option to pass additional " +"parameters to gpgv. <literal>gpgv::Options</literal> Additional options " +"passed to gpgv." +msgstr "" +"GPGV URI - GPGV URI 用の唯一のオプションは、gpgv に渡す追加パラメータのオプ" +"ションです。<literal>gpgv::Options</literal> が gpgv に渡す追加オプションで" +"す。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:173 +msgid "" +"The <literal>Acquire</literal> group of options controls the download of " +"packages and the URI handlers. <placeholder type=\"variablelist\" id=\"0\"/>" +msgstr "" +"オプションの <literal>Acquire</literal> グループは、パッケージのダウンロード" +"や URI ハンドラの制御を行います。<placeholder type=\"variablelist\" id=\"0\"/" +">" + +# type: Content of: <refentry><refsect1><refsect2><title> +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:310 +msgid "Directories" +msgstr "ディレクトリ" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:312 +msgid "" +"The <literal>Dir::State</literal> section has directories that pertain to " +"local state information. <literal>lists</literal> is the directory to place " +"downloaded package lists in and <literal>status</literal> is the name of the " +"dpkg status file. <literal>preferences</literal> is the name of the APT " +"preferences file. <literal>Dir::State</literal> contains the default " +"directory to prefix on all sub items if they do not start with <filename>/</" +"filename> or <filename>./</filename>." +msgstr "" +"<literal>Dir::State</literal> セクションは、ローカル状態情報に関するディレク" +"トリを保持します。<literal>lists</literal> は、ダウンロードしたパッケージ一覧" +"を格納するディレクトリで、<literal>status</literal> は dpkg の状態ファイルの" +"名前を表します。<literal>preferences</literal> は APT の 設定ファイルの名前で" +"す。<literal>Dir::State</literal> には、<filename>/</filename> や " +"<filename>./</filename> で始まらないサブアイテムすべてに、前に付加するデフォ" +"ルトディレクトリを含んでいます。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:319 +msgid "" +"<literal>Dir::Cache</literal> contains locations pertaining to local cache " +"information, such as the two package caches <literal>srcpkgcache</literal> " +"and <literal>pkgcache</literal> as well as the location to place downloaded " +"archives, <literal>Dir::Cache::archives</literal>. Generation of caches can " +"be turned off by setting their names to be blank. This will slow down " +"startup but save disk space. It is probably preferred to turn off the " +"pkgcache rather than the srcpkgcache. Like <literal>Dir::State</literal> the " +"default directory is contained in <literal>Dir::Cache</literal>" +msgstr "" +"<literal>Dir::Cache</literal> は、ローカルキャッシュ情報に関する場所を格納し" +"ています。これは、ダウンロード済アーカイブの場所を示す <literal>Dir::Cache::" +"archives</literal> と同様に、<literal>srcpkgcache</literal> と " +"<literal>pkgcache</literal> のパッケージキャッシュの場所になります。それぞれ" +"を空にセットすることで、キャッシュの生成を無効にできます。これにより起動時に" +"遅くなりますが、ディスク容量を節約できます。おそらく、srcpkgcache よりも " +"pkgcache を無効にすることが多いと思います。<literal>Dir::State</literal> と同" +"様、<literal>Dir::Cache</literal> はデフォルトディレクトリを含んでいます。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:328 +msgid "" +"<literal>Dir::Etc</literal> contains the location of configuration files, " +"<literal>sourcelist</literal> gives the location of the sourcelist and " +"<literal>main</literal> is the default configuration file (setting has no " +"effect, unless it is done from the config file specified by " +"<envar>APT_CONFIG</envar>)." +msgstr "" +"<literal>Dir::Etc</literal> は設定ファイルの場所を格納しています。" +"<literal>sourcelist</literal> はソースリストの場所を示し、<literal>main</" +"literal> はデフォルトの設定ファイルです。(<envar>APT_CONFIG</envar> で設定" +"ファイルを指定された場合のみ、この設定の効果があります)" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:334 +msgid "" +"The <literal>Dir::Parts</literal> setting reads in all the config fragments " +"in lexical order from the directory specified. After this is done then the " +"main config file is loaded." +msgstr "" +"<literal>Dir::Parts</literal> 設定は、指定されたディレクトリから、字句単位の" +"全ての設定断片を読みこみます。これを設定した後に、メイン設定ファイルをロード" +"します。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:338 +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." +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> はそれぞれプログラムの場所を指定します。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:345 +msgid "" +"The configuration item <literal>RootDir</literal> has a special meaning. If " +"set, all paths in <literal>Dir::</literal> will be relative to " +"<literal>RootDir</literal>, <emphasis>even paths that are specified " +"absolutely</emphasis>. So, for instance, if <literal>RootDir</literal> is " +"set to <filename>/tmp/staging</filename> and <literal>Dir::State::status</" +"literal> is set to <filename>/var/lib/dpkg/status</filename>, then the " +"status file will be looked up in <filename>/tmp/staging/var/lib/dpkg/status</" +"filename>." +msgstr "" +"設定項目 <literal>RootDir</literal> は特別な意味を持ちます。設定されている" +"と、<literal>Dir::</literal> のすべてのパスは、<emphasis>絶対パスとして指定し" +"ても</emphasis><literal>RootDir</literal> からの相対パスとなります。そのため" +"例えば、<literal>RootDir</literal> が <filename>/tmp/staging</filename> に" +"セットされており、<literal>Dir::State::status</literal> が <filename>/var/" +"lib/dpkg/status</filename> にセットされている場合、status ファイルを " +"<filename>/tmp/staging/var/lib/dpkg/status</filename> から探します。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:358 +msgid "APT in DSelect" +msgstr "DSelect での APT" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:360 +msgid "" +"When APT is used as a &dselect; method several configuration directives " +"control the default behaviour. These are in the <literal>DSelect</literal> " +"section." +msgstr "" +"&dselect; 上で APT を使用する際、<literal>DSelect</literal> セクション以下の" +"設定項目で、デフォルトの動作を制御します。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:364 +msgid "Clean" +msgstr "Clean" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:365 +msgid "" +"Cache Clean mode; this value may be one of always, prompt, auto, pre-auto " +"and never. always and prompt will remove all packages from the cache after " +"upgrading, prompt (the default) does so conditionally. auto removes only " +"those packages which are no longer downloadable (replaced with a new version " +"for instance). pre-auto performs this action before downloading new " +"packages." +msgstr "" +"キャッシュクリーンモード - この値は always, prompt, auto, pre-auto, never の" +"うちひとつを取ります。always と prompt は更新後、全パッケージをキャッシュから" +"削除します。prompt (デフォルト) では条件付きで削除します。auto はダウンロード" +"不能パッケージ (例えば新バージョンで置き換えられたもの) を削除します。pre-" +"auto はこの動作を、新パッケージをダウンロードする直前に行います。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:374 +msgid "" +"The contents of this variable is passed to &apt-get; as command line options " +"when it is run for the install phase." +msgstr "" +"この変数の内容は、install 時のコマンドラインオプションと同様に &apt-get; に渡" +"されます。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:378 +msgid "Updateoptions" +msgstr "Updateoptions" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:379 +msgid "" +"The contents of this variable is passed to &apt-get; as command line options " +"when it is run for the update phase." +msgstr "" +"この変数の内容は、update 時のコマンドラインオプションと同様に &apt-get; に渡" +"されます。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:383 +msgid "PromptAfterUpdate" +msgstr "PromptAfterUpdate" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:384 +msgid "" +"If true the [U]pdate operation in &dselect; will always prompt to continue. " +"The default is to prompt only on error." +msgstr "" +"true の場合、&dselect; の [U]pdate 実行時に、続行のためのプロンプトを毎回表示" +"します。デフォルトはエラーが発生した場合のみです。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:390 +msgid "How APT calls dpkg" +msgstr "APT が dpkg を呼ぶ方法" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:391 +msgid "" +"Several configuration directives control how APT invokes &dpkg;. These are " +"in the <literal>DPkg</literal> section." +msgstr "" +"いくつかの設定項目で APT がどのように &dpkg; を呼び出すかを制御できます。" +"<literal>DPkg</literal> セクションにあります。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:396 +msgid "" +"This is a list of options to pass to dpkg. The options must be specified " +"using the list notation and each list item is passed as a single argument to " +"&dpkg;." +msgstr "" +"dpkg に渡すオプションのリストです。オプションは、リスト記法を使用して指定しな" +"ければなりません。また、各リストは単一の引数として &dpkg; に渡されます。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:401 +msgid "Pre-Invoke" +msgstr "Pre-Invoke" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:401 +msgid "Post-Invoke" +msgstr "Post-Invoke" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:402 +msgid "" +"This is a list of shell commands to run before/after invoking &dpkg;. Like " +"<literal>options</literal> this must be specified in list notation. The " +"commands are invoked in order using <filename>/bin/sh</filename>, should any " +"fail APT will abort." +msgstr "" +"&dpkg; を呼び出す前後で実行するシェルコマンドのリストです。<literal>options</" +"literal> のようにリスト記法で指定しなければなりません。コマンドは <filename>/" +"bin/sh</filename> を使用して呼び出され、何か問題があれば APT は異常終了しま" +"す。" + +# type: <tag></tag> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:408 +msgid "Pre-Install-Pkgs" +msgstr "Pre-Install-Pkgs" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:409 +msgid "" +"This is a list of shell commands to run before invoking dpkg. Like " +"<literal>options</literal> this must be specified in list notation. The " +"commands are invoked in order using <filename>/bin/sh</filename>, should any " +"fail APT will abort. APT will pass to the commands on standard input the " +"filenames of all .deb files it is going to install, one per line." +msgstr "" +"&dpkg; を呼び出す前に実行するシェルコマンドのリストです。<literal>options</" +"literal> のようにリスト記法で指定しなければなりません。コマンドは <filename>/" +"bin/sh</filename> を通して呼び出され、何か問題があれば、APT は異常終了しま" +"す。APT はインストールしようとする全 .deb ファイルのファイル名を、ひとつずつ" +"コマンドの標準入力に送ります。" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:415 +msgid "" +"Version 2 of this protocol dumps more information, including the protocol " +"version, the APT configuration space and the packages, files and versions " +"being changed. Version 2 is enabled by setting <literal>DPkg::Tools::" +"options::cmd::Version</literal> to 2. <literal>cmd</literal> is a command " +"given to <literal>Pre-Install-Pkgs</literal>." +msgstr "" +"このプロトコルのバージョン 2 では、(プロトコルのバージョンや APT 設定スペー" +"ス、パッケージを含む) 詳細情報やファイル、変更されているバージョンを出力しま" +"す。<literal>DPkg::Tools::options::cmd::Version</literal> に 2 を設定すると、" +"バージョン 2 を有効にできます。<literal>cmd</literal> は <literal>Pre-" +"Install-Pkgs</literal> で与えられるコマンドです。" + +# type: Content of: <refentry><refsect1><refsect2><title> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:422 +msgid "Run-Directory" +msgstr "Run-Directory" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:423 +msgid "" +"APT chdirs to this directory before invoking dpkg, the default is <filename>/" +"</filename>." +msgstr "" +"APT は dpkg を呼び出す前にこのディレクトリに移動します。デフォルトは " +"<filename>/</filename> です。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:427 +msgid "Build-options" +msgstr "Build-options" + +# type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:428 +msgid "" +"These options are passed to &dpkg-buildpackage; when compiling packages, the " +"default is to disable signing and produce all binaries." +msgstr "" +"これらのオプションは、パッケージのコンパイル時に &dpkg-buildpackage; に渡され" +"ます。デフォルトでは署名を無効にし、全バイナリを生成します。" + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:435 +msgid "Periodic and Archives options" +msgstr "Periodic オプションと Archives オプション" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:436 +msgid "" +"<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " +"of options configure behavior of apt periodic updates, which is done by " +"<literal>/etc/cron.daily/apt</literal> script. See header of this script for " +"the brief documentation of these options." +msgstr "" +"オプションの <literal>APT::Periodic</literal> グループと <literal>APT::" +"Archives</literal> グループは、<literal>/etc/cron.daily/apt</literal> スクリ" +"プトを使用して、apt の定期更新の挙動を設定します。このオプションのドキュメン" +"トは、このスクリプトの先頭を参照してください。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:444 +msgid "Debug options" +msgstr "デバッグオプション" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:446 +msgid "" +"Enabling options in the <literal>Debug::</literal> section will cause " +"debugging information to be sent to the standard error stream of the program " +"utilizing the <literal>apt</literal> libraries, or enable special program " +"modes that are primarily useful for debugging the behavior of <literal>apt</" +"literal>. Most of these options are not interesting to a normal user, but a " +"few may be:" +msgstr "" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.conf.5.xml:457 +msgid "" +"<literal>Debug::pkgProblemResolver</literal> enables output about the " +"decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" +"literal>." +msgstr "" +"<literal>Debug::pkgProblemResolver</literal> は、<literal>dist-upgrade, " +"upgrade, install, remove, purge</literal> で行われた判断についての出力を有効" +"にします。" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.conf.5.xml:465 +msgid "" +"<literal>Debug::NoLocking</literal> disables all file locking. This can be " +"used to run some operations (for instance, <literal>apt-get -s install</" +"literal>) as a non-root user." +msgstr "" +"<literal>Debug::NoLocking</literal> はファイルロックをすべて無効にします。こ" +"れは、非 root ユーザとして操作 (例えば <literal>apt-get -s install</" +"literal>) を行う場合に使用します。" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.conf.5.xml:474 +msgid "" +"<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " +"time that <literal>apt</literal> invokes &dpkg;." +msgstr "" + +#. TODO: provide a +#. motivating example, except I haven't a clue why you'd want +#. to do this. +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.conf.5.xml:482 +msgid "" +"<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " +"in CDROM IDs." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:492 +msgid "A full list of debugging options to apt follows." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:497 +msgid "<literal>Debug::Acquire::cdrom</literal>" +msgstr "<literal>Debug::Acquire::cdrom</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:501 +msgid "" +"Print information related to accessing <literal>cdrom://</literal> sources." +msgstr "" +"<literal>cdrom://</literal> ソースへのアクセスに関する情報を出力します。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:508 +msgid "<literal>Debug::Acquire::ftp</literal>" +msgstr "<literal>Debug::Acquire::ftp</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:512 +msgid "Print information related to downloading packages using FTP." +msgstr "FTP を用いたパッケージのダウンロードに関する情報を出力します。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:519 +msgid "<literal>Debug::Acquire::http</literal>" +msgstr "<literal>Debug::Acquire::http</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:523 +msgid "Print information related to downloading packages using HTTP." +msgstr "HTTP を用いたパッケージのダウンロードに関する情報を出力します。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:530 +msgid "<literal>Debug::Acquire::https</literal>" +msgstr "<literal>Debug::Acquire::https</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:534 +msgid "Print information related to downloading packages using HTTPS." +msgstr "HTTPS を用いたパッケージのダウンロードに関する情報を出力します。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:541 +msgid "<literal>Debug::Acquire::gpgv</literal>" +msgstr "<literal>Debug::Acquire::gpgv</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:545 +msgid "" +"Print information related to verifying cryptographic signatures using " +"<literal>gpg</literal>." +msgstr "" +"<literal>gpg</literal> を用いた暗号署名の検証に関する情報を出力します。" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:552 +msgid "<literal>Debug::aptcdrom</literal>" +msgstr "<literal>Debug::aptcdrom</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:556 +msgid "" +"Output information about the process of accessing collections of packages " +"stored on CD-ROMs." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:563 +msgid "<literal>Debug::BuildDeps</literal>" +msgstr "<literal>Debug::BuildDeps</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:566 +msgid "Describes the process of resolving build-dependencies in &apt-get;." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:573 +msgid "<literal>Debug::Hashes</literal>" +msgstr "<literal>Debug::Hashes</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:576 +msgid "" +"Output each cryptographic hash that is generated by the <literal>apt</" +"literal> libraries." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:583 +msgid "<literal>Debug::IdentCDROM</literal>" +msgstr "<literal>Debug::IdentCDROM</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:586 +msgid "" +"Do not include information from <literal>statfs</literal>, namely the number " +"of used and free blocks on the CD-ROM filesystem, when generating an ID for " +"a CD-ROM." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:594 +msgid "<literal>Debug::NoLocking</literal>" +msgstr "<literal>Debug::NoLocking</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:597 +msgid "" +"Disable all file locking. For instance, this will allow two instances of " +"<quote><literal>apt-get update</literal></quote> to run at the same time." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:605 +msgid "<literal>Debug::pkgAcquire</literal>" +msgstr "<literal>Debug::pkgAcquire</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:609 +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:616 +msgid "<literal>Debug::pkgAcquire::Auth</literal>" +msgstr "<literal>Debug::pkgAcquire::Auth</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:619 +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:626 +msgid "<literal>Debug::pkgAcquire::Diffs</literal>" +msgstr "<literal>Debug::pkgAcquire::Diffs</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:629 +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:637 +msgid "<literal>Debug::pkgAcquire::RRed</literal>" +msgstr "<literal>Debug::pkgAcquire::RRed</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:641 +msgid "" +"Output information related to patching apt package lists when downloading " +"index diffs instead of full indices." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:648 +msgid "<literal>Debug::pkgAcquire::Worker</literal>" +msgstr "<literal>Debug::pkgAcquire::Worker</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:652 +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:659 +msgid "<literal>Debug::pkgAutoRemove</literal>" +msgstr "<literal>Debug::pkgAutoRemove</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:663 +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:670 +msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>" +msgstr "<literal>Debug::pkgDepCache::AutoInstall</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:673 +msgid "" +"Generate debug messages describing which packages are being automatically " +"installed to resolve dependencies. This corresponds to the initial auto-" +"install pass performed in, e.g., <literal>apt-get install</literal>, and not " +"to the full <literal>apt</literal> dependency resolver; see <literal>Debug::" +"pkgProblemResolver</literal> for that." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:684 +msgid "<literal>Debug::pkgDepCache::Marker</literal>" +msgstr "<literal>Debug::pkgDepCache::Marker</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:687 +msgid "" +"Generate debug messages describing which package is marked as keep/install/" +"remove while the ProblemResolver does his work. Each addition or deletion " +"may trigger additional actions; they are shown indented two additional space " +"under the original entry. The format for each line is <literal>MarkKeep</" +"literal>, <literal>MarkDelete</literal> or <literal>MarkInstall</literal> " +"followed by <literal>package-name <a.b.c -> d.e.f | x.y.z> (section)" +"</literal> where <literal>a.b.c</literal> is the current version of the " +"package, <literal>d.e.f</literal> is the version considered for installation " +"and <literal>x.y.z</literal> is a newer version, but not considered for " +"installation (because of a low pin score). The later two can be omitted if " +"there is none or if it is the same version as the installed. " +"<literal>section</literal> is the name of the section the package appears in." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:706 +msgid "<literal>Debug::pkgInitConfig</literal>" +msgstr "<literal>Debug::pkgInitConfig</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:709 +msgid "Dump the default configuration to standard error on startup." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:716 +msgid "<literal>Debug::pkgDPkgPM</literal>" +msgstr "<literal>Debug::pkgDPkgPM</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:719 +msgid "" +"When invoking &dpkg;, output the precise command line with which it is being " +"invoked, with arguments separated by a single space character." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:727 +msgid "<literal>Debug::pkgDPkgProgressReporting</literal>" +msgstr "<literal>Debug::pkgDPkgProgressReporting</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:730 +msgid "" +"Output all the data received from &dpkg; on the status file descriptor and " +"any errors encountered while parsing it." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:737 +msgid "<literal>Debug::pkgOrderList</literal>" +msgstr "<literal>Debug::pkgOrderList</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:741 +msgid "" +"Generate a trace of the algorithm that decides the order in which " +"<literal>apt</literal> should pass packages to &dpkg;." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:749 +msgid "<literal>Debug::pkgPackageManager</literal>" +msgstr "<literal>Debug::pkgPackageManager</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:753 +msgid "" +"Output status messages tracing the steps performed when invoking &dpkg;." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:760 +msgid "<literal>Debug::pkgPolicy</literal>" +msgstr "<literal>Debug::pkgPolicy</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:764 +msgid "Output the priority of each package list on startup." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:770 +msgid "<literal>Debug::pkgProblemResolver</literal>" +msgstr "<literal>Debug::pkgProblemResolver</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:774 +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:782 +msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>" +msgstr "<literal>Debug::pkgProblemResolver::ShowScores</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:785 +msgid "" +"Display a list of all installed packages with their calculated score used by " +"the pkgProblemResolver. The description of the package is the same as " +"described in <literal>Debug::pkgDepCache::Marker</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:793 +msgid "<literal>Debug::sourceList</literal>" +msgstr "<literal>Debug::sourceList</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:797 +msgid "" +"Print information about the vendors read from <filename>/etc/apt/vendors." +"list</filename>." +msgstr "" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:819 +msgid "" +"&configureindex; is a configuration file showing example values for all " +"possible options." +msgstr "" +"&configureindex; に、全利用可能オプションのデフォルト値を参照できる、設定ファ" +"イルのサンプルがあります。" + +# type: Content of: <refentry><refsect1><para> +#. ? reading apt.conf +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:829 +msgid "&apt-cache;, &apt-config;, &apt-preferences;." +msgstr "&apt-cache;, &apt-config;, &apt-preferences;." + +#. The last update date +#. type: Content of: <refentry><refentryinfo> +#: apt_preferences.5.xml:13 +msgid "&apt-author.team; &apt-email; &apt-product; <date>04 May 2009</date>" +msgstr "&apt-author.team; &apt-email; &apt-product; <date>04 May 2009</date>" + +# type: Content of: <refentry><refnamediv><refname> +#. type: Content of: <refentry><refnamediv><refname> +#: apt_preferences.5.xml:21 apt_preferences.5.xml:27 +msgid "apt_preferences" +msgstr "apt_preferences" + +# type: Content of: <refentry><refnamediv><refpurpose> +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt_preferences.5.xml:28 +msgid "Preference control file for APT" +msgstr "APT 設定制御ファイル" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt_preferences.5.xml:33 +msgid "" +"The APT preferences file <filename>/etc/apt/preferences</filename> can be " +"used to control which versions of packages will be selected for installation." +msgstr "" +"APT 設定ファイル <filename>/etc/apt/preferences</filename> は、インストールす" +"るパッケージのバージョン選択を制御するのに使用します。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt_preferences.5.xml:37 +msgid "" +"Several versions of a package may be available for installation when the " +"&sources-list; file contains references to more than one distribution (for " +"example, <literal>stable</literal> and <literal>testing</literal>). APT " +"assigns a priority to each version that is available. Subject to dependency " +"constraints, <command>apt-get</command> selects the version with the highest " +"priority for installation. The APT preferences file overrides the " +"priorities that APT assigns to package versions by default, thus giving the " +"user control over which one is selected for installation." +msgstr "" +"&sources-list; ファイルに複数のディストリビューション (<literal>stable</" +"literal> と <literal>testing</literal> など) が指定されていて、パッケージに対" +"し複数のバージョンがインストールできることがあります。このとき APT は、利用で" +"きるバージョンごとに優先度を割り当てます。依存関係規則を条件として、" +"<command>apt-get</command> は、最も高い優先度を持つバージョンをインストールす" +"るよう選択します。APT 設定ファイルは、APT がデフォルトで割り当てた、パッケー" +"ジのバージョンの優先度を上書きします。その結果インストールするものの選択を、" +"ユーザが選択できるようになります。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt_preferences.5.xml:47 +msgid "" +"Several instances of the same version of a package may be available when the " +"&sources-list; file contains references to more than one source. In this " +"case <command>apt-get</command> downloads the instance listed earliest in " +"the &sources-list; file. The APT preferences file does not affect the " +"choice of instance, only the choice of version." +msgstr "" +"&sources-list; ファイルに複数の参照が書かれている場合、パッケージの同じバー" +"ジョンのインスタンスが複数利用できる可能性があります。この場合、<command>apt-" +"get</command> は &sources-list; ファイルの初めの方に指定されているところから" +"ダウンロードします。APT 設定ファイルはバージョンの選択にのみ影響し、インスタ" +"ンスの選択には影響しません。" + +# type: Content of: <refentry><refsect1><refsect2><title> +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:54 +msgid "APT's Default Priority Assignments" +msgstr "APT のデフォルト優先度の割り当て" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:69 +#, 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" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:72 +#, no-wrap +msgid "APT::Default-Release \"stable\";\n" +msgstr "APT::Default-Release \"stable\";\n" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:56 +msgid "" +"If there is no preferences file or if there is no entry in the file that " +"applies to a particular version then the priority assigned to that version " +"is the priority of the distribution to which that version belongs. It is " +"possible to single out a distribution, \"the target release\", which " +"receives a higher priority than other distributions do by default. The " +"target release can be set on the <command>apt-get</command> command line or " +"in the APT configuration file <filename>/etc/apt/apt.conf</filename>. Note " +"that this has precedence over any general priority you set in the <filename>/" +"etc/apt/preferences</filename> file described later, but not over " +"specifically pinned packages. For example, <placeholder type=" +"\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>" +msgstr "" +"設定ファイルがなかったり、設定ファイルに特定のパッケージを割り当てるエントリ" +"がない場合、そのバージョンの優先度は、そのバージョンが属しているディストリ" +"ビューションの優先度となります。デフォルトで他のディストリビューションより高" +"い優先度を持つ、特定のディストリビューションを「ターゲットリリース」としてお" +"けます。後述する <filename>/etc/apt/preferences</filename> ファイルで設定した" +"一般優先度よりもこれは優先されますが、pin 止めしたパッケージには及ばないこと" +"に注意してください。例えば以下のようになります。<placeholder type=" +"\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>" + +# type: <tag></tag> +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:81 +msgid "priority 100" +msgstr "priority 100" + +# 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:82 +msgid "to the version that is already installed (if any)." +msgstr "(あるならば) 既にインストールされているバージョン。" + +# type: <tag></tag> +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:86 +msgid "priority 500" +msgstr "priority 500" + +# 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:87 +msgid "" +"to the versions that are not installed and do not belong to the target " +"release." +msgstr "インストールされておらず、ターゲットリリースに含まれないバージョン。" + +# type: <tag></tag> +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:91 +msgid "priority 990" +msgstr "priority 990" + +# 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:92 +msgid "" +"to the versions that are not installed and belong to the target release." +msgstr "インストールされておらず、ターゲットリリースに含まれるバージョン。" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:76 +msgid "" +"If the target release has been specified then APT uses the following " +"algorithm to set the priorities of the versions of a package. Assign: " +"<placeholder type=\"variablelist\" id=\"0\"/>" +msgstr "" +"ターゲットリリースが指定されると、APT は以下のアルゴリズムで、パッケージの" +"バージョンの優先度を設定します。以下のように割り当てます。<placeholder type=" +"\"variablelist\" id=\"0\"/>" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:97 +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." +msgstr "" +"ターゲットリリースが指定されていなければ、APT は単純にインストールしている" +"パッケージのバージョンには 100 を、インストールしていないパッケージのバージョ" +"ンには 500 を割り当てます。" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:101 +msgid "" +"APT then applies the following rules, listed in order of precedence, to " +"determine which version of a package to install." +msgstr "" +"APT は、インストールするパッケージのバージョンを決定するために、以下のルール" +"を上から順番に適用します。" + +# type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:104 +msgid "" +"Never downgrade unless the priority of an available version exceeds 1000. " +"(\"Downgrading\" is installing a less recent version of a package in place " +"of a more recent version. Note that none of APT's default priorities " +"exceeds 1000; such high priorities can only be set in the preferences file. " +"Note also that downgrading a package can be risky.)" +msgstr "" +"有効なバージョンの優先度が 1000 を越えない場合、決してダウングレードしませ" +"ん。(「ダウングレード」は、現在のパッケージのバージョンよりも、小さいバージョ" +"ンのものをインストールします。APT のデフォルト優先度が 1000 を越えないことに" +"注意してください。そのような優先度は設定ファイルでのみ設定できます。また、" +"パッケージのダウングレードは危険であることにも注意してください)" + +# type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:110 +msgid "Install the highest priority version." +msgstr "最も高い優先度のバージョンをインストールします。" + +# type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:111 +msgid "" +"If two or more versions have the same priority, install the most recent one " +"(that is, the one with the higher version number)." +msgstr "" +"同じ優先度のバージョンが複数存在する場合、最も新しいもの (最もバージョン番号" +"が高いもの) をインストールします。" + +# type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:114 +msgid "" +"If two or more versions have the same priority and version number but either " +"the packages differ in some of their metadata or the <literal>--reinstall</" +"literal> option is given, install the uninstalled one." +msgstr "" +"優先度・バージョン番号が同じものが複数存在し、そのパッケージのメタデータが異" +"なるか <literal>--reinstall</literal> オプションが与えられている場合、インス" +"トールされていないものをインストールします。" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:120 +msgid "" +"In a typical situation, the installed version of a package (priority 100) " +"is not as recent as one of the versions available from the sources listed in " +"the &sources-list; file (priority 500 or 990). Then the package will be " +"upgraded when <command>apt-get install <replaceable>some-package</" +"replaceable></command> or <command>apt-get upgrade</command> is executed." +msgstr "" +"よくある状況として、あるインストールされているパッケージのバージョン (優先度 " +"100) が、&sources-list; ファイルのリストから得られるバージョン (優先度 500 " +"か 990) よりも新しくないということがあります。この場合、<command>apt-get " +"install <replaceable>some-package</replaceable></command> や <command>apt-" +"get upgrade</command> を実行するとパッケージが更新されます。" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:127 +msgid "" +"More rarely, the installed version of a package is <emphasis>more</emphasis> " +"recent than any of the other available versions. The package will not be " +"downgraded when <command>apt-get install <replaceable>some-package</" +"replaceable></command> or <command>apt-get upgrade</command> is executed." +msgstr "" +"まれに、インストールされているパッケージのバージョンが、<emphasis>他の有効な" +"バージョンよりも</emphasis>新しい場合があります。この時 <command>apt-get " +"install <replaceable>some-package</replaceable></command> や <command>apt-" +"get upgrade</command> を実行しても、ダウングレードしません。" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:132 +msgid "" +"Sometimes the installed version of a package is more recent than the version " +"belonging to the target release, but not as recent as a version belonging to " +"some other distribution. Such a package will indeed be upgraded when " +"<command>apt-get install <replaceable>some-package</replaceable></command> " +"or <command>apt-get upgrade</command> is executed, because at least " +"<emphasis>one</emphasis> of the available versions has a higher priority " +"than the installed version." +msgstr "" +"時々、インストールしているパッケージのバージョンが、ターゲットリリースに属す" +"るバージョンよりも新しく、他のディストリビューションよりも古い場合がありま" +"す。そのようなパッケージに対して <command>apt-get install <replaceable>some-" +"package</replaceable></command> や <command>apt-get upgrade</command> を実行" +"すると、パッケージは更新されます。この場合、インストールされているバージョン" +"よりも、少なくとも<emphasis>ひとつ</emphasis>は、高い優先度を持つ有効なパッ" +"ケージがあるからです。" + +# type: Content of: <refentry><refsect1><refsect2><title> +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:141 +msgid "The Effect of APT Preferences" +msgstr "APT 設定の効果" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:143 +msgid "" +"The APT preferences file allows the system administrator to control the " +"assignment of priorities. The file consists of one or more multi-line " +"records separated by blank lines. Records can have one of two forms, a " +"specific form and a general form." +msgstr "" +"APT 設定ファイルを使うと、システム管理者が優先度を割り当てられるようになりま" +"す。ファイルは、空白行で区切られた、複数行からなるレコードで構成されていま" +"す。レコードは特定形式か、汎用形式のどちらかの形式をとります。" + +# type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:149 +msgid "" +"The specific form assigns a priority (a \"Pin-Priority\") to one or more " +"specified packages and specified version or version range. For example, the " +"following record assigns a high priority to all versions of the " +"<filename>perl</filename> package whose version number begins with " +"\"<literal>5.8</literal>\". Multiple packages can be separated by spaces." +msgstr "" +"特定形式は、優先度 (\"Pin-Priority\") を、指定したパッケージの指定したバー" +"ジョン (範囲) について割り当てます。例えば以下のレコードは、\"<literal>5.8</" +"literal>\" で始まる <filename>perl</filename> パッケージを、高い優先度に設定" +"します。" + +# type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:156 +#, no-wrap +msgid "" +"Package: perl\n" +"Pin: version 5.8*\n" +"Pin-Priority: 1001\n" +msgstr "" +"Package: perl\n" +"Pin: version 5.8*\n" +"Pin-Priority: 1001\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:162 +msgid "" +"The general form assigns a priority to all of the package versions in a " +"given distribution (that is, to all the versions of packages that are listed " +"in a certain <filename>Release</filename> file) or to all of the package " +"versions coming from a particular Internet site, as identified by the site's " +"fully qualified domain name." +msgstr "" +"汎用形式は、与えられたディストリビューションにある、すべてのパッケージ " +"(<filename>Release</filename> ファイルに列挙したパッケージ) の優先度や、FQDN" +"で指定した、特定のインターネットサイトから取得するパッケージの優先度を割り当" +"てます。" + +# type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:168 +msgid "" +"This general-form entry in the APT preferences file applies only to groups " +"of packages. For example, the following record assigns a high priority to " +"all package versions available from the local site." +msgstr "" +"APT 設定ファイルに書かれている汎用形式のエントリは、パッケージのグループにつ" +"いてのみ適用されます。例えば以下のレコードは、ローカルサイトにある全パッケー" +"ジについて、高い優先度を割り当てます。" + +# type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:173 +#, no-wrap +msgid "" +"Package: *\n" +"Pin: origin \"\"\n" +"Pin-Priority: 999\n" +msgstr "" +"Package: *\n" +"Pin: origin \"\"\n" +"Pin-Priority: 999\n" + +# type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:178 +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\"." +msgstr "" +"注意: ここで使用しているキーワードは \"<literal>origin</literal>\" です。" +"<filename>Release</filename> ファイルに指定されたような、ディストリビューショ" +"ンの Origin と混同しないようにしてください。<filename>Release</filename> ファ" +"イルにある \"Origin:\" タグは、インターネットアドレスではなく、\"Debian\" や " +"\"Ximian\" といった作者やベンダ名です。" + +# type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:184 +msgid "" +"The following record assigns a low priority to all package versions " +"belonging to any distribution whose Archive name is \"<literal>unstable</" +"literal>\"." +msgstr "" +"以下のレコードは、アーカイブ名が \"<literal>unstable</literal>\" となっている" +"ディストリビューションに属するパッケージを、すべて低い優先度に割り当てます。" + +# type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:188 +#, no-wrap +msgid "" +"Package: *\n" +"Pin: release a=unstable\n" +"Pin-Priority: 50\n" +msgstr "" +"Package: *\n" +"Pin: release a=unstable\n" +"Pin-Priority: 50\n" + +# type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:193 +msgid "" +"The following record assigns a high priority to all package versions " +"belonging to any distribution whose Codename is \"<literal>squeeze</literal>" +"\"." +msgstr "" +"以下のレコードは、コード名が \"<literal>squeeze</literal>\" となっているディ" +"ストリビューションに属するパッケージを、すべて高い優先度に割り当てます。" + +# type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:197 +#, no-wrap +msgid "" +"Package: *\n" +"Pin: release n=squeeze\n" +"Pin-Priority: 900\n" +msgstr "" +"Package: *\n" +"Pin: release n=squeeze\n" +"Pin-Priority: 900\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:202 +msgid "" +"The following record assigns a high priority to all package versions " +"belonging to any release whose Archive name is \"<literal>stable</literal>\" " +"and whose release Version number is \"<literal>3.0</literal>\"." +msgstr "" +"以下のレコードは、アーカイブ名が \"<literal>stable</literal>\" で、リリース" +"バージョン番号が \"<literal>3.0</literal>\" となっているリリースに属するパッ" +"ケージを、すべて高い優先度に割り当てます。" + +# type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:207 +#, no-wrap +msgid "" +"Package: *\n" +"Pin: release a=stable, v=3.0\n" +"Pin-Priority: 500\n" +msgstr "" +"Package: *\n" +"Pin: release a=stable, v=3.0\n" +"Pin-Priority: 500\n" + +# type: Content of: <refentry><refsect1><refsect2><title> +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:218 +msgid "How APT Interprets Priorities" +msgstr "APT が優先度に割り込む方法" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:226 +msgid "P > 1000" +msgstr "P > 1000" + +# 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:227 +msgid "" +"causes a version to be installed even if this constitutes a downgrade of the " +"package" +msgstr "" +"パッケージがダウングレードしても、このバージョンのパッケージをインストール" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:231 +msgid "990 < P <=1000" +msgstr "990 < P <=1000" + +# 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:232 +msgid "" +"causes a version to be installed even if it does not come from the target " +"release, unless the installed version is more recent" +msgstr "" +"インストールされているバージョンの方が新しいことを除き、ターゲットリリースに" +"含まれなくても、このバージョンのパッケージをインストール" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:237 +msgid "500 < P <=990" +msgstr "500 < P <=990" + +# 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:238 +msgid "" +"causes a version to be installed unless there is a version available " +"belonging to the target release or the installed version is more recent" +msgstr "" +"ターゲットリリースに属するバージョンがあったり、インストールされているバー" +"ジョンの方が新しいのでなければ、このバージョンのパッケージをインストール" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:243 +msgid "100 < P <=500" +msgstr "100 < P <=500" + +# 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:244 +msgid "" +"causes a version to be installed unless there is a version available " +"belonging to some other distribution or the installed version is more recent" +msgstr "" +"他のディストリビューションに属するバージョンがあったり、インストールされてい" +"るバージョンの方が新しいのでなければ、このバージョンのパッケージをインストー" +"ル" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:249 +msgid "0 < P <=100" +msgstr "0 < P <=100" + +# 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:250 +msgid "" +"causes a version to be installed only if there is no installed version of " +"the package" +msgstr "" +"このパッケージがインストールされていない場合、このバージョンのパッケージをイ" +"ンストール" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:254 +msgid "P < 0" +msgstr "P < 0" + +# 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:255 +msgid "prevents the version from being installed" +msgstr "このバージョンのインストール禁止" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:221 +msgid "" +"Priorities (P) assigned in the APT preferences file must be positive or " +"negative integers. They are interpreted as follows (roughly speaking): " +"<placeholder type=\"variablelist\" id=\"0\"/>" +msgstr "" +"APT 設定ファイルで割り当てた優先度 (P) は、正負の整数でなくてはなりません。こ" +"れは (おおざっぱにいうと) 以下のように解釈されます。<placeholder type=" +"\"variablelist\" id=\"0\"/>" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:260 +msgid "" +"If any specific-form records match an available package version then the " +"first such record determines the priority of the package version. Failing " +"that, if any general-form records match an available package version then " +"the first such record determines the priority of the package version." +msgstr "" +"特定形式のレコードが利用可能パッケージバージョンに一致した場合、最初のレコー" +"ドが、パッケージバージョンの優先度を決定します。失敗して、汎用形式のレコード" +"が利用可能パッケージバージョンに一致した場合、最初のレコードが、パッケージ" +"バージョンの優先度を決定します。" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:266 +msgid "" +"For example, suppose the APT preferences file contains the three records " +"presented earlier:" +msgstr "" +"例えば、APT 設定ファイルの上の方に、以下のレコードが書かれていると仮定してく" +"ださい。" + +# type: Content of: <refentry><refsect1><refsect2><programlisting> +#. type: Content of: <refentry><refsect1><refsect2><programlisting> +#: apt_preferences.5.xml:270 +#, no-wrap +msgid "" +"Package: perl\n" +"Pin: version 5.8*\n" +"Pin-Priority: 1001\n" +"\n" +"Package: *\n" +"Pin: origin \"\"\n" +"Pin-Priority: 999\n" +"\n" +"Package: *\n" +"Pin: release unstable\n" +"Pin-Priority: 50\n" +msgstr "" +"Package: perl\n" +"Pin: version 5.8*\n" +"Pin-Priority: 1001\n" +"\n" +"Package: *\n" +"Pin: origin \"\"\n" +"Pin-Priority: 999\n" +"\n" +"Package: *\n" +"Pin: release unstable\n" +"Pin-Priority: 50\n" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:283 +msgid "Then:" +msgstr "すると、以下のように動作します。" + +# type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:285 +msgid "" +"The most recent available version of the <literal>perl</literal> package " +"will be installed, so long as that version's version number begins with " +"\"<literal>5.8</literal>\". If <emphasis>any</emphasis> 5.8* version of " +"<literal>perl</literal> is available and the installed version is 5.9*, then " +"<literal>perl</literal> will be downgraded." +msgstr "" +"バージョン番号が \"<literal>5.8</literal>\" で始まっていれば、<literal>perl</" +"literal> の最新の利用可能パッケージがインストールされます。バージョン 5.8* が" +"利用可能で、バージョン 5.9* がインストールされている場合、<literal>perl</" +"literal> はダウングレードされます。" + +# type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:290 +msgid "" +"A version of any package other than <literal>perl</literal> that is " +"available from the local system has priority over other versions, even " +"versions belonging to the target release." +msgstr "" +"ローカルシステムで有効な、<literal>perl</literal> 以外のどんなパッケージで" +"も、他のバージョンより (たとえターゲットリリースに属していても) 優先度が高く" +"なります。" + +# type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:294 +msgid "" +"A version of a package whose origin is not the local system but some other " +"site listed in &sources-list; and which belongs to an <literal>unstable</" +"literal> distribution is only installed if it is selected for installation " +"and no version of the package is already installed." +msgstr "" +"ローカルシステムにはなくても &sources-list; に列挙されたサイトにあるバージョ" +"ンで、<literal>unstable</literal> ディストリビューションに属しているパッケー" +"ジは、インストールするよう選択され、既にインストールされているバージョンがな" +"い場合にのみインストールされます。" + +# type: Content of: <refentry><refsect1><refsect2><title> +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:304 +msgid "Determination of Package Version and Distribution Properties" +msgstr "パッケージのバージョンとディストリビューションプロパティの決定" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:306 +msgid "" +"The locations listed in the &sources-list; file should provide " +"<filename>Packages</filename> and <filename>Release</filename> files to " +"describe the packages available at that location." +msgstr "" +"&sources-list; ファイルに列挙した場所では、その場所で利用できるパッケージを記" +"述した、<filename>Packages</filename> ファイルや <filename>Release</" +"filename> ファイルを提供します。" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:318 +msgid "the <literal>Package:</literal> line" +msgstr "<literal>Package:</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:319 +msgid "gives the package name" +msgstr "パッケージ名" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:322 apt_preferences.5.xml:372 +msgid "the <literal>Version:</literal> line" +msgstr "<literal>Version:</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:323 +msgid "gives the version number for the named package" +msgstr "その名前のパッケージのバージョン番号" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:310 +msgid "" +"The <filename>Packages</filename> file is normally found in the directory " +"<filename>.../dists/<replaceable>dist-name</replaceable>/" +"<replaceable>component</replaceable>/<replaceable>arch</replaceable></" +"filename>: for example, <filename>.../dists/stable/main/binary-i386/" +"Packages</filename>. It consists of a series of multi-line records, one for " +"each package available in that directory. Only two lines in each record are " +"relevant for setting APT priorities: <placeholder type=\"variablelist\" id=" +"\"0\"/>" +msgstr "" +"<filename>Packages</filename> ファイルは通常 <filename>.../dists/" +"<replaceable>dist-name</replaceable>/<replaceable>component</replaceable>/" +"<replaceable>arch</replaceable></filename> ディレクトリにあります。例えば、" +"<filename>.../dists/stable/main/binary-i386/Packages</filename> です。これ" +"は、ディレクトリにある利用可能パッケージごとに、複数行のレコードからできてい" +"ます。APT 優先度の設定は、レコードごとに以下の 2 行だけです。<placeholder " +"type=\"variablelist\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:339 +msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" +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:340 +#, 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 " +"that all of the packages in the directory tree below the parent of the " +"<filename>Release</filename> file are in a <literal>stable</literal> " +"archive. Specifying this value in the APT preferences file would require " +"the line:" +msgstr "" +"このディレクトリツリーに属する全パッケージのアーカイブ名です。例えば、" +"\"Archive: 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> +#: apt_preferences.5.xml:350 +#, no-wrap +msgid "Pin: release a=stable\n" +msgstr "Pin: release a=stable\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:356 +msgid "the <literal>Codename:</literal> line" +msgstr "<literal>Codename:</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:357 +#, 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:" +msgstr "" +"このディレクトリツリーに属する全パッケージのアーカイブ名です。例えば、" +"\"Archive: 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> +#: apt_preferences.5.xml:366 +#, no-wrap +msgid "Pin: release n=squeeze\n" +msgstr "Pin: release n=squeeze\n" + +# 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:373 +msgid "" +"names the release version. For example, the packages in the tree might " +"belong to Debian GNU/Linux release version 3.0. Note that there is normally " +"no version number for the <literal>testing</literal> and <literal>unstable</" +"literal> distributions because they have not been released yet. Specifying " +"this in the APT preferences file would require one of the following lines." +msgstr "" +"リリースバージョン名です。例えば、このツリーのパッケージが、GNU/Linux リリー" +"スバージョン 3.0 に属するとします。通常 <literal>testing</literal> ディストリ" +"ビューションや <literal>unstable</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:382 +#, no-wrap +msgid "" +"Pin: release v=3.0\n" +"Pin: release a=stable, v=3.0\n" +"Pin: release 3.0\n" +msgstr "" +"Pin: release v=3.0\n" +"Pin: release a=stable, v=3.0\n" +"Pin: release 3.0\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:391 +msgid "the <literal>Component:</literal> line" +msgstr "<literal>Component:</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:392 +msgid "" +"names the licensing component associated with the packages in the directory " +"tree of the <filename>Release</filename> file. For example, the line " +"\"Component: main\" specifies that all the packages in the directory tree " +"are from the <literal>main</literal> component, which entails that they are " +"licensed under terms listed in the Debian Free Software Guidelines. " +"Specifying this component in the APT preferences file would require the line:" +msgstr "" +"<filename>Release</filename> ファイルの、ディレクトリツリーにあるパッケージの" +"ライセンスコンポーネント名です。例えば、\"Component: main\" という行は、この" +"ディレクトリ以下の全ファイルが、<literal>main</literal> コンポーネント " +"(Debian フリーソフトウェアガイドラインの元でライセンスされている) であること" +"を表します。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 +#, no-wrap +msgid "Pin: release c=main\n" +msgstr "Pin: release c=main\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:407 +msgid "the <literal>Origin:</literal> line" +msgstr "<literal>Origin:</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:408 +msgid "" +"names the originator of the packages in the directory tree of the " +"<filename>Release</filename> file. Most commonly, this is <literal>Debian</" +"literal>. Specifying this origin in the APT preferences file would require " +"the line:" +msgstr "" +"<filename>Release</filename> ファイルのディレクトリツリーにあるパッケージの提" +"供者名です。ほとんど共通で、<literal>Debian</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:414 +#, no-wrap +msgid "Pin: release o=Debian\n" +msgstr "Pin: release o=Debian\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:420 +msgid "the <literal>Label:</literal> line" +msgstr "<literal>Label:</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:421 +msgid "" +"names the label of the packages in the directory tree of the " +"<filename>Release</filename> file. Most commonly, this is <literal>Debian</" +"literal>. Specifying this label in the APT preferences file would require " +"the line:" +msgstr "" +"<filename>Release</filename> ファイルのディレクトリツリーにあるパッケージのラ" +"ベル名です。ほとんど共通で <literal>Debian</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:427 +#, no-wrap +msgid "Pin: release l=Debian\n" +msgstr "Pin: release l=Debian\n" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:328 +#, 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\"/>" +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 優先度の設定に関連します。" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:434 +msgid "" +"All of the <filename>Packages</filename> and <filename>Release</filename> " +"files retrieved from locations listed in the &sources-list; file are stored " +"in the directory <filename>/var/lib/apt/lists</filename>, or in the file " +"named by the variable <literal>Dir::State::Lists</literal> in the " +"<filename>apt.conf</filename> file. For example, the file <filename>debian." +"lcs.mit.edu_debian_dists_unstable_contrib_binary-i386_Release</filename> " +"contains the <filename>Release</filename> file retrieved from the site " +"<literal>debian.lcs.mit.edu</literal> for <literal>binary-i386</literal> " +"architecture files from the <literal>contrib</literal> component of the " +"<literal>unstable</literal> distribution." +msgstr "" +"&sources-list; ファイルに列挙された場所から取得した <filename>Packages</" +"filename> ファイルや <filename>Release</filename> ファイルはすべて、" +"<filename>/var/lib/apt/lists</filename> ディレクトリや、<filename>apt.conf</" +"filename> ファイルの <literal>Dir::State::Lists</literal> 変数で指定した場所" +"に取得されます。例えば、<filename>debian.lcs.mit." +"edu_debian_dists_unstable_contrib_binary-i386_Release</filename> ファイルは、" +"<literal>debian.lcs.mit.edu</literal> から取得した、<literal>unstable</" +"literal> ディストリビューションで、<literal>contrib</literal> コンポーネント" +"な、<literal>binary-i386</literal> アーキテクチャ用の <filename>Release</" +"filename> ファイルを含んでいます。" + +# type: Content of: <refentry><refsect1><refsect2><title> +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:447 +msgid "Optional Lines in an APT Preferences Record" +msgstr "APT 設定レコードのオプション行" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:449 +msgid "" +"Each record in the APT preferences file can optionally begin with one or " +"more lines beginning with the word <literal>Explanation:</literal>. This " +"provides a place for comments." +msgstr "" +"APT 設定ファイルのレコードごとに、任意で <literal>Explanation:</literal> で始" +"まる行を持てます。これは、コメント用の場所を確保します。" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:453 +#, 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><refsect2><title> +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:462 +msgid "Tracking Stable" +msgstr "安定版の追跡" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:470 +#, no-wrap +msgid "" +"Explanation: Uninstall or do not install any Debian-originated\n" +"Explanation: package versions other than those in the stable distro\n" +"Package: *\n" +"Pin: release a=stable\n" +"Pin-Priority: 900\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" +msgstr "" +"Explanation: Uninstall or do not install any Debian-originated\n" +"Explanation: package versions other than those in the stable distro\n" +"Package: *\n" +"Pin: release a=stable\n" +"Pin-Priority: 900\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:464 +#, 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 " +"<literal>stable</literal> distribution and a prohibitively low priority to " +"package versions belonging to other <literal>Debian</literal> " +"distributions. <placeholder type=\"programlisting\" id=\"0\"/>" +msgstr "" +"以下の APT 設定ファイルは、<literal>stable</literal> ディストリビューションに" +"属する全てのパッケージのバージョンに、デフォルト (500) より高い優先度を割り当" +"て、他の <literal>Debian</literal> ディストリビューションのパッケージのバー" +"ジョンには、低くてインストールできないような優先度を割り当てます。" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:487 apt_preferences.5.xml:533 +#: apt_preferences.5.xml:591 +#, no-wrap +msgid "" +"apt-get install <replaceable>package-name</replaceable>\n" +"apt-get upgrade\n" +"apt-get dist-upgrade\n" +msgstr "" +"apt-get install <replaceable>package-name</replaceable>\n" +"apt-get upgrade\n" +"apt-get dist-upgrade\n" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:482 +#, 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; ファイルと上記の設定ファイルにより、以下のコマンドで最" +"新の <literal>stable</literal> バージョンにアップグレードできます。" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:499 +#, no-wrap +msgid "apt-get install <replaceable>package</replaceable>/testing\n" +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:493 +#, 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 " +"will not be upgraded again unless this command is given again. <placeholder " +"type=\"programlisting\" id=\"0\"/>" +msgstr "" +"以下のコマンドで、指定したパッケージを <literal>testing</literal> ディストリ" +"ビューションの最新バージョンにアップグレードします。このパッケージは、再度こ" +"のコマンドを発行しないとアップグレードされません。" + +# type: Content of: <refentry><refsect1><refsect2><title> +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:505 +msgid "Tracking Testing or Unstable" +msgstr "テスト版や不安定版の追跡" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:514 +#, no-wrap +msgid "" +"Package: *\n" +"Pin: release a=testing\n" +"Pin-Priority: 900\n" +"\n" +"Package: *\n" +"Pin: release a=unstable\n" +"Pin-Priority: 800\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" +msgstr "" +"Package: *\n" +"Pin: release a=testing\n" +"Pin-Priority: 900\n" +"\n" +"Package: *\n" +"Pin: release a=unstable\n" +"Pin-Priority: 800\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:507 +#, 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 " +"lower priority to package versions from the <literal>unstable</literal> " +"distribution, and a prohibitively low priority to package versions from " +"other <literal>Debian</literal> distributions. <placeholder type=" +"\"programlisting\" id=\"0\"/>" +msgstr "" +"以下の APT 設定ファイルは、<literal>testing</literal> ディストリビューション" +"のパッケージのバージョンに高い優先度を割り当て、<literal>unstable</literal> " +"ディストリビューションのパッケージのバージョンには低い優先度を割り当てます。" +"また他の <literal>Debian</literal> ディストリビューションのパッケージのバー" +"ジョンには、低くてインストールできないような優先度を割り当てます。" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:528 +#, 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; ファイルと上記の設定ファイルにより、以下のコマンドで最" +"新の <literal>testing</literal> バージョンにアップグレードできます。" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:548 +#, no-wrap +msgid "apt-get install <replaceable>package</replaceable>/unstable\n" +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:539 +#, fuzzy +msgid "" +"The following command will cause APT to upgrade the specified package to the " +"latest version from the <literal>unstable</literal> distribution. " +"Thereafter, <command>apt-get upgrade</command> will upgrade the package to " +"the most recent <literal>testing</literal> version if that is more recent " +"than the installed version, otherwise, to the most recent <literal>unstable</" +"literal> version if that is more recent than the installed version. " +"<placeholder type=\"programlisting\" id=\"0\"/>" +msgstr "" +"以下のコマンドで、指定したパッケージを <literal>unstable</literal> ディストリ" +"ビューションの最新バージョンにアップグレードします。それ以降、<command>apt-" +"get upgrade</command> は <literal>testing</literal> バージョンのパッケージが" +"更新されていれば <literal>testing</literal> の最新版に、<literal>unstable</" +"literal> バージョンのパッケージが更新されていれば <literal>unstable</literal>" +"の最新版にアップグレードします。" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:555 +msgid "Tracking the evolution of a codename release" +msgstr "" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:569 +#, 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" +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" +"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" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:557 +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 " +"specified codename of a distribution and a prohibitively low priority to " +"package versions belonging to other <literal>Debian</literal> distributions, " +"codenames and archives. Note that with this APT preference APT will follow " +"the migration of a release from the archive <literal>testing</literal> to " +"<literal>stable</literal> and later <literal>oldstable</literal>. If you " +"want to follow for example the progress in <literal>testing</literal> " +"notwithstanding the codename changes you should use the example " +"configurations above. <placeholder type=\"programlisting\" id=\"0\"/>" +msgstr "" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:586 +#, 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\"/>" +msgstr "" +"適切な &sources-list; ファイルと上記の設定ファイルにより、以下のコマンドで最" +"新の <literal>stable</literal> バージョンにアップグレードできます。" + +# type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:606 +#, no-wrap +msgid "apt-get install <replaceable>package</replaceable>/sid\n" +msgstr "apt-get install <replaceable>package</replaceable>/sid\n" + +# type: Content of: <refentry><refsect1><refsect2><para> +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:597 +#, 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\"/>" +msgstr "" +"以下のコマンドで、指定したパッケージを <literal>unstable</literal> ディストリ" +"ビューションの最新バージョンにアップグレードします。それ以降、<command>apt-" +"get upgrade</command> は <literal>testing</literal> バージョンのパッケージが" +"更新されていれば <literal>testing</literal> の最新版に、<literal>unstable</" +"literal> バージョンのパッケージが更新されていれば <literal>unstable</literal>" +"の最新版にアップグレードします。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt_preferences.5.xml:614 +msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;" +msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" + +# type: Content of: <refentry><refnamediv><refname> +#. type: Content of: <refentry><refnamediv><refname> +#: sources.list.5.xml:22 sources.list.5.xml:28 +msgid "sources.list" +msgstr "sources.list" + +# type: Content of: <refentry><refnamediv><refpurpose> +#. type: Content of: <refentry><refnamediv><refpurpose> +#: sources.list.5.xml:29 +msgid "Package resource list for APT" +msgstr "APT 用パッケージリソースリスト" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:33 +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>" +msgstr "" +"このパッケージリソースリストは、システムで使用するパッケージの保管場所を特定" +"するのに使用されます。今回このマニュアルページには、Debian GNU/Linux システム" +"で使用するパッケージシステムについてのみ記述します。この制御ファイルは、" +"<filename>/etc/apt/sources.list</filename> にあります。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:38 +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 #." +msgstr "" +"ソースリストは複数の有効な取得元と、様々な取得メディアをサポートしています。" +"ファイルには 1 行ごと取得元を列挙し、上の方にあるものから使用します。行の" +"フォーマットは、<literal>タイプ uri 引数</literal> となります。先頭の " +"<literal>タイプ</literal> で、<literal>引数</literal> のフォーマットを決定し" +"ます。<literal>uri</literal> は Universal Resource Identifier (URI) で、よく" +"知られた URL のスーパーセットです。行の残りに # を付けて、コメントにできま" +"す。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: sources.list.5.xml:49 +msgid "sources.list.d" +msgstr "sources.list.d" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:50 +#, 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 " +"the regular <filename>sources.list</filename> file. File names need to end " +"with <filename>.list</filename> and may only contain letters (a-z and A-Z), " +"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> ファイルと同じです。" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: sources.list.5.xml:59 +msgid "The deb and deb-src types" +msgstr "deb タイプと deb-src タイプ" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:60 +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." +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> " +"タイプでは、Debian ディストリビューションのソースコードを、<literal>deb</" +"literal> タイプと同じ形式で記述します。<literal>deb-src</literal> 行は、ソー" +"スインデックスを取得するのに必要です。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:72 +msgid "" +"The format for a <filename>sources.list</filename> entry using the " +"<literal>deb</literal> and <literal>deb-src</literal> types are:" +msgstr "" +"<literal>deb</literal> タイプと <literal>deb-src</literal> タイプで使用する " +"<filename>sources.list</filename> エントリのフォーマットは、以下のようになり" +"ます。" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:75 +#, no-wrap +msgid "deb uri distribution [component1] [component2] [...]" +msgstr "deb uri distribution [component1] [component2] [...]" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:77 +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." +msgstr "" +"<literal>deb</literal> タイプの URI は、APT が情報を見つけられるように、" +"Debian ディストリビューションの基底を指定しなければなりません。" +"<literal>distribution</literal> には正確なパスを指定できます。その場合 " +"component を省略し、<literal>distribution</literal> はスラッシュ (/) で終わら" +"なくてはなりません。これは URL で指定されたアーカイブの、特定のサブセクション" +"のみに関心があるときに役に立ちます。<literal>distribution</literal> に正確な" +"パスを指定しないのなら、少なくともひとつは <literal>component</literal> を指" +"定しなければなりません。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:86 +msgid "" +"<literal>distribution</literal> may also contain a variable, <literal>$(ARCH)" +"</literal> which expands to the Debian architecture (i386, m68k, " +"powerpc, ...) used on the system. This permits architecture-independent " +"<filename>sources.list</filename> files to be used. In general this is only " +"of interest when specifying an exact path, <literal>APT</literal> will " +"automatically generate a URI with the current architecture otherwise." +msgstr "" +"<literal>distribution</literal> は、<literal>$(ARCH)</literal> 変数を含む場合" +"があります。<literal>$(ARCH)</literal> 変数は、システムで使用している Debian " +"アーキテクチャ (i386, m68k, powerpc, ...) に展開されます。これにより、アーキ" +"テクチャに依存しない <filename>sources.list</filename> ファイルを使用できま" +"す。一般的に、これは正しいパスを指定するときに気にするだけです。そうでない場" +"合は、<literal>APT</literal> は現在のアーキテクチャで URI を自動的に生成しま" +"す。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:94 +msgid "" +"Since only one distribution can be specified per line it may be necessary to " +"have multiple lines for the same URI, if a subset of all available " +"distributions or components at that location is desired. APT will sort the " +"URI list after it has generated a complete set internally, and will collapse " +"multiple references to the same Internet host, for instance, into a single " +"connection, so that it does not inefficiently establish an FTP connection, " +"close it, do something else, and then re-establish a connection to that same " +"host. This feature is useful for accessing busy FTP sites with limits on the " +"number of simultaneous anonymous users. APT also parallelizes connections to " +"different hosts to more effectively deal with sites with low bandwidth." +msgstr "" +"有効な全 distribution, component の場所から、一部が必要な場合、1 行につき 1 " +"distribution しか指定できないため、同じ URI の行を複数記述することになるで" +"しょう。APT は内部で URI リストを生成してから、並べ替えます。そして、同じイン" +"ターネットホストに対しては複数の参照をまとめます。例えば FTP 接続後、切断して" +"からまた同じホストに再接続するといった、効率の悪いことをせずに、1 接続にまと" +"めます。この機能は、同時接続匿名ユーザ数を制限している、混んでいる FTP サイト" +"にアクセスするのに便利です。APT は、帯域の狭いサイトを効率よく扱うのに、異な" +"るホストへは、接続を並行して行うようにもしています。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:106 +msgid "" +"It is important to list sources in order of preference, with the most " +"preferred source listed first. Typically this will result in sorting by " +"speed from fastest to slowest (CD-ROM followed by hosts on a local network, " +"followed by distant Internet hosts, for example)." +msgstr "" +"最優先する取得元を最初に記述するというように、優先順に取得元を記述するのは重" +"要です。一般的には、スピードの速い順に並べることになる (例えば、CD-ROM に続い" +"てローカルネットワークのホスト、さらに続いて彼方のインターネットホスト) で" +"しょう。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:111 +msgid "Some examples:" +msgstr "例:" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:113 +#, 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" +" " +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" +" " + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><title> +#: sources.list.5.xml:119 +msgid "URI specification" +msgstr "URI の仕様" + +# type: Content of: <refentry><refsect1><title> +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: sources.list.5.xml:124 +msgid "file" +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:126 +msgid "" +"The file scheme allows an arbitrary directory in the file system to be " +"considered an archive. This is useful for NFS mounts and local mirrors or " +"archives." +msgstr "" +"file スキームは、システム内の任意のディレクトリを、アーカイブとして扱えるよう" +"にします。これは NFS マウントやローカルミラーで便利です。" + +# type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:133 +msgid "" +"The cdrom scheme allows APT to use a local CDROM drive with media swapping. " +"Use the &apt-cdrom; program to create cdrom entries in the source list." +msgstr "" +"cdrom スキームは、APT がローカル CD-ROM ドライブを、メディア交換しながら使え" +"るようにします。取得元リストに cdrom エントリを追加するには、&apt-cdrom; プロ" +"グラムを使用してください。" + +# type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:140 +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." +msgstr "" +"http スキームはアーカイブとして、HTTP サーバを指定します。環境変数 " +"<envar>http_proxy</envar> が、http://server:port/ と言った形で指定されていれ" +"ば、<envar>http_proxy</envar> で指定したプロキシサーバを使用します。ユーザ認" +"証が必要な HTTP/1.1 プロキシの場合、http://user:pass@server:port/ と言う形で" +"指定してください。この認証方法は安全ではないことに注意してください。" + +# type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:151 +msgid "" +"The ftp scheme specifies an FTP server for the archive. APT's FTP behavior " +"is highly configurable; for more information see the &apt-conf; manual page. " +"Please note that a ftp proxy can be specified by using the <envar>ftp_proxy</" +"envar> environment variable. It is possible to specify a http proxy (http " +"proxy servers often understand ftp urls) using this method and ONLY this " +"method. ftp proxies using http specified in the configuration file will be " +"ignored." +msgstr "" +"ftp スキームは、アーカイブに FTP サーバを指定します。APT の FTP の振る舞い" +"は、高度に設定できます。詳細は、&apt-conf; のマニュアルページをご覧ください。" +"ftp プロキシは、<envar>ftp_proxy</envar> 環境変数で指定することにご注意くださ" +"い。この方法用に、さらにこの方法でしか使用しないのに、http プロキシを使用する" +"ことができます (http プロキシサーバは大抵 ftp urlも理解できます)。設定ファイ" +"ルで http を使用する際に、ftp プロキシを使用するよう設定してあっても無視され" +"ます。" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: sources.list.5.xml:160 +msgid "copy" +msgstr "copy" + +# type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:162 +msgid "" +"The copy scheme is identical to the file scheme except that packages are " +"copied into the cache directory instead of used directly at their location. " +"This is useful for people using a zip disk to copy files around with APT." +msgstr "" +"copy スキームは、file スキームと同様ですが、パッケージをその場で使用せず、" +"キャッシュディレクトリにコピーするところが違います。zip ディスクを使用してい" +"て、APT でコピーを行う場合に便利です。" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: sources.list.5.xml:167 +msgid "rsh" +msgstr "rsh" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: sources.list.5.xml:167 +msgid "ssh" +msgstr "ssh" + +# type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:169 +msgid "" +"The rsh/ssh method invokes rsh/ssh to connect to a remote host as a given " +"user and access the files. It is a good idea to do prior arrangements with " +"RSA keys or rhosts. Access to files on the remote uses standard " +"<command>find</command> and <command>dd</command> commands to perform the " +"file transfers from the remote." +msgstr "" +"rsh/ssh メソッドは、与えられたユーザでリモートホストに接続し、ファイルにアク" +"セスするのに rsh/ssh を使用します。あらかじめ RSA キーや rhosts の配置してお" +"くと良いでしょう。リモートホストのファイルへのアクセスの際、ファイル転送に標" +"準の <command>find</command> コマンドや <command>dd</command> コマンドを使用" +"します。" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:121 +msgid "" +"The currently recognized URI types are cdrom, file, http, ftp, copy, ssh, " +"rsh. <placeholder type=\"variablelist\" id=\"0\"/>" +msgstr "" +"現在認識する URI タイプは、cdrom, file, http, ftp, copy, ssh, rsh です。" +"<placeholder type=\"variablelist\" id=\"0\"/>" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:181 +msgid "" +"Uses the archive stored locally (or NFS mounted) at /home/jason/debian for " +"stable/main, stable/contrib, and stable/non-free." +msgstr "" +"/home/jason/debian に格納されている stable/main, stable/contrib, stable/non-" +"free 用のローカル (または NFS) アーカイブを使用します。" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:183 +#, no-wrap +msgid "deb file:/home/jason/debian stable main contrib non-free" +msgstr "deb file:/home/jason/debian stable main contrib non-free" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:185 +msgid "As above, except this uses the unstable (development) distribution." +msgstr "上記同様ですが、不安定版 (開発版) を使用します。" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:186 +#, no-wrap +msgid "deb file:/home/jason/debian unstable main contrib non-free" +msgstr "deb file:/home/jason/debian unstable main contrib non-free" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:188 +msgid "Source line for the above" +msgstr "上記のソース行" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:189 +#, no-wrap +msgid "deb-src file:/home/jason/debian unstable main contrib non-free" +msgstr "deb-src file:/home/jason/debian unstable main contrib non-free" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:191 +msgid "" +"Uses HTTP to access the archive at archive.debian.org, and uses only the " +"hamm/main area." +msgstr "" +"archive.debian.org のアーカイブに HTTP アクセスし、hamm/main のみを使用しま" +"す。" + +# type: <example></example> +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:193 +#, no-wrap +msgid "deb http://archive.debian.org/debian-archive hamm main" +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:195 +msgid "" +"Uses FTP to access the archive at ftp.debian.org, under the debian " +"directory, and uses only the stable/contrib area." +msgstr "" +"ftp.debian.org のアーカイブに FTP アクセスし、debian ディレクトリ以下の " +"stable/contrib のみを使用します。" + +# type: <example></example> +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:197 +#, no-wrap +msgid "deb ftp://ftp.debian.org/debian stable contrib" +msgstr "deb ftp://ftp.debian.org/debian stable contrib" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:199 +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." +msgstr "" +"ftp.debian.org のアーカイブに FTP アクセスし、debian ディレクトリ以下の " +"unstable/contrib を使用します。<filename>sources.list</filename> に上記サンプ" +"ルと一緒に指定された場合、両方のリソース行に対応する FTP セッションはひとつだ" +"けになります。" + +# type: <example></example> +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:203 +#, no-wrap +msgid "deb ftp://ftp.debian.org/debian unstable contrib" +msgstr "deb ftp://ftp.debian.org/debian unstable contrib" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:205 +msgid "" +"Uses HTTP to access the archive at nonus.debian.org, under the debian-non-US " +"directory." +msgstr "" +"nonus.debian.org のアーカイブに HTTP アクセスし、debian-non-US ディレクトリ以" +"下を使用します。" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:207 +#, no-wrap +msgid "deb http://nonus.debian.org/debian-non-US stable/non-US main contrib non-free" +msgstr "deb http://nonus.debian.org/debian-non-US stable/non-US main contrib non-free" + +#. type: Content of: <refentry><refsect1><para><literallayout> +#: sources.list.5.xml:216 +#, no-wrap +msgid "deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/" +msgstr "deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:209 +msgid "" +"Uses HTTP to access the archive at nonus.debian.org, under the debian-non-US " +"directory, and uses only files found under <filename>unstable/binary-i386</" +"filename> on i386 machines, <filename>unstable/binary-m68k</filename> on " +"m68k, and so forth for other supported architectures. [Note this example " +"only illustrates how to use the substitution variable; non-us is no longer " +"structured like this] <placeholder type=\"literallayout\" id=\"0\"/>" +msgstr "" +"nonus.debian.org のアーカイブに HTTP アクセスし、debian-non-US ディレクトリ以" +"下を使用します。また、i386 マシンでは <filename>unstable/binary-i386</" +"filename> 以下にあるファイル、m68k マシンでは <filename>unstable/binary-" +"m68k</filename> 以下にあるファイル、その他サポートするアーキテクチャごとの" +"ファイルのみ使用します。[このサンプルは変数展開の使用法の説明でしかないことに" +"注意してください。non-us はこのような構造になっていません] <placeholder type=" +"\"literallayout\" id=\"0\"/>" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:221 +msgid "&apt-cache; &apt-conf;" +msgstr "&apt-cache; &apt-conf;" + +# type: <author></author> +#~ msgid "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" +#~ msgstr "<name>Jason Gunthorpe </name><email>jgg@debian.org</email>" + +# type: <copyrightsummary></copyrightsummary> +#~ msgid "Copyright © Jason Gunthorpe, 1997-1998." +#~ msgstr "Copyright © Jason Gunthorpe, 1997-1998." + +# type: Content of: <refentry><refsect1><title> +#~ msgid "Introduction" +#~ msgstr "はじめに" + +# 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 "IndexType" +#~ msgstr "IndexType" + +# 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 "General" +#~ msgstr "generate" + +#, 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: <copyrightsummary></copyrightsummary> +#, fuzzy +#~ msgid "Copyright © Jason Gunthorpe, 1998." +#~ msgstr "Copyright © Jason Gunthorpe, 1999." + +# type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#, fuzzy +#~ msgid "Anatomy of the Package System" +#~ msgstr "パッケージ名" + +# type: Content of: <refentry><refsect1><title> +#~ msgid "DSelect" +#~ msgstr "DSelect" + +# type: <tag></tag> +#, fuzzy +#~ msgid "The Extra Package list" +#~ msgstr "NextPackage" + +# type: <heading></heading> +#~ msgid "Dpkg" +#~ msgstr "Dpkg" + +# type: <tag></tag> +#, fuzzy +#~ msgid "APT Method Interface" +#~ 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 "仕様" + +#, fuzzy +#~ msgid "Overview" +#~ msgstr "OverrideDir" + +# 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: Content of: <refentry><refnamediv><refname> +#, fuzzy +#~ msgid "Config-Item" +#~ msgstr "config-files" + +# 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 "ユーザの設定" + +# type: Content of: <refentry><refsect1><title> +#, fuzzy +#~ msgid "601 Configuration" +#~ msgstr "ユーザの設定" + +#, fuzzy +#~ msgid "Notes" +#~ msgstr "contents" + +# type: <title> +#~ msgid "Using APT Offline" +#~ msgstr "オフラインでの APT の使用法" + +# type: +#~ msgid "" +#~ "This document describes how to use APT in a non-networked environment, " +#~ "specifically a 'sneaker-net' approach for performing upgrades." +#~ msgstr "" +#~ "このドキュメントはネットワークがない環境での APT の使用方法を説明していま" +#~ "す。具体的には、アップグレード時に「スニーカーネット」アプローチです。" + +# type: +#~ msgid "Copyright © Jason Gunthorpe, 1999." +#~ msgstr "Copyright © Jason Gunthorpe, 1999." + +# type: +#, fuzzy +#~ msgid "Using APT on both machines" +#~ msgstr "オフラインでの APT の使用法" + +# type: +#~ msgid "" +#~ " /disc/\n" +#~ " archives/\n" +#~ " partial/\n" +#~ " lists/\n" +#~ " partial/\n" +#~ " status\n" +#~ " sources.list\n" +#~ " apt.conf" +#~ msgstr "" +#~ " /disc/\n" +#~ " archives/\n" +#~ " partial/\n" +#~ " lists/\n" +#~ " partial/\n" +#~ " status\n" +#~ " sources.list\n" +#~ " apt.conf" + +# type: Content of: +#, fuzzy +#~ msgid "The configuration file" +#~ msgstr "ユーザの設定" + +# type: <example></example> +#, fuzzy +#~ msgid "" +#~ " APT\n" +#~ " {\n" +#~ " /* This is not necessary if the two machines are the same arch, it " +#~ "tells\n" +#~ " the remote APT what architecture the target machine is */\n" +#~ " Architecture \"i386\";\n" +#~ " \n" +#~ " Get::Download-Only \"true\";\n" +#~ " };\n" +#~ " \n" +#~ " Dir\n" +#~ " {\n" +#~ " /* Use the disc for state information and redirect the status file " +#~ "from\n" +#~ " the /var/lib/dpkg default */\n" +#~ " State \"/disc/\";\n" +#~ " State::status \"status\";\n" +#~ "\n" +#~ " // Binary caches will be stored locally\n" +#~ " Cache::archives \"/disc/archives/\";\n" +#~ " Cache \"/tmp/\";\n" +#~ " \n" +#~ " // Location of the source list.\n" +#~ " Etc \"/disc/\";\n" +#~ " };" +#~ msgstr "" +#~ " APT\n" +#~ " {\n" +#~ " /* This is not necessary if the two machines are the same arch, it " +#~ "tells\n" +#~ " the remote APT what architecture the Debian machine is */\n" +#~ " Architecture \"i386\";\n" +#~ " \n" +#~ " Get::Download-Only \"true\";\n" +#~ " };\n" +#~ " \n" +#~ " Dir\n" +#~ " {\n" +#~ " /* Use the disc for state information and redirect the status file " +#~ "from\n" +#~ " the /var/lib/dpkg default */\n" +#~ " State \"/disc/\";\n" +#~ " State::status \"status\";\n" +#~ "\n" +#~ " // Binary caches will be stored locally\n" +#~ " Cache::archives \"/disc/archives/\";\n" +#~ " Cache \"/tmp/\";\n" +#~ " \n" +#~ " // Location of the source list.\n" +#~ " Etc \"/disc/\";\n" +#~ " };" + +# type: <example></example> +#, fuzzy +#~ 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 ]" +#~ msgstr "" +#~ " # export APT_CONFIG=\"/disc/apt.conf\"\n" +#~ " # apt-get update\n" +#~ " [ パッケージファイルを取得します ]\n" +#~ " # apt-get dist-upgrade\n" +#~ " [ アップグレードが必要な全パッケージを取得します ]" + +# type: <example></example> +#, fuzzy +#~ msgid "" +#~ " # export APT_CONFIG=\"/disc/apt.conf\"\n" +#~ " # apt-get check\n" +#~ " [ APT generates a local copy of the cache files ]\n" +#~ " # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-" +#~ "upgrade\n" +#~ " [ Or any other APT command ]" +#~ msgstr "" +#~ " # export APT_CONFIG=\"/disc/apt.conf\"\n" +#~ " # apt-get update\n" +#~ " [ パッケージファイルを取得します ]\n" +#~ " # apt-get dist-upgrade\n" +#~ " [ アップグレードが必要な全パッケージを取得します ]" + +# type: <title> +#, fuzzy +#~ msgid "Using APT and wget" +#~ msgstr "オフラインでの APT の使用法" + +# type: Content of: +#, fuzzy +#~ msgid "Operation" +#~ msgstr "オプション" + +#~ msgid "<literal>Debug::Vendor</literal>" +#~ msgstr "<literal>Debug::Vendor</literal>" -- cgit v1.2.3 From 79789e9c60f3319b478af4671e683ce5c97c25a7 Mon Sep 17 00:00:00 2001 From: David Kalnischkies <kalnischkies@gmail.com> Date: Wed, 26 Aug 2009 18:19:50 +0200 Subject: add ignore patterns to be able to use "bzr status" or "bzr add" again after building apt by ignoring temporary files, build files and the autogenerated files in doc/. --- .bzrignore | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .bzrignore diff --git a/.bzrignore b/.bzrignore new file mode 100644 index 000000000..bad8837c6 --- /dev/null +++ b/.bzrignore @@ -0,0 +1,30 @@ +# temporary and backup files +*~ +*.bak +*.rej + +# buildrelated files/dirs +aclocal.m4 +autom4te.cache/ +build/ +configure + +# generated apt man pages +doc/*.1 +doc/*.5 +doc/*.8 +doc/*/*.1 +doc/*/*.5 +doc/*/*.8 +doc/*/apt.ent + +# ignore xml man page files generated by po4a +# older translation methods translate in this files +# so we can not ignore it for all translations now +doc/ja/*.xml + +# FIXME: files generated by deprecated sgml man pages +doc/es/manpage.links +doc/es/manpage.refs +doc/pt_BR/manpage.links +doc/pt_BR/manpage.refs -- cgit v1.2.3 From 97c17a01c7722f08e0cebf938c12a010b96220b7 Mon Sep 17 00:00:00 2001 From: Michael Vogt <mvo@debian.org> Date: Thu, 27 Aug 2009 15:24:41 +0200 Subject: releasing version 0.7.23 --- apt-pkg/init.h | 2 +- apt-pkg/makefile | 2 +- debian/NEWS | 2 +- debian/changelog | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apt-pkg/init.h b/apt-pkg/init.h index 165299253..44d1d107c 100644 --- a/apt-pkg/init.h +++ b/apt-pkg/init.h @@ -19,7 +19,7 @@ // See the makefile #define APT_PKG_MAJOR 4 #define APT_PKG_MINOR 8 -#define APT_PKG_RELEASE 0 +#define APT_PKG_RELEASE 1 extern const char *pkgVersion; extern const char *pkgLibVersion; diff --git a/apt-pkg/makefile b/apt-pkg/makefile index 679d97e70..7816ecf0d 100644 --- a/apt-pkg/makefile +++ b/apt-pkg/makefile @@ -14,7 +14,7 @@ include ../buildlib/defaults.mak LIBRARY=apt-pkg LIBEXT=$(GLIBC_VER)$(LIBSTDCPP_VER) MAJOR=4.8 -MINOR=0 +MINOR=1 SLIBS=$(PTHREADLIB) $(INTLLIBS) -lutil -ldl APT_DOMAIN:=libapt-pkg$(MAJOR) diff --git a/debian/NEWS b/debian/NEWS index 19f06793e..88f2c564e 100644 --- a/debian/NEWS +++ b/debian/NEWS @@ -1,4 +1,4 @@ -apt (0.7.22.3) unstable; urgency=low +apt (0.7.23) unstable; urgency=low * Code that determines which proxy to use was changed. Now 'Acquire::{http,ftp}::Proxy[::<host>]' options have the highest priority, diff --git a/debian/changelog b/debian/changelog index 1ee88f0ba..e351198c5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -apt (0.7.22.3) UNRELEASED; urgency=low +apt (0.7.23) unstable; urgency=low [ Eugene V. Lyubimkin ] * methods/{http,https,ftp}, doc/apt.conf.5.xml: @@ -51,7 +51,7 @@ apt (0.7.22.3) UNRELEASED; urgency=low * apt-pkg/indexcopy.cc: - fix a memory leak then the Release file not exists (Closes: #511556) - -- Michael Vogt <michael.vogt@ubuntu.com> Thu, 27 Aug 2009 14:15:39 +0200 + -- Michael Vogt <mvo@debian.org> Thu, 27 Aug 2009 14:44:39 +0200 apt (0.7.22.2) unstable; urgency=low -- cgit v1.2.3 From b01390eaa5750f28f258308b546f398ea5d89e3c Mon Sep 17 00:00:00 2001 From: David Kalnischkies <kalnischkies@gmail.com> Date: Thu, 27 Aug 2009 15:28:28 +0200 Subject: * buildlib/po4a_manpage.mak, doc/makefile, configure: - simplify the makefiles needed for po4a manpages Add a bit more autodetection to the buildsystem to be able to add only half translated languages (only a few man pages, not all) and try to reduce the overhead needed to add new languages. --- buildlib/defaults.mak | 1 + buildlib/environment.mak.in | 7 +++-- buildlib/po4a_manpage.mak | 54 ++++++++++++++++++++++++++++++++++ configure.in | 6 ++++ debian/changelog | 2 ++ doc/ja/makefile | 70 ++------------------------------------------- doc/makefile | 28 ++++++++++++------ 7 files changed, 91 insertions(+), 77 deletions(-) create mode 100644 buildlib/po4a_manpage.mak diff --git a/buildlib/defaults.mak b/buildlib/defaults.mak index 8c57da05b..5373ee5cf 100644 --- a/buildlib/defaults.mak +++ b/buildlib/defaults.mak @@ -83,6 +83,7 @@ PYTHON_H = $(BASE)/buildlib/python.mak COPY_H = $(BASE)/buildlib/copy.mak YODL_MANPAGE_H = $(BASE)/buildlib/yodl_manpage.mak SGML_MANPAGE_H = $(BASE)/buildlib/sgml_manpage.mak +PO4A_MANPAGE_H = $(BASE)/buildlib/po4a_manpage.mak XML_MANPAGE_H = $(BASE)/buildlib/xml_manpage.mak FAIL_H = $(BASE)/buildlib/fail.mak PODOMAIN_H = $(BASE)/buildlib/podomain.mak diff --git a/buildlib/environment.mak.in b/buildlib/environment.mak.in index 4e47692f5..b3afca0ad 100644 --- a/buildlib/environment.mak.in +++ b/buildlib/environment.mak.in @@ -36,8 +36,11 @@ DOCBOOK2MAN := @DOCBOOK2MAN@ # XML for the man pages XMLTO := @XMLTO@ -# XML for the man pages -XMLTO := @XMLTO@ +# po4a for the man pages +XSLTPROC := @XSLTPROC@ + +# po4a for the man pages +PO4A := @PO4A@ # Gettext settings GMSGFMT = @GMSGFMT@ diff --git a/buildlib/po4a_manpage.mak b/buildlib/po4a_manpage.mak new file mode 100644 index 000000000..3ea4e2cb5 --- /dev/null +++ b/buildlib/po4a_manpage.mak @@ -0,0 +1,54 @@ +# -*- make -*- + +# This handles man pages with po4a. We convert to the respective +# output in the source directory then copy over to the final dest. This +# means po4a is only needed if compiling from bzr + +# Input +# $(LC) - The language code of the translation + +# See defaults.mak for information about LOCAL + +# generate a list of accepted man page translations +SOURCE = $(patsubst %.xml,%,$(wildcard *.$(LC).?.xml)) +INCLUDES = apt.ent + +# Do not use XMLTO, build the manpages directly with XSLTPROC +ifdef XSLTPROC + +STYLESHEET=./style.$(LC).xsl + +LOCAL := po4a-manpage-$(firstword $(SOURCE)) +$(LOCAL)-LIST := $(SOURCE) + +# Install generation hooks +doc: $($(LOCAL)-LIST) +veryclean: veryclean/$(LOCAL) + +$($(LOCAL)-LIST) :: % : %.xml $(INCLUDES) + echo Creating man page $@ + $(XSLTPROC) -o $@ $(STYLESHEET) $< # why xsltproc doesn't respect the -o flag here??? + mv -f $(subst .$(LC),,$@) $@ + +# Clean rule +.PHONY: veryclean/$(LOCAL) +veryclean/$(LOCAL): + -rm -rf $($(@F)-LIST) apt.ent apt.$(LC).8 \ + $(addsuffix .xml,$($(@F)-LIST)) + +HAVE_PO4A=yes +endif + +# take care of the rest +SOURCE := $(SOURCE) apt.$(LC).8 +INCLUDES := + +ifndef HAVE_PO4A +# Strip from the source list any man pages we dont have compiled already +SOURCE := $(wildcard $(SOURCE)) +endif + +# Chain to the manpage rule +ifneq ($(words $(SOURCE)),0) +include $(MANPAGE_H) +endif diff --git a/configure.in b/configure.in index 0dd1beb1a..eb3ec0426 100644 --- a/configure.in +++ b/configure.in @@ -190,6 +190,12 @@ AC_PATH_PROG(DOCBOOK2MAN,docbook2man) dnl Check for the XML tools needed to build man pages AC_PATH_PROG(XMLTO,xmlto) +dnl Check for the XSLTProc tool needed to build man pages together with po4a +AC_PATH_PROG(XSLTPROC,xsltproc) + +dnl Check for the po4a tool needed to build man pages +AC_PATH_PROG(PO4A,po4a) + dnl Check for graphviz AC_CHECK_PROG([HAVE_DOT], [dot], [YES], [NO]) AC_PATH_PROG([DOT], [dot], []) diff --git a/debian/changelog b/debian/changelog index f978eb367..c3f9881ac 100644 --- a/debian/changelog +++ b/debian/changelog @@ -39,6 +39,8 @@ apt (0.7.22.3) unstable; urgency=low * doc/Doxyfile.in: - update file with doxygen 1.6.1 (current unstable) - activate DOT_MULTI_TARGETS, it is default on since doxygen 1.5.9 + * buildlib/po4a_manpage.mak, doc/makefile, configure: + - simplify the makefiles needed for po4a manpages [ George Danchev ] * cmdline/apt-cache.cc: diff --git a/doc/ja/makefile b/doc/ja/makefile index da566cc96..f44bb1c0f 100644 --- a/doc/ja/makefile +++ b/doc/ja/makefile @@ -5,71 +5,7 @@ SUBDIR=doc/ja # Bring in the default rules include ../../buildlib/defaults.mak -# Do not use XMLTO, build the manpages directly with XSLTPROC -XSLTPROC=/usr/bin/xsltproc -STYLESHEET=./style.ja.xsl - - -# Man pages -SOURCE = apt-cache.ja.8 apt-get.ja.8 apt-cdrom.ja.8 apt.conf.ja.5 \ - sources.list.ja.5 apt-config.ja.8 apt-sortpkgs.ja.1 \ - apt-ftparchive.ja.1 apt_preferences.ja.5 apt-extracttemplates.ja.1 \ - apt-key.ja.8 apt-secure.ja.8 apt-mark.ja.8 - -INCLUDES = apt.ent - -doc: $(SOURCE) - -clean: clean-manpages - -clean-manpages: - rm -f $(SOURCE) \ - $(patsubst %.ja.1,%.1,$(SOURCE)) \ - $(patsubst %.ja.5,%.5,$(SOURCE)) \ - $(patsubst %.ja.8,%.8,$(SOURCE)) - -$(SOURCE) :: % : %.xml $(INCLUDES) - echo Creating man page $@ - $(XSLTPROC) -o $@ $(STYLESHEET) $< - -apt-cache.ja.8:: apt-cache.8 - cp $< $@ - -apt-get.ja.8:: apt-get.8 - cp $< $@ - -apt-cdrom.ja.8:: apt-cdrom.8 - cp $< $@ - -apt.conf.ja.5:: apt.conf.5 - cp $< $@ - -apt-config.ja.8:: apt-config.8 - cp $< $@ - -sources.list.ja.5:: sources.list.5 - cp $< $@ - -apt-sortpkgs.ja.1:: apt-sortpkgs.1 - cp $< $@ - -apt-ftparchive.ja.1:: apt-ftparchive.1 - cp $< $@ - -apt_preferences.ja.5:: apt_preferences.5 - cp $< $@ - -apt-extracttemplates.ja.1:: apt-extracttemplates.1 - cp $< $@ - -apt-key.ja.8:: apt-key.8 - cp $< $@ - -apt-secure.ja.8:: apt-secure.8 - cp $< $@ - -apt-mark.ja.8:: apt-mark.8 - cp $< $@ - - +# Language Code of this translation +LC=ja +include $(PO4A_MANPAGE_H) diff --git a/doc/makefile b/doc/makefile index e12de7228..2a2663fb3 100644 --- a/doc/makefile +++ b/doc/makefile @@ -1,7 +1,7 @@ # -*- make -*- BASE=.. SUBDIR=doc -SUBDIRS= fr ja pl pt_BR es +SUBDIRS= $(dir $(wildcard */makefile)) # Bring in the default rules include ../buildlib/defaults.mak @@ -26,27 +26,39 @@ TARGET = binary include $(COPY_H) #.PHONY: headers library clean veryclean all binary program doc doc.pt_BR doc.fr -doc: po4a +doc: for dir in $(SUBDIRS); do\ $(MAKE) -C $$dir $@; \ done -.PHONY: update-po po4a -update-po: - po4a --previous --no-backups --force --no-translations po4a.conf - -clean: po4a-clean clean-subdirs +clean: clean-subdirs +veryclean: veryclean-subdirs clean-subdirs: for dir in $(SUBDIRS); do\ - $(MAKE) -C $$dir $@; \ + $(MAKE) -C $$dir clean; \ + done + +veryclean-subdirs: + for dir in $(SUBDIRS); do\ + $(MAKE) -C $$dir veryclean; \ done +ifdef PO4A +doc: po4a + +clean: po4a-clean + +.PHONY: update-po po4a +update-po: + po4a --previous --no-backups --force --no-translations po4a.conf + po4a-clean: po4a --previous --rm-backups --rm-translations po4a.conf po4a: po4a --previous --no-backups po4a.conf +endif ifdef DOXYGEN DOXYGEN_SOURCES = $(shell find $(BASE)/apt-pkg -not -name .\\\#* -and \( -name \*.cc -or -name \*.h \) ) -- cgit v1.2.3 From 3d1e70d39d37df5a263d412701e3df0afee647cf Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Thu, 27 Aug 2009 20:26:16 +0200 Subject: Update PO(T) files --- po/apt-all.pot | 108 +++++------ po/ar.po | 530 ++++++++++++++++++++++++++-------------------------- po/bg.po | 533 ++++++++++++++++++++++++++-------------------------- po/bs.po | 527 ++++++++++++++++++++++++++-------------------------- po/ca.po | 573 +++++++++++++++++++++++++++----------------------------- po/cs.po | 533 ++++++++++++++++++++++++++-------------------------- po/cy.po | 532 ++++++++++++++++++++++++++-------------------------- po/da.po | 534 +++++++++++++++++++++++++++-------------------------- po/de.po | 534 +++++++++++++++++++++++++++-------------------------- po/dz.po | 532 ++++++++++++++++++++++++++-------------------------- po/el.po | 532 ++++++++++++++++++++++++++-------------------------- po/en_GB.po | 534 +++++++++++++++++++++++++++-------------------------- po/es.po | 536 +++++++++++++++++++++++++++-------------------------- po/eu.po | 575 +++++++++++++++++++++++++++------------------------------ po/fi.po | 534 +++++++++++++++++++++++++++-------------------------- po/fr.po | 555 ++++++++++++++++++++++++++++--------------------------- po/gl.po | 533 ++++++++++++++++++++++++++-------------------------- po/he.po | 529 ++++++++++++++++++++++++++-------------------------- po/hu.po | 532 ++++++++++++++++++++++++++-------------------------- po/it.po | 575 +++++++++++++++++++++++++++------------------------------ po/ja.po | 533 ++++++++++++++++++++++++++-------------------------- po/km.po | 532 ++++++++++++++++++++++++++-------------------------- po/ko.po | 532 ++++++++++++++++++++++++++-------------------------- po/ku.po | 528 ++++++++++++++++++++++++++-------------------------- po/mr.po | 532 ++++++++++++++++++++++++++-------------------------- po/nb.po | 532 ++++++++++++++++++++++++++-------------------------- po/ne.po | 532 ++++++++++++++++++++++++++-------------------------- po/nl.po | 534 +++++++++++++++++++++++++++-------------------------- po/nn.po | 532 ++++++++++++++++++++++++++-------------------------- po/pl.po | 534 +++++++++++++++++++++++++++-------------------------- po/pt.po | 534 +++++++++++++++++++++++++++-------------------------- po/pt_BR.po | 534 +++++++++++++++++++++++++++-------------------------- po/ro.po | 532 ++++++++++++++++++++++++++-------------------------- po/ru.po | 573 +++++++++++++++++++++++++++----------------------------- po/sk.po | 533 ++++++++++++++++++++++++++-------------------------- po/sl.po | 532 ++++++++++++++++++++++++++-------------------------- po/sv.po | 533 ++++++++++++++++++++++++++-------------------------- po/th.po | 532 ++++++++++++++++++++++++++-------------------------- po/tl.po | 532 ++++++++++++++++++++++++++-------------------------- po/uk.po | 532 ++++++++++++++++++++++++++-------------------------- po/vi.po | 533 ++++++++++++++++++++++++++-------------------------- po/zh_CN.po | 573 +++++++++++++++++++++++++++----------------------------- po/zh_TW.po | 530 ++++++++++++++++++++++++++-------------------------- 43 files changed, 11354 insertions(+), 11341 deletions(-) diff --git a/po/apt-all.pot b/po/apt-all.pot index 518a3a1c1..43d368c3c 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: 2009-08-21 11:35+0200\n" +"POT-Creation-Date: 2009-08-27 20:25+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" @@ -994,7 +994,7 @@ msgstr "" msgid "Calculating upgrade... " msgstr "" -#: cmdline/apt-get.cc:1933 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "" @@ -1566,147 +1566,147 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." msgstr "" -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "" -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "" -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "" @@ -1814,80 +1814,80 @@ msgstr "" msgid "Read error from %s process" msgstr "" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:215 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "" diff --git a/po/ar.po b/po/ar.po index 92f74b614..dc8accf2e 100644 --- a/po/ar.po +++ b/po/ar.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -24,7 +24,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "الحزمة %s النسخة %s لها معتمد غير مستوفى:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -96,7 +96,7 @@ msgstr "" msgid "Total space accounted for: " msgstr "مجموع المساحة المحسوب حسابها:" -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "" @@ -154,14 +154,14 @@ msgstr " جدول النسخ:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -200,15 +200,15 @@ msgid "" "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" msgstr "" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "الرجاء كتابة اسم لهذا القرص، مثال 'Debian 2.1r1 Disk 1'" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "الرجاء إدخال قرص في السواقة وضغط الزر enter" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "كرر هذه العملية لباقي الأقراص المدمجة في المجموعة." @@ -251,7 +251,7 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "تعذرت الكتابة إلى %s" @@ -554,7 +554,7 @@ msgstr "فشل تغيير اسم %s إلى %s" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "" @@ -655,118 +655,118 @@ msgstr "%lu لإزالتها و %lu لم يتم ترقيتها.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu غير مثبتة بالكامل أو مزالة.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "تصحيح المعتمدات..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " فشل." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "لم يمكن تصحيح المعتمدات" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "لم يمكن تقليص مجموعة الترقية" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " تم" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "قد ترغب بتنفيذ الأمر `apt-get -f install' لتصحيح هذه." -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "مُعتمدات غير مستوفاة. حاول استخدام -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "تحذير: تعذرت المصادقة على الحزم التالية!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "تم غض النظر عن تحذير المصادقة.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "تثبيت هذه الحزم دون التحقق منها [y/N]؟ " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "تعذرت المصادقة على بعض الحزم" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "هناك مشاكل وتم استخدام -y دون --force-yes" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "خطأ داخلي، تم طلب InstallPackages مع وجود حزم معطوبة!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "حزم بحاجة للإزالة لكن الإزالة مُعطّلة." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "خطأ داخلي، لم تنته عملية الترتيب" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "تعذر قَفْل دليل التنزيل" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "تعذرت قراءة قائمة المصادر." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "يا للغرابة.. لم تتطابق الأحجام، الرجاء مراسلة apt@packages.debian.org" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "بحاجة إلى جلب %sب/%sب من الأرشيف.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "بحاجة إلى جلب %sب من الأرشيف.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "بعد الاستخراج %sب من المساحة الإضافيّة سيتمّ استخدامها.\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "بعد الاستخراج %sب من المساحة ستفرّغ.\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "تعذر حساب المساحة الحرة في %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "ليس هناك مساحة كافية في %s." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "نعم، افعل ما أقوله!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -777,28 +777,28 @@ msgstr "" "كي تستمر اكتب العبارة '%s'\n" " ؟] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "إجهاض." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "هل تريد الاستمرار [Y/n]؟" -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "فشل إحضار %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "فشل تنزيل بعض الملفات" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "اكتمل التنزيل وفي وضع التنزيل فقط" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -806,47 +806,47 @@ msgstr "" "تعذر إحضار بعض الأرشيف، ربما يمكنك محاولة تنفيذ apt-get update أو إضافة --" "fix-missing؟" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing وتبديل الأوساط غير مدعومة حالياً" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "تعذر تصحيح الحزم المفقودة." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "إجهاض التثبيت." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "لاحظ، تحديد %s بدلاً من %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "تخطّي %s، حيث أنها مثبتة ولم يتمّ تعيين الترقية.\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "الحزمة %s غير مُثبّتة، لذلك لن تُزال\n" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "الحزمة %s وهميّة وتوفّرها:\n" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [مُثبّتة]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "يجب اختيار واحدة بالتحديد لتثبيتها." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -854,69 +854,74 @@ msgid "" "is only available from another source\n" msgstr "" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "على أيّ فإن الحزم التالية تحلّ مكانها:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "الحزمة %s ليس لها مرشح تثبيت" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "إعادة تثبيت %s غير ممكنة، حيث أنّه لا يمكن تنزيلها.\n" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s هي النسخة الأحدث.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "تعذر العثور على الإصدارة '%s' للحزمة '%s'" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "تعذر العثور على النسخة '%s' للحزمة '%s'" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "النسخة المحددة %s (%s) للإصدارة %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "لا يقبل الأمر update أية مُعطيات" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "تعذر قفل دليل القائمة" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "سيتم تثبيت الحزم الجديدة التالية:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "سيتم تثبيت الحزم الجديدة التالية:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -932,51 +937,51 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "قد تساعد المعلومات التالية في حل المشكلة:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, fuzzy, c-format msgid "Couldn't find task %s" msgstr "تعذر العثور على الحزمة %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "تعذر العثور على الحزمة %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "لاحظ، تحديد %s بسبب صيغة regex '%s'\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "إلا أنه سيتم تثبيت %s" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "قد ترغب بتشغيل `apt-get -f install' لتصحيح هذه:" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" "مُعتمدات غير مستوفاة. جرب 'apt-get -f install' بدون أسماء حزم (أو حدّد حلاً)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -984,152 +989,152 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "حزم معطوبة" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "سيتم تثبيت الحزم الإضافيّة التالية:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "الحزم المقترحة:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "الحزم المستحسنة:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "حساب الترقية..." -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "فشل" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "تمّ" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "يجب تحديد حزمة واحدة على الأقل لجلب مصدرها" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "تعذر العثور على مصدر الحزمة %s" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "تخطي الملف '%s' المنزل مسبقاً\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "ليس هناك مساحة كافية في %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "يجب جلب %sب/%sب من الأرشيفات المصدرية.\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "يجب جلب %sب من الأرشيفات المصدريّة.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "إحضار المصدر %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "فشل إحضار بعض الأرشيفات." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "أمر فك الحزمة '%s' فشل.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "أمر البناء '%s' فشل.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, 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:2514 +#: cmdline/apt-get.cc:2551 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "الوحدات المدعومة:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1173,7 +1178,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1399,9 +1404,13 @@ msgstr "" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "تعذرت قراءة %s" @@ -1431,9 +1440,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "قراءة قوائم الحزم" @@ -1533,12 +1542,12 @@ msgstr "فشل العثور على ملف تحكّم صالح" msgid "Unparsable control file" msgstr "" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "تعذرت قراءة قاعدة بيانات القرص المدمج %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1546,20 +1555,20 @@ msgstr "" "الرجاء استخدام apt-cdrom لتعريف APT بهذا القرص المدمج. لا يمكن استخدام apt-" "get update لإضافة أقراص مدمجة جديدة." -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "القرص المدمج الخطأ" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "تعذر فكّ القرص المدمج من %s، إذ قد يكون لا يزال قيد الاستخدام." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "لم يُعثر على القرص." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "لم يُعثر على الملف" @@ -1577,34 +1586,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "تسجيل الدخول" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "رفض الخادم اتصالنا بالرد: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "فشل USER، ردّ الخادم: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "فشل PASS، ردّ الخادم: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1612,114 +1621,114 @@ msgstr "" "تم تحديد خادم بروكسي ولكن دون نص تسجيل دخول برمجي، Acquire::ftp::ProxyLogin " "فارغ." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "فشل أمر نص تسجيل الدخول البرمجي '%s'، ردّ الخادم: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "فشل TYPE، ردّ الخادم: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "انتهى وقت الاتصال" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "أغلق الخادم الاتصال" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "خطأ في القراءة" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "" -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "خطأ في الكتابة" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "" -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "تعذر إرسال الأمر PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "فشل EPRT، ردّ الخادم: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "تعذر قبول الاتصال" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "تعذر إحضار الملف، ردّ الخادم '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "فشل نقل البيانات، ردّ الخادم '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "استعلام" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "" @@ -1827,94 +1836,94 @@ msgstr "" msgid "Read error from %s process" msgstr "" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "بانتظار الترويسات" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "سطر ترويسة سيء" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "أرسل خادم http ترويسة ردّ غير صالحة" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "أرسل خادم http ترويسة طول محتويات (ِContent-Length) غير صالحة" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "أرسل خادم http ترويسة مدى محتويات (ِContent-Range) غير صالحة" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "خادم http له دعم مدى معطوب" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "نسق تاريخ مجهول" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "فشل التحديد" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "انتهى وقت الاتصال" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "خطأ في الكتابة إلى ملف المُخرجات" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "خطأ في الكتابة إلى الملف" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "خطأ في الكتابة إلى الملف" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "خطأ في القراءة من الخادم. أقفل الطرف الآخر الاتصال" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "خطأ في القراءة من الخادم" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 #, fuzzy msgid "Failed to truncate file" msgstr "فشلت كتابة الملف %s" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "بيانات ترويسة سيئة" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "فشل الاتصال" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "خطأ داخلي" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2061,13 +2070,13 @@ msgstr "عمليّة غير صالحة %s" msgid "Unable to stat the mount point %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "" @@ -2096,50 +2105,50 @@ msgstr "" msgid "Waited for %s but it wasn't there" msgstr "" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "" -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, c-format msgid "Sub-process %s received signal %u." msgstr "" -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "مشكلة في إغلاق الملف" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "مشكلة في مزامنة الملف" @@ -2232,17 +2241,17 @@ msgstr "" msgid "Dependency generation" msgstr "" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 #, fuzzy msgid "Reading state information" msgstr "دمج المعلومات المتوفرة" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "فشل فتح %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "فشلت كتابة الملف %s" @@ -2282,32 +2291,32 @@ msgstr "" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "فتح %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "" -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2326,17 +2335,17 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2354,12 +2363,12 @@ msgstr "" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "" @@ -2379,16 +2388,16 @@ msgstr "" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "الرجاء إدخال القرص المُسمّى '%s' في السوّاقة '%s' وضغط مفتاح الإدخال." -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "نظام الحزم '%s' غير مدعوم" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "" @@ -2405,164 +2414,162 @@ msgstr "" msgid "You may want to run apt-get update to correct these problems" msgstr "قد يساعدك تنفيذ الأمر apt-get update في تصحيح هذه المشاكل" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "حدث خطأ أثناء معالجة %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "حدث خطأ أثناء معالجة %s (UserPackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "حدث خطأ أثناء معالجة %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "حدث خطأ أثناء معالجة %s (UserPackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "حدث خطأ أثناء معالجة %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "حدث خطأ أثناء معالجة %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "حدث خطأ أثناء معالجة %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "حدث خطأ أثناء معالجة %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "حدث خطأ أثناء معالجة %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "فشل إعادة التسمية ، %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5Sum غير متطابقة" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 #, fuzzy msgid "Hash Sum mismatch" msgstr "MD5Sum غير متطابقة" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, 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:1290 +#: apt-pkg/acquire-item.cc:1275 #, 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:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "الحجم غير متطابق" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to open DB file %s: %s" msgid "Unable to parse Release file %s" msgstr "تعذر فتح ملف قاعدة البيانات %s: %s" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "لاحظ، تحديد %s بدلاً من %s\n" @@ -2576,72 +2583,72 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" "Mounting CD-ROM\n" msgstr "" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "جاري التعرف..." -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 #, fuzzy msgid "Unmounting CD-ROM...\n" msgstr "فك تركيب القرص المدمج..." -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "فك تركيب القرص المدمج\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "بانتظار القرص...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "تركيب القرص...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" "zu signatures\n" msgstr "" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "هذا الاسم غير صالح، حاول مجدداً.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2650,34 +2657,34 @@ msgstr "" "هذا القرص مسمى: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "نسخ قوائم الحزم..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "كتابة لائحة المصادر الجديدة\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -2764,7 +2771,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "تعذر قفل دليل القائمة" diff --git a/po/bg.po b/po/bg.po index 455f8f7d6..fd8e8da65 100644 --- a/po/bg.po +++ b/po/bg.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+0200\n" "PO-Revision-Date: 2009-01-27 12:41+0200\n" "Last-Translator: Damyan Ivanov <dmn@debian.org>\n" "Language-Team: Bulgarian <dict@fsa-bg.org>\n" @@ -25,7 +25,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Пакетът %s версия %s има неудовлетворена зависимост:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -95,7 +95,7 @@ msgstr "Общо празно пространство: " msgid "Total space accounted for: " msgstr "Общо отчетено пространство: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Пакетният файл %s не е синхронизиран." @@ -154,14 +154,14 @@ msgstr " Таблица с версиите:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -236,15 +236,15 @@ msgstr "" "tmp\n" "Вижте „man“ страниците apt-cache(8) и apt.conf(5) за повече информация.\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "Задайте име за този диск, като „Debian 2.1r1 Disk1“" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Сложете диск в устройството и натиснете „Enter“" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Повторете този процес за останалите дискове от комплекта." @@ -312,7 +312,7 @@ msgstr "" " -o=? Настройване на произволна конфигурационна опция, т.е. -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Неуспех при записа на %s" @@ -660,7 +660,7 @@ msgstr "Неуспех при преименуването на %s на %s" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Грешка при компилирането на регулярния израз - %s" @@ -761,123 +761,123 @@ msgstr "%lu за премахване и %lu без промяна.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu не са напълно инсталирани или премахнати.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Коригиране на зависимостите..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " пропадна." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Неуспех при коригирането на зависимостите" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Неуспех при минимизирането на набора актуализации" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Готово" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "" "Възможно е да изпълните „apt-get -f install“, за да коригирате тези " "неизправности." -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Неудовлетворени зависимости. Опитайте с „-f“." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ПРЕДУПРЕЖДЕНИЕ: Следните пакети не могат да бъдат удостоверени!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Предупреждението за удостоверяването е пренебрегнато.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Инсталиране на тези пакети без проверка [y/N]?" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Някои пакети не можаха да бъдат удостоверени" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "Има проблеми и „-y“ е използвано без „--force-yes“" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Вътрешна грешка, „InstallPackages“ е предизвикано при счупени пакети!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "Трябва да бъдат премахнати пакети, но премахването е изключено." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Вътрешна грешка, „Ordering“ не завърши" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Неуспех при заключването на директорията за изтегляне" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Списъкът с източници не можа да бъде прочетен." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "Странно.. Размерите не съвпадат, изпратете е-поща на apt@packages.debian.org" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Необходимо е да се изтеглят %sB/%sB архиви.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Необходимо е да се изтеглят %sB архиви.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" "След тази операция ще бъде използвано %sB допълнително дисково " "пространство.\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "След тази операция ще бъде освободено %sB дисково пространство.\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "Неуспех при определянето на свободното пространство в %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "Нямате достатъчно свободно пространство в %s." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Указано е „Trivial Only“, но това не е тривиална операция." -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Да, прави каквото казвам!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -888,28 +888,28 @@ msgstr "" "За да продължите, въведете фразата „%s“\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Прекъсване." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Искате ли да продължите [Y/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Неуспех при изтеглянето на %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Някои файлове не можаха да бъдат изтеглени" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Изтеглянето завърши в режим само на изтегляне" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -917,47 +917,47 @@ msgstr "" "Неуспех при изтеглянето на някои архиви, може да изпълните „apt-get update“ " "или да опитате с „--fix-missing“?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "„--fix-missing“ и превключване на носители не се поддържа все още" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Неуспех при коригирането на липсващите пакети." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Прекъсване на инсталирането." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Забележете, избиране на %s вместо %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "Пропускане на %s, вече е инсталиран и не е маркиран за актуализация.\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Пакетът %s не е инсталиран, така че не е премахнат\n" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Пакетът %s е виртуален пакет, осигурен от:\n" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Инсталиран]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Трябва изрично да изберете един за инсталиране." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -968,69 +968,75 @@ msgstr "" "Това може да означава, че пакета липсва, остарял е, или е достъпен\n" "само от друг източник\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Обаче следните пакети го заместват:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Пакетът %s няма кандидат за инсталиране" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Преинсталацията на %s не е възможна, не може да бъде изтеглен.\n" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s вече е най-новата версия.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Не е намерено издание „%s“ на „%s“" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Не е намерена версия „%s“ на „%s“" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Избрана е версия %s (%s) за %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Командата „update“ не възприема аргументи" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Неуспех при заключването на директорията със списъка на пакетите" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Не би трябвало да се изтрива. AutoRemover няма да бъде стартиран" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" "Следните пакети са били инсталирани автоматично и вече не са необходими:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"Следните пакети са били инсталирани автоматично и вече не са необходими:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Използвайте „apt-get autoremove“ за да ги премахнете." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1048,44 +1054,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "" "Следната информация може да помогне за намиране на изход от ситуацията:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Вътрешна грешка, AutoRemover счупи нещо в системата" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Вътрешна грешка, „AllUpgrade“ счупи нещо в системата" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Неуспех при намирането на задача %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Неуспех при намирането на пакет %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Забележете, избиране на %s за регулярен израз „%s“\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s е отбелязан като ръчно инсталиран.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "Възможно е да изпълните „apt-get -f install“, за да коригирате:" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1093,7 +1099,7 @@ msgstr "" "Неудовлетворени зависимости. Опитайте „apt-get -f install“ без пакети (или " "укажете разрешение)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1105,118 +1111,118 @@ msgstr "" "дистрибуция, че някои необходими пакети още не са създадени или пък\n" "са били преместени от Incoming." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Счупени пакети" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Следните допълнителни пакети ще бъдат инсталирани:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Предложени пакети:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Препоръчвани пакети:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Изчисляване на актуализацията..." -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Неуспех" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Готово" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Вътрешна грешка, „problem resolver“ счупи нещо в системата" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "Трябва да укажете поне един пакет за изтегляне на изходния му код" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "Неуспех при намирането на изходен код на пакет %s" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Пропускане на вече изтегления файл „%s“\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "Нямате достатъчно свободно пространство в %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Необходимо е да се изтеглят %sB/%sB архиви изходен код.\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Необходимо е да се изтеглят %sB архиви изходен код.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Изтегляне на изходен код %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Неуспех при изтеглянето на някои архиви." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" "Пропускане на разпакетирането на вече разпакетирания изходен код в %s\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Командата за разпакетиране „%s“ пропадна.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Проверете дали имате инсталиран пакета „dpkg-dev“.\n" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Командата за компилиране „%s“ пропадна.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Процесът-потомък пропадна" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "" "Трябва да укажете поне един пакет за проверка на зависимости за компилиране" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" "Неуспех при получаването на информация за зависимостите за компилиране на %s" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s няма зависимости за компилиране.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1225,7 +1231,7 @@ msgstr "" "Зависимост %s за пакета %s не може да бъде удовлетворена, понеже пакета %s " "не може да бъде намерен" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1235,32 +1241,32 @@ msgstr "" "налични версии на пакета %s, които могат да удовлетворят изискването за " "версия" -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2551 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Неуспех при удовлетворяването на зависимост %s за пакета %s: Инсталираният " "пакет %s е твърде нов" -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Неуспех при удовлетворяването на зависимост %s за пакета %s: %s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Зависимостите за компилиране на %s не можаха да бъдат удовлетворени." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Неуспех при обработката на зависимостите за компилиране" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Поддържани модули:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1347,7 +1353,7 @@ msgstr "" "информация и опции.\n" " Това APT има Върховни Сили.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1585,9 +1591,13 @@ msgstr "Файловете се заменят със съдържанието msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Неуспех при четенето на %s" @@ -1618,9 +1628,9 @@ msgstr "" "Директориите info и temp трябва да бъдат на една и съща файлова система" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Четене на списъците с пакети" @@ -1723,12 +1733,12 @@ msgstr "Неуспех при намирането на валиден конт msgid "Unparsable control file" msgstr "Контролен файл, невъзможен за анализ" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Неуспех при четенето на базата %s със CD-ROM" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1736,20 +1746,20 @@ msgstr "" "Използвайте „apt-cdrom“, за да може този CD-ROM да се разпознава от APT. " "„apt-get update“ не може да се използва за добавяне на нови дискове" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Грешен CD-ROM" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Неуспех при демонтирането на CD-ROM в %s, може все още да се използва." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Дискът не е намерен." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Файлът не е намерен" @@ -1767,34 +1777,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "Невалиден адрес-URI, локалните адреси-URI не трябва да започват с „//“" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Влизане" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Неуспех при установяването на името на отдалечения сървър" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Неуспех при установяването на локалното име" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Сървърът отказа свързване и съобщи: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER се провали, сървърът съобщи: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS се провали, сървърът съобщи: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1802,116 +1812,116 @@ msgstr "" "Беше указан сървър-посредник, но няма скрипт за влизане, Acquire::ftp::" "ProxyLogin е празен." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Командата „%s“ на скрипта за влизане се провали, сървърът съобщи: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE се провали, сървърът съобщи: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Допустимото време за свързването изтече" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Сървърът разпадна връзката" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Грешка при четене" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Отговорът препълни буфера." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Развален протокол" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Грешка при запис" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Неуспех при създаването на гнездо" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "" "Неуспех при свързването на гнездо за данни, допустимото време за свъзрзване " "изтече" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Неуспех при свързването на пасивно гнездо." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo не успя да се добере до слушащо гнездо" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Неуспех при свързването на гнездо" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Неуспех при слушането на гнездото" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Неуспех при определянето на името на гнездото" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Неуспех при изпращането на командата PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Неизвестно семейство адреси %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT се провали, сървърът съобщи: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Времето за установяване на връзка с гнездо за данни изтече" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Невъзможно е да се приеме свързването" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Проблем при хеширане на файла" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Неуспех при изтеглянето на файла, сървърът съобщи „%s“" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Времето за връзка с гнездо за данни изтече" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Неуспех при прехвърлянето на данни, сървърът съобщи: „%s“" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Запитване" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Неуспех при извикването на " @@ -2027,93 +2037,93 @@ msgstr "Неуспех при отварянето на програмен ка msgid "Read error from %s process" msgstr "Грешка при четене от процес %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Чакане на заглавни части" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Получен е един ред на заглавна част с над %u символа" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Невалиден ред на заглавна част" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP сървърът изпрати невалидна заглавна част като отговор" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP сървърът изпрати невалидна заглавна част „Content-Length“" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP сървърът изпрати невалидна заглавна част „Content-Range“" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "HTTP сървърът няма поддръжка за прехвърляне на фрагменти на файлове" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Неизвестен формат на дата" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Неуспех на избора" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Допустимото време за свързване изтече" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Грешка при записа на изходен файл" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Грешка при записа на файл" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Грешка при записа на файла" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "Грешка при четене от сървъра. Отдалеченият сървър прекъсна връзката" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Грешка при четене от сървъра" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Неуспех при отрязване на края на файла" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Невалидни данни на заглавната част" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Неуспех при свързването" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Вътрешна грешка" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Невъзможно е да се прехвърли в паметта празен файл" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Неуспех при прехвърлянето в паметта на %lu байта" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2262,13 +2272,13 @@ msgstr "Невалидна операция %s" msgid "Unable to stat the mount point %s" msgstr "Неуспех при намирането на атрибутите на точка за монтиране %s" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Неуспех при преминаването в %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Неуспех при намирането на атрибутите на cdrom" @@ -2299,52 +2309,51 @@ msgstr "Неуспех при достъпа до заключване %s" msgid "Waited for %s but it wasn't there" msgstr "Изчака се завършването на %s, но той не беше пуснат" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Нарушение на защитата на паметта (segmentation fault) в подпроцеса %s." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Нарушение на защитата на паметта (segmentation fault) в подпроцеса %s." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Подпроцесът %s върна код за грешка (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Подпроцесът %s завърши неочаквано" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Неуспех при отварянето на файла %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "" "грешка при четене, все още има %lu за четене, но няма нито един останал" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "грешка при запис, все още име %lu за запис, но не успя" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Проблем при затварянето на файла" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Проблем при премахването на връзка към файла" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Проблем при синхронизиране на файла" @@ -2437,16 +2446,16 @@ msgstr "Версии кандидати" msgid "Dependency generation" msgstr "Генериране на зависимости" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Четене на информацията за състоянието" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Неуспех при отварянето на StateFile %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Неуспех при запис на временен StateFile %s" @@ -2488,34 +2497,34 @@ msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" "Лошо форматиран ред %lu в списъка с източници %s (анализ на дистрибуция)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Отваряне на %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Ред %u в списъка с източници %s е твърде дълъг." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Лошо форматиран ред %u в списъка с източници %s (тип)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Типът „%s“ на ред %u в списъка с източници %s е неизвестен." -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "" "Лошо форматиран ред %u в списъка с източници %s (идентификатор на " "производител)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2540,7 +2549,7 @@ msgstr "" "Пакетът %s трябва да бъде преинсталиран, но не може да се намери архив за " "него." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2548,12 +2557,12 @@ msgstr "" "Грешка, pkgProblemResolver::Resolve генерира повреди, това може да е " "причинено от задържани пакети." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Неуспех при коригирането на проблемите, имате задържани счупени пакети." -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2573,12 +2582,12 @@ msgstr "Директорията за архиви %spartial липсва." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Изтегляне на файл %li от %li (остават %s)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Изтегляне на файл %li от %li" @@ -2598,16 +2607,16 @@ msgstr "Методът %s не стартира правилно" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "Сложете диска, озаглавен „%s“ в устройство „%s“ и натиснете „Enter“." -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Пакетната система „%s“ не е поддържана" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Неуспех при определянето на подходяща пакетна система" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Неуспех при получаването на атрибути на %s." @@ -2627,137 +2636,136 @@ msgid "You may want to run apt-get update to correct these problems" msgstr "" "Може да искате да изпълните „apt-get update“, за да коригирате тези проблеми" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "Невалиден запис във файла с настройки, няма заглавна част Package" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Неизвестен тип за отбиване %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Няма указан приоритет (или е нула) на отбиването" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Кешът има несъвместима система за версии" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Възникна грешка при обработката на %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Възникна грешка при обработката на %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Възникна грешка при обработката на %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Възникна грешка при обработката на %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Възникна грешка при обработката на %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Възникна грешка при обработката на %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Възникна грешка при обработката на %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Възникна грешка при обработката на %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Възникна грешка при обработката на %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Еха, надхвърлихте броя имена на пакети, на който е способна тази версия на " "APT." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Еха, надхвърлихте броя версии, на който е способна тази версия на APT." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" "Еха, надхвърлихте броя описания, на който е способна тази версия на APT." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Еха, надхвърлихте броя зависимости, на който е способна тази версия на APT." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Възникна грешка при обработката на %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Възникна грешка при обработката на %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Пакетът %s %s не беше открит при обработката на файла със зависимости" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "" "Неуспех при получаването на атрибути на списъка с пакети с изходен код %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Събиране на информация за „Осигурява“" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "Входно/изходна грешка при запазването на кеша на пакети с изходен код" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "преименуването се провали, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "Несъответствие на контролна сума MD5" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Несъответствие на контролната сума" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "Няма налични публични ключове за следните идентификатори на ключове:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2766,7 +2774,7 @@ msgstr "" "Неуспех при намирането на файл за пакет %s. Това може да означава, че трябва " "ръчно да оправите този пакет (поради пропусната архитектура)." -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2775,26 +2783,24 @@ msgstr "" "Неуспех при намирането на файл за пакет %s. Това може да означава, че трябва " "ръчно да оправите този пакет." -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "Индексните файлове на пакета са повредени. Няма поле Filename: за пакет %s." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Несъответствие на размера" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Неуспех при анализирането на пакетен файл %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Забележете, избиране на %s вместо %s\n" @@ -2808,7 +2814,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Блокът на производителя %s не съдържа отпечатък" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2817,42 +2823,42 @@ msgstr "" "Използване на точка за монтиране на CD-ROM %s\n" "Монтиране на CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Идентифициране..." -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Запазен етикет: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "Демонтиране на CD-ROM...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Използване на точка за монтиране на CD-ROM %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Демонтиране на CD-ROM\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Чакане за диск...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Монтиране на CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Сканиране на диска за индексни файлове...\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2861,22 +2867,22 @@ msgstr "" "Намерени са %zu индекса на пакети, %zu индекса на пакети с изходен код, %zu " "индекса с преводи и %zu подписа.\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Намерен е етикет „%s“\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Това не е валидно име, опитайте отново.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2885,34 +2891,34 @@ msgstr "" "Наименование на този диск: \n" "„%s“\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Копиране на списъците с пакети..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Запазване на новия списък с източници\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Записите в списъка с източници за този диск са:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Записани са %i записа.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Записани са %i записа с %i липсващи файла.\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Записани са %i записа с %i несъответстващи файла\n" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Записани са %i записа с %i липсващи и %i несъответстващи файла\n" @@ -3001,7 +3007,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Неуспех при заключването на директорията със списъка на пакетите" diff --git a/po/bs.po b/po/bs.po index 28a02ed49..bb1681415 100644 --- a/po/bs.po +++ b/po/bs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -20,7 +20,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Paket %s verzije %s ima nezadovoljenu zavisnost:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -92,7 +92,7 @@ msgstr "" msgid "Total space accounted for: " msgstr "" -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "" @@ -150,14 +150,14 @@ msgstr "" msgid " %4i %s\n" msgstr "" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "" -#: cmdline/apt-cache.cc:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -196,15 +196,15 @@ msgid "" "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" msgstr "" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "" @@ -259,7 +259,7 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Ne mogu zapisati na %s" @@ -563,7 +563,7 @@ msgstr "" msgid "Y" msgstr "" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "" @@ -663,119 +663,119 @@ msgstr "" msgid "%lu not fully installed or removed.\n" msgstr "" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Ispravljam zavisnosti..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr "" -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Ne mogu ispraviti zavisnosti" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Urađeno" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "" -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Nezadovoljene zavisnosti. Pokušajte koristeći -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 #, fuzzy msgid "WARNING: The following packages cannot be authenticated!" msgstr "Slijedeći paketi će biti nadograđeni:" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "" -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "" -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "" -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Da, uradi kako kažem!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -783,75 +783,75 @@ msgid "" " ?] " msgstr "" -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Odustani." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 #, fuzzy msgid "Do you want to continue [Y/n]? " msgstr "Da li želite nastaviti? [Y/n]" -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" msgstr "" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "" -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Odustajem od instalacije." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr "[Instalirano]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "" -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -859,69 +859,74 @@ msgid "" "is only available from another source\n" msgstr "" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Međutim, slijedeći paketi ga zamjenjuju:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Slijedeći NOVI paketi će biti instalirani:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "Slijedeći NOVI paketi će biti instalirani:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -937,49 +942,49 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ali se %s treba instalirati" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -987,152 +992,152 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Oštećeni paketi" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Slijedeći dodatni paketi će biti instalirani:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Predloženi paketi:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Preporučeni paketi:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Računam nadogradnju..." -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Neuspješno" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Urađeno" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "" -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, 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:2514 +#: cmdline/apt-get.cc:2551 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Podržani moduli:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1176,7 +1181,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1399,9 +1404,13 @@ msgstr "" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Ne mogu čitati %s" @@ -1431,9 +1440,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Čitam spiskove paketa" @@ -1533,33 +1542,33 @@ msgstr "" msgid "Unparsable control file" msgstr "" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 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 "" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 #, fuzzy msgid "Wrong CD-ROM" msgstr "Pogrešan CD" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Ne mogu demontirati CD-ROM na %s, moguće je da se još uvijek koristi." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 #, fuzzy msgid "Disk not found." msgstr "Datoteka nije pronađena" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Datoteka nije pronađena" @@ -1577,148 +1586,148 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Prijavljujem se" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." msgstr "" -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Server je zatvorio vezu" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Greška pri čitanju" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "" -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 #, fuzzy msgid "Protocol corruption" msgstr "Oštećenje protokola" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Greška pri pisanju" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "" -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "" @@ -1827,94 +1836,94 @@ msgstr "" msgid "Read error from %s process" msgstr "" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Čekam na zaglavlja" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Nepoznat oblik datuma" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 #, fuzzy msgid "Failed to truncate file" msgstr "Ne mogu ukloniti %s" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Povezivanje neuspješno" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Unutrašnja greška" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2061,13 +2070,13 @@ msgstr "" msgid "Unable to stat the mount point %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "" @@ -2096,50 +2105,50 @@ msgstr "" msgid "Waited for %s but it wasn't there" msgstr "" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "" -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, c-format msgid "Sub-process %s received signal %u." msgstr "" -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "" @@ -2233,17 +2242,17 @@ msgstr "Verzije kandidata" msgid "Dependency generation" msgstr "Stvaranje zavisnosti" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 #, fuzzy msgid "Reading state information" msgstr "Sastavljam dostupne informacije" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "Ne mogu otvoriti %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "Ne mogu ukloniti %s" @@ -2283,32 +2292,32 @@ msgstr "" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Otvaram %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "" -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2327,17 +2336,17 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2355,12 +2364,12 @@ msgstr "" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, fuzzy, c-format msgid "Retrieving file %li of %li" msgstr "Čitam spisak datoteke" @@ -2380,16 +2389,16 @@ msgstr "" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "" @@ -2406,151 +2415,151 @@ msgstr "" msgid "You may want to run apt-get update to correct these problems" msgstr "" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "" -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, 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:1290 +#: apt-pkg/acquire-item.cc:1275 #, 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:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "" @@ -2574,108 +2583,108 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" "Mounting CD-ROM\n" msgstr "" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "" -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 #, fuzzy msgid "Unmounting CD-ROM...\n" msgstr "Pogrešan CD" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 #, fuzzy msgid "Waiting for disc...\n" msgstr "Čekam na zaglavlja" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" "zu signatures\n" msgstr "" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" "'%s'\n" msgstr "" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 #, fuzzy msgid "Copying package lists..." msgstr "Čitam spiskove paketa" -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" diff --git a/po/ca.po b/po/ca.po index c81f232cf..d63a308ec 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.22\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+0200\n" "PO-Revision-Date: 2009-06-06 02:17+0200\n" "Last-Translator: Jordi Mallach <jordi@debian.org>\n" "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n" @@ -22,7 +22,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "El paquet %s versió %s té una dependència sense satisfer:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -92,7 +92,7 @@ msgstr "Total de l'espai desperdiciat: " msgid "Total space accounted for: " msgstr "Total de l'espai atribuït a: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "El fitxer %s del paquet està desincronitzat." @@ -151,14 +151,14 @@ msgstr " Taula de versió:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -233,15 +233,15 @@ msgstr "" "Consulteu les pàgines del manual apt-cache(8) i apt.conf(5) per a més " "informació.\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "Doneu un nom per a aquest disc, com per exemple «Debian 2.1r1 Disc 1»" -#: cmdline/apt-cdrom.cc:93 +#: 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:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Repetiu aquest procés per a la resta de CD del vostre joc." @@ -306,7 +306,7 @@ msgstr "" " -c=? Llegeix aquest fitxer de configuració\n" " -o=? Estableix una opció de conf arbitrària, p.e. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "No es pot escriure en %s" @@ -650,7 +650,7 @@ msgstr "No s'ha pogut canviar el nom de %s a %s" msgid "Y" msgstr "S" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "S'ha produït un error de compilació de l'expressió regular - %s" @@ -751,123 +751,123 @@ msgstr "%lu a suprimir i %lu no actualitzats.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu no instal·lats o suprimits completament.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "S'estan corregint les dependències..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " ha fallat." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "No es poden corregir les dependències" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "No es pot minimitzar el joc de versions revisades" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Fet" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Dependències sense satisfer. Proveu-ho emprant -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVÍS: No es poden autenticar els següents paquets!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "S'ha descartat l'avís d'autenticació.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Voleu instal·lar aquests paquets sense verificar-los [s/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "No s'ha pogut autenticar alguns paquets" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 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:785 +#: cmdline/apt-get.cc:784 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:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "S'ha produït un error intern, l'ordenació no ha acabat" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "No és possible blocar el directori de descàrrega" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "No s'ha pogut llegir la llista de les fonts." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 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:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Es necessita obtenir %sB/%sB d'arxius.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Es necessita obtenir %sB d'arxius.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, 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:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "No teniu prou espai lliure en %s." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Sí, fes el que et dic!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -878,28 +878,28 @@ msgstr "" "Per a continuar escriviu la frase «%s»\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Avortat." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Voleu continuar [S/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "No s'ha pogut obtenir %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Alguns fitxers no s'han pogut baixar" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Descàrrega completa i en mode de només descàrrega" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -907,48 +907,48 @@ msgstr "" "No es poden baixar alguns arxius, proveu a executar apt-get update o " "intenteu-ho amb --fix-missing." -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 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:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "No es poden corregir els paquets que falten." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "S'està avortant la instal·lació." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Nota: s'està seleccionant %s en comptes de %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, 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:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Instal·lat]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Necessiteu seleccionar-ne un explícitament per a instal·lar-lo." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -959,71 +959,77 @@ 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:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Tot i que els següents paquets el reemplacen:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "El paquet %s no té candidat d'instal·lació" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, 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:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "No s'ha trobat la versió puntual «%s» per a «%s»" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "No s'ha trobat la versió «%s» per a «%s»" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Versió seleccionada %s (%s) per a %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "No hi ha cap paquet font «%s», es selecciona «%s» en el seu lloc\n" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "L'ordre update no pren arguments" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "No es pot blocar el directori de la llista" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 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:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" "Els paquets següents s'instal·laren automàticament i ja no són necessaris:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"Els paquets següents s'instal·laren automàticament i ja no són necessaris:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Empreu «apt-get autoremove» per a suprimir-los." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1041,43 +1047,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 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:1459 +#: cmdline/apt-get.cc:1493 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:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Error intern, AllUpgrade ha trencat coses" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "No s'ha pogut trobar la tasca %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "No s'ha pogut trobar el paquet %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Nota: s'està seleccionant %s per a l'expressió regular '%s'\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "S'ha marcat %s com instal·lat manualment.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1085,7 +1091,7 @@ msgstr "" "Dependències insatisfetes. Intenteu 'apt-get -f install' sense paquets (o " "especifiqueu una solució)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1097,120 +1103,120 @@ msgstr "" "unstable i alguns paquets requerits encara no han estat creats o bé\n" "encara no els hi han afegit." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Paquets trencats" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "S'instal·laran els següents paquets extres:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Paquets suggerits:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Paquets recomanats:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "S'està calculant l'actualització... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Ha fallat" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Fet" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 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:2079 +#: cmdline/apt-get.cc:2113 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, 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:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "S'està ometent el fitxer ja baixat «%s»\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "No teniu prou espai lliure en %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, 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:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Es necessita baixar %sB d'arxius font.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Obté el font %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "No s'ha pogut baixar alguns arxius." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "L'ordre de desempaquetar «%s» ha fallat.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, 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:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "L'ordre de construir «%s» ha fallat.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Ha fallat el procés fill" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 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:2353 +#: cmdline/apt-get.cc:2390 #, 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:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s no té dependències de construcció.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1219,7 +1225,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:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1228,74 +1234,33 @@ 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:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, 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:2555 +#: cmdline/apt-get.cc:2594 #, 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:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "No es poden processar les dependències de construcció" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Mòduls suportats:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy -#| msgid "" -#| "Usage: apt-get [options] command\n" -#| " apt-get [options] install|remove pkg1 [pkg2 ...]\n" -#| " apt-get [options] source pkg1 [pkg2 ...]\n" -#| "\n" -#| "apt-get is a simple command line interface for downloading and\n" -#| "installing packages. The most frequently used commands are update\n" -#| "and install.\n" -#| "\n" -#| "Commands:\n" -#| " update - Retrieve new lists of packages\n" -#| " upgrade - Perform an upgrade\n" -#| " install - Install new packages (pkg is libc6 not libc6.deb)\n" -#| " remove - Remove packages\n" -#| " autoremove - Remove automatically all unused packages\n" -#| " purge - Remove and purge packages\n" -#| " source - Download source archives\n" -#| " build-dep - Configure build-dependencies for source packages\n" -#| " dist-upgrade - Distribution upgrade, see apt-get(8)\n" -#| " dselect-upgrade - Follow dselect selections\n" -#| " clean - Erase downloaded archive files\n" -#| " autoclean - Erase old downloaded archive files\n" -#| " check - Verify that there are no broken dependencies\n" -#| "\n" -#| "Options:\n" -#| " -h This help text.\n" -#| " -q Loggable output - no progress indicator\n" -#| " -qq No output except for errors\n" -#| " -d Download only - do NOT install or unpack archives\n" -#| " -s No-act. Perform ordering simulation\n" -#| " -y Assume Yes to all queries and do not prompt\n" -#| " -f Attempt to correct a system with broken dependencies in place\n" -#| " -m Attempt to continue if archives are unlocatable\n" -#| " -u Show a list of upgraded packages as well\n" -#| " -b Build the source package after fetching it\n" -#| " -V Show verbose version numbers\n" -#| " -c=? Read this configuration file\n" -#| " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -#| "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -#| "pages for more information and options.\n" -#| " This APT has Super Cow Powers.\n" msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1380,7 +1345,7 @@ msgstr "" "per a obtenir més informació i opcions.\n" " Aquest APT té superpoders bovins\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1621,9 +1586,13 @@ msgstr "S'està sobreescrivint el corresponent paquet sense versió per a %s" msgid "File %s/%s overwrites the one in the package %s" msgstr "El fitxer %s/%s sobreescriu al que està en el paquet %s" +#. 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "No es pot llegir %s" @@ -1655,9 +1624,9 @@ msgstr "" "fitxers" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "S'està llegint la llista de paquets" @@ -1760,12 +1729,12 @@ 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/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "No es pot llegir la base de dades del cdrom %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1773,20 +1742,20 @@ msgstr "" "Si us plau, useu apt-cdrom per a que aquest CD sigui reconegut per APT. No " "pot emprar-se apt-get update per afegir-ne de nous" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "CD erroni" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "No es pot muntar el CD-ROM en %s, potser estigui encara en ús." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "No s'ha trobat el disc" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Fitxer no trobat" @@ -1804,34 +1773,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "URI no vàlid, els URI locals no han de començar per //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "S'està accedint a" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "No es pot determinar el nom de la màquina distant" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "No es pot determinar el nom local" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "El servidor ha rebutjat la nostra connexió i ha dit: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER ha fallat, el servidor ha dit: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS ha fallat, el servidor ha dit: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1839,115 +1808,115 @@ msgstr "" "S'ha especificat un servidor intermediari però no un script d'accés, " "Acquire::ftp::ProxyLogin està buit." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "L'ordre '%s' de l'script d'accés ha fallat, el servidor ha dit: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE ha fallat, el servidor ha dit: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Temps de connexió finalitzat" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "El servidor ha tancat la connexió" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Error de lectura" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Una resposta ha desbordat la memòria temporal." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Protocol corromput" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Error d'escriptura" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "No s'ha pogut crear un sòcol" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "No s'ha pogut connectar amb el sòcol de dades, connexió finalitzada" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "No s'ha pogut connectar amb el sòcol passiu." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "gettaddrinfo no es pot obtenir un sòcol que escolte" # abastar? huh? jm -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "No s'ha pogut abastar un connector" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "No s'ha pogut escoltar sobre el sòcol" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "No s'ha pogut determinar el nom del sòcol" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "No es pot enviar l'ordre PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "La família d'adreces %u és desconeguda (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT ha fallat, el servidor ha dit: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "S'ha esgotat el temps de connexió al sòcol de dades" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "No es pot acceptar la connexió" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Problema escollint el fitxer" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "No és possible reprendre el fitxer, el servidor ha dit '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "S'ha esgotat el temps d'espera per al sòcol de dades" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Ha fallat la transferència de dades, el servidor ha dit '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Consulta" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "No es pot invocar" @@ -2063,94 +2032,94 @@ msgstr "No s'ha pogut obrir un conducte per a %s" msgid "Read error from %s process" msgstr "S'ha produït un error en llegir des del procés %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "S'estan esperant les capçaleres" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "S'ha obtingut una capçalera d'una sola línea de més de %u caràcters" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Línia de capçalera incorrecta" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 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:588 +#: methods/http.cc:593 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:603 +#: methods/http.cc:608 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:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Aquest servidor HTTP té el suport d'abast trencat" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Format de la data desconegut" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Ha fallat la selecció" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Connexió finalitzada" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "S'ha produït un error en escriure al fitxer de sortida" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "S'ha produït un error en escriure al fitxer" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "S'ha produït un error en escriure al fitxer" -#: methods/http.cc:883 +#: methods/http.cc:888 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:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "S'ha produït un error en llegir des del servidor" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "No s'ha pogut truncar el fitxer %s" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Capçalera de dades no vàlida" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Ha fallat la connexió" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Error intern" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "No es pot transferir un fitxer buit a memòria" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "No s'ha pogut crear un mapa de memòria de %lu octets" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2174,7 +2143,6 @@ msgstr "%lih %limin %lis" #. min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:349 #, fuzzy, c-format -#| msgid "%limin %lis" msgid "%limin %lis" msgstr "limin %lis" @@ -2300,13 +2268,13 @@ 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:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "No es pot canviar a %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "No s'ha pogut fer «stat» del cdrom" @@ -2336,51 +2304,50 @@ msgstr "No s'ha pogut blocar %s" msgid "Waited for %s but it wasn't there" msgstr "Esperava %s però no hi era" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, 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:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Sub-procés %s ha rebut una violació de segment." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, 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:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "El sub-procés %s ha sortit inesperadament" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "No s'ha pogut obrir el fitxer %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Ha hagut un problema en tancar el fitxer" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Ha hagut un problema en desenllaçar el fitxer" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Ha hagut un problema en sincronitzar el fitxer" @@ -2473,16 +2440,16 @@ msgstr "Versions candidates" msgid "Dependency generation" msgstr "Dependències que genera" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "S'està llegint la informació de l'estat" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "No s'ha pogut obrir el fitxer d'estat %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "No s'ha pogut escriure el fitxer d'estat temporal %s" @@ -2522,32 +2489,32 @@ msgstr "Línia %lu malformada en la llista de fonts %s (dist absoluta)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Línia %lu malformada en la llista de fonts %s (analitzant dist)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "S'està obrint %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "La línia %u és massa llarga en la llista de fonts %s." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "La línia %u és malformada en la llista de fonts %s (tipus)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "El tipus «%s» no és conegut en la línia %u de la llista de fonts %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "La línia %u és malformada en la llista de fonts %s (id del proveïdor)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2571,7 +2538,7 @@ msgid "" msgstr "" "El paquet %s necessita ser reinstal·lat, però no se li pot trobar un arxiu." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2579,13 +2546,13 @@ msgstr "" "Error, pkgProblemResolver::Resolve ha generat pauses, això pot haver estat " "causat per paquets retinguts." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 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:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2605,12 +2572,12 @@ msgstr "Falta el directori d'arxiu %spartial." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, 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:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "S'està obtenint el fitxer %li de %li" @@ -2630,16 +2597,16 @@ 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:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "El sistema d'empaquetament «%s» no està suportat" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "No es pot determinar un tipus de sistema d'empaquetament adequat." -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "No es pot veure l'estat de %s." @@ -2658,140 +2625,139 @@ 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:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" 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" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "No s'ha entès el pin de tipus %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "No hi ha prioritat especificada per al pin (o és zero)" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "La memòria cau té un sistema de versions incompatible" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "S'ha produït un error durant el processament de %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "S'ha produït un error durant el processament de %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "S'ha produït un error durant el processament de %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "S'ha produït un error durant el processament de %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "S'ha produït un error durant el processament de %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "S'ha produït un error durant el processament de %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "S'ha produït un error durant el processament de %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "S'ha produït un error durant el processament de %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "S'ha produït un error durant el processament de %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Uau, heu excedit el nombre de paquets que aquest APT és capaç de gestionar." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" "Uau, heu excedit el nombre de versions que aquest APT és capaç de gestionar." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" "Uau, heu excedit el nombre de descripcions que aquest APT és capaç de " "gestionar. " -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Uau, heu excedit el nombre de dependències que aquest APT és capaç de " "gestionar." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "S'ha produït un error durant el processament de %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "" "S'ha produït un error durant el processament de %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "No s'ha trobat el paquet %s %s en processar les dependències del fitxer" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "No s'ha pogut llegir la llista de paquets font %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "S'estan recollint els fitxers que proveeixen" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "Error d'E/S en desar la memòria cau de la font" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "no s'ha pogut canviar el nom, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "La suma MD5 no concorda" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "La suma resum no concorda" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "No hi ha cap clau pública disponible per als següents ID de clau:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2801,7 +2767,7 @@ msgstr "" "significar que haureu d'arreglar aquest paquet manualment (segons " "arquitectura)." -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2810,7 +2776,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:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2818,7 +2784,7 @@ msgstr "" "L'índex dels fitxers en el paquet està corromput. Fitxer no existent: camp " "per al paquet %s." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "La mida no concorda" @@ -2842,7 +2808,7 @@ msgstr "No hi ha una entrada Hash al fitxer Release %s" msgid "Vendor block %s contains no fingerprint" msgstr "El camp del proveïdor %s no té una empremta digital" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2851,42 +2817,42 @@ msgstr "" "S'està utilitzant el punt de muntatge de CD-ROM %s\n" "S'està muntant el CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "S'està identificant..." -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "S'ha emmagatzemat l'etiqueta: %s\n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "S'esta desmuntant el CD-ROM...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "S'està utilitzant el punt de muntatge de CD-ROM %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "S'està desmuntant el CD-ROM\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "S'està esperant al disc...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "S'està muntant el CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "S'està analitzant el disc per a fitxers d'índex...\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2895,22 +2861,22 @@ msgstr "" "S'han trobat %zu índexos de paquets, %zu índexos de fonts, %zu indexos de " "traduccions i %zu signatures\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "S'ha trobat l'etiqueta «%s»\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Aquest no és un nom vàlid, torneu-ho a provar.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2919,34 +2885,34 @@ msgstr "" "El disc es diu:\n" "«%s»\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "S'estan copiant les llistes de paquets..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "S'està escrivint una nova llista de fonts\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 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:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "S'han escrit %i registres.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, 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:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -3037,7 +3003,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "No es pot blocar el directori de la llista" diff --git a/po/cs.po b/po/cs.po index e87957b7d..f83a2dc6a 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -21,7 +21,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Balík %s verze %s má nesplněné závislosti:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -91,7 +91,7 @@ msgstr "Celkem jalového místa: " msgid "Total space accounted for: " msgstr "Celkem přiřazeného místa: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Soubor balíku %s je špatně synchronizovaný." @@ -149,14 +149,14 @@ msgstr " Tabulka verzí:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -230,15 +230,15 @@ msgstr "" " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" "Více informací viz manuálové stránky apt-cache(8) a apt.conf(5).\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "Zadejte prosím název tohoto média, např. „Debian 2.1r1 Disk 1“" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Vložte prosím médium do mechaniky a stiskněte enter" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Tento proces opakujte pro všechna zbývající média." @@ -302,7 +302,7 @@ msgstr "" " -c=? Načte tento konfigurační soubor\n" " -o=? Nastaví libovolnou volbu, např. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Nemohu zapsat do %s" @@ -645,7 +645,7 @@ msgstr "Selhalo přejmenování %s na %s" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Chyba při kompilaci regulárního výrazu - %s" @@ -746,119 +746,119 @@ msgstr "%lu k odstranění a %lu neaktualizováno.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu instalováno nebo odstraněno pouze částečně.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Opravuji závislosti..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " selhalo." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Nemohu opravit závislosti" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Nemohu minimalizovat sadu pro aktualizaci" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Hotovo" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Nesplněné závislosti. Zkuste použít -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 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:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Autentizační varování potlačeno.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Instalovat tyto balíky bez ověření [y/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Některé balíky nemohly být autentizovány" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 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:785 +#: cmdline/apt-get.cc:784 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:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Vnitřní chyba, třídění nedoběhlo do konce" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Nemohu zamknout adresář pro stahování" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Nelze přečíst seznam zdrojů." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 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:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Potřebuji stáhnout %sB/%sB archivů.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Potřebuji stáhnout %sB archivů.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nemohu určit volné místo v %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, 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:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Ano, udělej to tak, jak říkám!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -869,28 +869,28 @@ msgstr "" "Pro pokračování opište frázi „%s“\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Přerušeno." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Chcete pokračovat [Y/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Selhalo stažení %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Některé soubory nemohly být staženy" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Stahování dokončeno v režimu pouze stáhnout" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -898,47 +898,47 @@ msgstr "" "Nemohu stáhnout některé archivy. Možná spusťte apt-get update nebo zkuste --" "fix-missing?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 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:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Nemohu opravit chybějící balíky." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Přerušuji instalaci." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Pozn: Vybírám %s místo %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, 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:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr "[Instalovaný]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Měli byste explicitně vybrat jeden k instalaci." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -949,69 +949,75 @@ 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:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Nicméně následující balíky jej nahrazují:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Balík %s nemá kandidáta pro instalaci" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s je již nejnovější verze.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Vydání „%s“ pro „%s“ nebylo nalezeno" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Verze „%s“ pro „%s“ nebyla nalezena" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Vybraná verze %s (%s) pro %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Příkaz update neakceptuje žádné argumenty" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Nemohu uzamknout list adresář" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 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:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" "Následující balíky byly nainstalovány automaticky a již nejsou potřeba:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"Následující balíky byly nainstalovány automaticky a již nejsou potřeba:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Pro jejich odstranění použijte „apt-get autoremove“." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1029,43 +1035,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 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:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Vnitřní chyba, AutoRemover pokazil věci" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Vnitřní chyba, AllUpgrade pokazil věci" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Nemohu najít úlohu %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Nemohu najít balík %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, 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:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s nastaven jako instalovaný ručně.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1073,7 +1079,7 @@ msgstr "" "Nesplněné závislosti. Zkuste spustit „apt-get -f install“ bez balíků (nebo " "navrhněte řešení)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1084,124 +1090,124 @@ 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:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Poškozené balíky" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Následující extra balíky budou instalovány:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Navrhované balíky:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Doporučované balíky:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Propočítávám aktualizaci... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Selhalo" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Hotovo" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Vnitřní chyba, řešitel problémů pokazil věci" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "Nemohu najít zdrojový balík pro %s" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Přeskakuji dříve stažený soubor „%s“\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, 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:2192 +#: cmdline/apt-get.cc:2229 #, 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:2195 +#: cmdline/apt-get.cc:2232 #, 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:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Stáhnout zdroj %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Stažení některých archivů selhalo." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Příkaz pro rozbalení „%s“ selhal.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, 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:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Příkaz pro sestavení „%s“ selhal.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Synovský proces selhal" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 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:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nemohu získat závislosti pro sestavení %s" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s nemá žádné závislosti pro sestavení.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, 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:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1210,31 +1216,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:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, 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:2555 +#: cmdline/apt-get.cc:2594 #, 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:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Chyba při zpracování závislostí pro sestavení" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Podporované moduly:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1318,7 +1324,7 @@ msgstr "" "a apt.conf(5).\n" " Tato APT má schopnosti svaté krávy.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1554,9 +1560,13 @@ msgstr "Přepsat vyhovující balík bez udání verze pro %s" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Nemohu číst %s" @@ -1586,9 +1596,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "Adresáře info a temp musí být na stejném souborovém systému" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Čtu seznamy balíků" @@ -1691,12 +1701,12 @@ msgstr "Nelze najít platný kontrolní soubor" msgid "Unparsable control file" msgstr "Nezpracovatelný kontrolní soubor" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Nemohu číst databázi na cdrom %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1704,20 +1714,20 @@ msgstr "" "Pro přidání CD do APTu použijte apt-cdrom. apt-get update nelze využít pro " "přidávání nových CD." -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Chybné CD" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Nemohu odpojit CD-ROM v %s - možná se stále používá." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Disk nebyl nalezen." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Soubor nebyl nalezen" @@ -1735,34 +1745,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "Neplatné URI, lokální URI nesmí začínat na //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Přihlašuji se" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Nemohu určit jméno druhé strany" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Nemohu určit lokální jméno" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Server zamítl naše spojení a řekl: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER selhal, server řekl: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS selhal, server řekl: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1770,114 +1780,114 @@ msgstr "" "Byl zadán proxy server, ale ne přihlašovací skript. Acquire::ftp::ProxyLogin " "je prázdný." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Příkaz „%s“ přihlašovacího skriptu selhal, server řekl: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE selhal, server řekl: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Čas spojení vypršel" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Server uzavřel spojení" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Chyba čtení" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Odpověď přeplnila buffer." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Porušení protokolu" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Chyba zápisu" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Nemohu vytvořit socket" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Nemohu připojit datový socket, čas spojení vypršel" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Nemohu připojit pasivní socket." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo nezískal naslouchající socket" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Nemohu navázat socket" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Nemohu naslouchat na socketu" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Nemohu určit jméno socketu" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Nemohu odeslat příkaz PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Neznámá rodina adres %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT selhal, server řekl: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Spojení datového socketu vypršelo" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Nemohu přijmout spojení" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Problém s hashováním souboru" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Nemohu stáhnout soubor, server řekl „%s“" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Datový socket vypršel" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Přenos dat selhal, server řekl „%s“" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Dotaz" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Nemohu vyvolat " @@ -1988,93 +1998,93 @@ msgstr "Nemohu otevřít rouru pro %s" msgid "Read error from %s process" msgstr "Chyba čtení z procesu %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Čekám na hlavičky" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Získal jsem jednu řádku hlavičky přes %u znaků" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Chybná hlavička" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "Http server poslal neplatnou hlavičku odpovědi" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Http server poslal neplatnou hlavičku Content-Length" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Http server poslal neplatnou hlavičku Content-Range" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Tento HTTP server má porouchanou podporu rozsahů" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Neznámý formát data" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Výběr selhal" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Čas spojení vypršel" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Chyba zápisu do výstupního souboru" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Chyba zápisu do souboru" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Chyba zápisu do souboru" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "Chyba čtení ze serveru. Druhá strana zavřela spojení" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Chyba čtení ze serveru" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Nelze zmenšit soubor" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Špatné datové záhlaví" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Spojení selhalo" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Vnitřní chyba" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Nemohu provést mmap prázdného souboru" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Nešlo mmapovat %lu bajtů" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2222,13 +2232,13 @@ msgstr "Neplatná operace %s" msgid "Unable to stat the mount point %s" msgstr "Nelze vyhodnotit přípojný bod %s" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Nemohu přejít do %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Nezdařilo se vyhodnotit cdrom" @@ -2257,51 +2267,50 @@ msgstr "Nemohu získat zámek %s" msgid "Waited for %s but it wasn't there" msgstr "Čekal jsem na %s, ale nebyl tam" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Podproces %s obdržel chybu segmentace." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Podproces %s obdržel chybu segmentace." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, 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:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Podproces %s neočekávaně skončil" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Nemohu otevřít soubor %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Problém při zavírání souboru" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Problém při odstraňování souboru" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Problém při synchronizování souboru" @@ -2394,16 +2403,16 @@ msgstr "Kandidátské verze" msgid "Dependency generation" msgstr "Generování závislostí" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Čtu stavové informace" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Nelze otevřít stavový soubor %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Nelze zapsat dočasný stavový soubor %s" @@ -2443,32 +2452,32 @@ msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (Absolutní dist)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Zkomolený řádek %lu v seznamu zdrojů %s (zpracování dist)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Otevírám %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Řádek %u v seznamu zdrojů %s je příliš dlouhý." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Zkomolený řádek %u v seznamu zdrojů %s (typ)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typ „%s“ na řádce %u v seznamu zdrojů %s není známý" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Zkomolený řádek %u v seznamu zdrojů %s (id výrobce)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2490,7 +2499,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:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2498,11 +2507,11 @@ msgstr "" "Chyba, pkgProblemResolver::Resolve vytváří poruchy, to může být způsobeno " "podrženými balíky." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 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:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2522,12 +2531,12 @@ msgstr "Archivní adresář %spartial chybí." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Stahuji soubor %li z %li (%s zbývá)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Stahuji soubor %li z %li" @@ -2547,16 +2556,16 @@ 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:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Balíčkovací systém „%s“ není podporován" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Nebylo možno určit vhodný typ balíčkovacího systému" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Nebylo možno vyhodnotit %s." @@ -2574,132 +2583,131 @@ 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:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" 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:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Nerozumím vypíchnutí typu %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Pro vypíchnutí nebyla zadána žádná (nebo nulová) priorita" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Cache má nekompatibilní systém správy verzí" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Při zpracování %s se objevila chyba (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Při zpracování %s se objevila chyba (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Při zpracování %s se objevila chyba (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Při zpracování %s se objevila chyba (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Při zpracování %s se objevila chyba (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Při zpracování %s se objevila chyba (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Při zpracování %s se objevila chyba (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Při zpracování %s se objevila chyba (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Při zpracování %s se objevila chyba (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "Wow, překročili jste počet jmen balíků, které tato APT umí zpracovat." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Wow, překročili jste počet verzí, které tato APT umí zpracovat." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "Wow, překročili jste počet popisů, které tato APT umí zpracovat." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Wow, překročili jste počet závislostí, které tato APT umí zpracovat." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Chyba při zpracování %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Při zpracování %s se objevila chyba (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Při zpracování závislostí nebyl nalezen balík %s %s" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nešlo vyhodnotit seznam zdrojových balíků %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Collecting File poskytuje" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "Chyba IO při ukládání zdrojové cache" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "přejmenování selhalo, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "Neshoda MD5 součtů" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Neshoda kontrolních součtů" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "K následujícím ID klíčů není dostupný veřejný klíč:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2708,7 +2716,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:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2717,26 +2725,24 @@ 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:1331 +#: apt-pkg/acquire-item.cc:1316 #, 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:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Velikosti nesouhlasí" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Nelze zpracovat soubor %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Pozn: Vybírám %s místo %s\n" @@ -2750,7 +2756,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Blok výrobce %s neobsahuje otisk klíče" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2759,42 +2765,42 @@ msgstr "" "Používám přípojný bod %s\n" "Připojuji CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Rozpoznávám... " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Uložený název: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "Odpojuji CD-ROM...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Používám přípojný bod %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Odpojuji CD-ROM\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Čekám na disk...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Připojuji CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Hledám na disku indexové soubory...\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2803,22 +2809,22 @@ msgstr "" "Nalezl jsem indexy balíků (%zu), indexy zdrojů (%zu), indexy popisů (%zu) a " "podpisy (%zu)\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Nalezený název: „%s“\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Nejedná se o platné jméno, zkuste to znovu.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2827,34 +2833,34 @@ msgstr "" "Tento disk se nazývá: \n" "„%s“\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Kopíruji seznamy balíků..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Zapisuji nový seznam balíků\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Seznamy zdrojů na tomto disku jsou:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Zapsal jsem %i záznamů.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, 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:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -2942,7 +2948,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Nemohu uzamknout list adresář" diff --git a/po/cy.po b/po/cy.po index 350e9c976..357da89f6 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: APT\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -20,7 +20,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Mae gan y pecyn %s fersiwn %s ddibyniaeth heb ei gwrdd:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -105,7 +105,7 @@ msgstr "Cyfanswm gofod Slac: " msgid "Total space accounted for: " msgstr "Cyfanswm Gofod Cyfrifwyd: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Nid yw'r ffeil pecyn %s yn gydamseredig." @@ -167,14 +167,14 @@ msgstr " Tabl Fersiynnau:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -249,11 +249,11 @@ msgstr "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 #, fuzzy msgid "Please insert a Disc in the drive and press enter" msgstr "" @@ -261,7 +261,7 @@ msgstr "" " '%s'\n" "yn y gyrriant '%s' a gwasgwch Enter\n" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "" @@ -329,7 +329,7 @@ msgstr "" " -c=? Darllen y ffeil cyfluniad hwn\n" " -o=? Gosod opsiwn cyfluniad mympwyol e.e. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Ni ellir ysgrifennu i %s" @@ -675,7 +675,7 @@ msgstr "Methwyd ailenwi %s at %s" msgid "Y" msgstr "I" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Gwall crynhoi patrwm - %s" @@ -781,122 +781,122 @@ msgstr "%lu i'w tynnu a %lu heb eu uwchraddio.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu heb eu sefydlu na tynnu'n gyflawn.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Yn cywiro dibyniaethau..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " wedi methu." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Ni ellir cywiro dibyniaethau" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Ni ellir bychanu y set uwchraddio" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Wedi Gorffen" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Dibyniaethau heb eu bodloni. Ceisiwch ddefnyddio -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 #, fuzzy msgid "WARNING: The following packages cannot be authenticated!" msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 #, fuzzy msgid "Some packages could not be authenticated" msgstr "RHYBUDD: Ni ellir dilysu'r pecynnau canlynol yn ddiogel!" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "Mae problemau a defnyddwyd -y heb --force-yes" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 #, 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:796 +#: cmdline/apt-get.cc:795 #, fuzzy msgid "Internal error, Ordering didn't finish" msgstr "Gwall Mewnol wrth ychwanegu dargyfeiriad" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Ni ellir cloi'r cyfeiriadur lawrlwytho" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Methwyd darllen y rhestr ffynhonellau." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Mae angeyn cyrchu %sB/%sB o archifau.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Mae angen cyrchu %sB o archifau.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, 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:874 +#: cmdline/apt-get.cc:876 #, 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:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Ie, gwna fel rydw i'n dweud!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, fuzzy, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -907,29 +907,29 @@ msgstr "" "Er mwyn mynd ymlaen, teipiwch y frawddeg '%s'\n" " ?]" -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Erthylu." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 #, fuzzy msgid "Do you want to continue [Y/n]? " msgstr "Ydych chi eisiau mynd ymlaen? [Y/n] " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Methwyd cyrchu %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Methodd rhai ffeiliau lawrlwytho" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Lawrlwytho yn gyflawn ac yn y modd lawrlwytho'n unig" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -937,49 +937,49 @@ msgstr "" "Ni ellir cyrchu rhai archifau, efallai dylwch rhedeg apt-get update, neu " "geidio defnyddio --fix-missing?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 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:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Ni ellir cywiro pecynnau ar goll." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 #, fuzzy msgid "Aborting install." msgstr "Yn Erthylu'r Sefydliad." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Sylwer, yn dewis %s yn hytrach na %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, 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:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Sefydliwyd]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Dylech ddewis un yn benodol i'w sefydlu." # FIXME: punctuation -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, fuzzy, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -991,69 +991,74 @@ msgstr "" "gael ei uwchlwytho, cafodd ei ddarfod neu nid yw ar gael drwy gynnwys y\n" "ffeil sources.list.\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Fodd bynnag, mae'r pecynnau canlynol yn cymryd ei le:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Does dim ymgeisydd sefydlu gan y pecyn %s" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Ni chanfuwyd y rhyddhad '%s' o '%s'" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Ni chanfuwyd y fersiwn '%s' o '%s' " -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Dewiswyd fersiwn %s (%s) ar gyfer %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Nid yw'r gorchymyn diweddaru yn derbyn ymresymiadau" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Ni ellir cloi'r cyfeiriadur rhestr" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1069,46 +1074,46 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "Gall y wybodaeth canlynol gynorthwyo'n datrys y sefyllfa:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 #, fuzzy msgid "Internal error, AllUpgrade broke stuff" msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, fuzzy, c-format msgid "Couldn't find task %s" msgstr "Methwyd canfod pecyn %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Methwyd canfod pecyn %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, 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:1702 +#: cmdline/apt-get.cc:1736 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1117,7 +1122,7 @@ msgstr "" "pecyn (neu penodwch ddatrys)" # FIXME: needs commas -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1129,118 +1134,118 @@ msgstr "" "ansefydlog, fod rhai pecynnau angenrheidiol heb gael eu creu eto neu\n" "heb gael eu symud allan o Incoming." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Pecynnau wedi torri" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Pecynnau a awgrymmir:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Pecynnau a argymhellir:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 #, fuzzy msgid "Calculating upgrade... " msgstr "Yn Cyfrifo'r Uwchraddiad... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Methwyd" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Wedi Gorffen" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 #, fuzzy msgid "Internal error, problem resolver broke stuff" msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "Ni ellir canfod pecyn ffynhonell ar gyfer %s" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, 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:2186 +#: cmdline/apt-get.cc:2223 #, 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:2192 +#: cmdline/apt-get.cc:2229 #, 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:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Rhaid cyrchu %sB o archifau ffynhonell.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, fuzzy, c-format msgid "Fetch source %s\n" msgstr "Cyrchu Ffynhonell %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Methwyd cyrchu rhai archifau." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Methodd y gorchymyn dadbacio '%s'.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Methodd y gorchymyn adeiladu '%s'.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Methodd proses plentyn" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 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:2353 +#: cmdline/apt-get.cc:2390 #, 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:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "Nid oes dibyniaethau adeiladu gan %s.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1249,7 +1254,7 @@ msgstr "" "Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn %" "s" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1258,34 +1263,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:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Methwyd bodloni dibyniaeth %s am %s: %s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Methwyd bodloni'r dibyniaethau adeiladu ar gyfer %s." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Methwyd prosesu dibyniaethau adeiladu" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 #, fuzzy msgid "Supported modules:" msgstr "Modylau a Gynhelir:" # FIXME: split -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1370,7 +1375,7 @@ msgstr "" "\n" " Mae gan yr APT hwn bŵerau buwch hudol.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1615,9 +1620,13 @@ msgstr "Cyfatebiad pecyn trosysgrifo gyda dim fersiwn am %s" msgid "File %s/%s overwrites the one in the package %s" msgstr "Mae'r ffeil %s/%s yn trosysgrifo'r un yn y pecyn %s" +#. 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Ni ellir darllen %s" @@ -1647,9 +1656,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "Rhaid i'r cyfeiriaduron 'info' a 'temp' for ar yr un system ffeiliau" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 #, fuzzy msgid "Reading package lists" msgstr "Yn Darllen Rhestrau Pecynnau" @@ -1762,12 +1771,12 @@ msgstr "Methwyd lleoli ffeil rheoli dilys" msgid "Unparsable control file" msgstr "Ffeil rheoli ni ellir ei ramadegu" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Methwyd darllen y cronfa ddata CD-ROM %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 #, fuzzy msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " @@ -1776,23 +1785,23 @@ msgstr "" "Defnyddiwch apt-cdrom fel bo APT yn adnabod y CD hwn. Ni ellir defnyddio apt-" "get update i ychwanegu CDau newydd." -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 #, fuzzy msgid "Wrong CD-ROM" msgstr "CD Anghywir" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "" "Ni ellir datglymu'r CD-ROM yn %s. Efallai ei fod e'n cael ei ddefnyddio." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 #, fuzzy msgid "Disk not found." msgstr "Ffeil heb ei ganfod" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Ffeil heb ei ganfod" @@ -1810,34 +1819,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "URI annilys: rhaid i URIs lleol beidio a cychwyn efo \"//\"" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Yn mewngofnodi" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Ni ellir darganfod enw'r cymar" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Ni ellir darganfod yr enw lleol" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, fuzzy, c-format msgid "The server refused the connection and said: %s" msgstr "Gwrthodwyd y gweinydd ein cysyllriad, a dwedodd: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "Methodd gorchymyn USER; meddai'r gweinydd: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "Methodd gorchymyn PASS; meddai'r gweinydd: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1846,117 +1855,117 @@ msgstr "" "ProxyLogin yn wag.)" # FIXME -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Methodd y gorchymyn sgript mewngofnodi '%s'; meddai'r gweinydd: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "Methodd gorchymyn TYPE; meddai'r gweinydd: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Goramser cysylltu" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Caeodd y gweinydd y cysylltiad" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Gwall darllen" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Gorlifodd ateb y byffer." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Llygr protocol" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Gwall ysgrifennu" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Methwyd creu soced" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Methwyd cysylltu soced data, goramserodd y cyslltiad" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 #, fuzzy msgid "Could not connect passive socket." msgstr "Methwyd cysylltu soced goddefol" # FIXME -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "Methodd getaddrinfo gael soced gwrando" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Methwyd rhwymo soced" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Methwyd gwrando ar y soced" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Methwyd canfod enw'r soced" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Methwyd danfod gorchymyn PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Teulu cyfeiriad anhysbys %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "Methodd gorchymyn EPRT; meddai'r gweinydd: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Goramserodd cysylltiad y soced data" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Methwyd derbyn cysylltiad" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Problem wrth stwnshio ffeil" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Methwyd cyrchu ffeil; meddai'r gweinydd '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Goramserodd soced data" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Methodd trosgludiad data; meddai'r gweinydd '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Ymholiad" # FIXME -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Methwyd gweithredu " @@ -2065,100 +2074,100 @@ msgstr "Methwyd agor pibell ar gyfer %s" msgid "Read error from %s process" msgstr "Gwall darllen o broses %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Yn aros am benawdau" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Derbynnwyd llinell pennaws sengl dros %u nod" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Llinell pennawd gwael" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 #, fuzzy msgid "The HTTP server sent an invalid reply header" msgstr "Danfonodd y gweinydd HTTP bennawd ateb annilys" -#: methods/http.cc:588 +#: methods/http.cc:593 #, fuzzy msgid "The HTTP server sent an invalid Content-Length header" msgstr "Danfonodd y gweinydd HTTP bennawd Content-Length annilys" -#: methods/http.cc:603 +#: methods/http.cc:608 #, fuzzy msgid "The HTTP server sent an invalid Content-Range header" msgstr "Danfonodd y gweinydd HTTP bennawd Content-Range annilys" -#: methods/http.cc:605 +#: methods/http.cc:610 #, fuzzy msgid "This HTTP server has broken range support" msgstr "Mae cynaliaeth amrediad y gweinydd hwn wedi torri" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Fformat dyddiad anhysbys" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Methwyd dewis" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Goramserodd y cysylltiad" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Gwall wrth ysgrifennu i ffeil allbwn" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Gwall wrth ysgrifennu at ffeil" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Gwall wrth ysgrifennu at y ffeil" -#: methods/http.cc:883 +#: methods/http.cc:888 #, 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:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Gwall wrth ddarllen o'r gweinydd" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 #, fuzzy msgid "Failed to truncate file" msgstr "Methwyd ysgrifennu ffeil %s" -#: methods/http.cc:1141 +#: methods/http.cc:1146 #, fuzzy msgid "Bad header data" msgstr "Data pennawd gwael" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Methodd y cysylltiad" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Gwall mewnol" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Ni ellir defnyddio mmap() ar ffeil gwag" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Methwyd gwneud mmap() efo %lu beit" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2309,13 +2318,13 @@ 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:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Ni ellir newid i %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Methwyd gwneud stat() o'r CD-ROM" @@ -2344,53 +2353,52 @@ msgstr "Methwyd cael y clo %s" msgid "Waited for %s but it wasn't there" msgstr "Arhoswyd am %s ond nid oedd e yna" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Derbyniodd is-broses %s wall segmentu." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Derbyniodd is-broses %s wall segmentu." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, 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:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Gorffenodd is-broses %s yn annisgwyl" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Methwyd agor ffeil %s" # FIXME -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Gwall wrth gau'r ffeil" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Gwall wrth dadgysylltu'r ffeil" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Gwall wrth gyfamseru'r ffeil" @@ -2487,17 +2495,17 @@ msgstr "Fersiynau Posib" msgid "Dependency generation" msgstr "Cynhyrchaid Dibyniaeth" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 #, fuzzy msgid "Reading state information" msgstr "Yn cyfuno manylion Ar Gael" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "Methwyd agor %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "Methwyd ysgrifennu ffeil %s" @@ -2539,33 +2547,33 @@ msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (gramadegu dosranniad)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Yn agor %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Llinell camffurfiol %u yn y rhestr ffynhonell %s (math)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, fuzzy, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Mae'r math '%s' yn anhysbys ar linell %u yn y rhestr ffynhonell %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, fuzzy, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad)" # FIXME: %s may have an arbirrary length -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2589,7 +2597,7 @@ msgstr "" "Mae angen ailsefydlu'r pecyn %s, ond dydw i ddim yn gallu canfod archif ar " "ei gyfer." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2597,12 +2605,12 @@ msgstr "" "Gwall: Cynhyrchodd pkgProblemResolver::Resolve doriadau. Fe all hyn fod wedi " "ei achosi gan pecynnau wedi eu dal." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 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:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2622,12 +2630,12 @@ msgstr "Mae'r cyfeiriadur archif %spartial ar goll." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, fuzzy, c-format msgid "Retrieving file %li of %li" msgstr "Yn Darllen Rhestr Ffeiliau" @@ -2650,17 +2658,17 @@ msgstr "" " '%s'\n" "yn y gyrriant '%s' a gwasgwch Enter\n" -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Ni chynhelir y system pecynnu '%s'" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 #, fuzzy msgid "Unable to determine a suitable packaging system type" msgstr "Ni ellir canfod math system addas" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Ni ellir gwneud stat() o %s." @@ -2679,138 +2687,137 @@ 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." # FIXME: literal -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" 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:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Methwyd daeall y math pin %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Dim blaenoriath (neu sero) wedi ei benodi ar gyfer pin" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Mae can y storfa system fersiwn anghyfaddas" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, fuzzy, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Digwyddod gwall wrth brosesu %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, fuzzy, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Digwyddod gwall wrth brosesu %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Digwyddod gwall wrth brosesu %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, fuzzy, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Digwyddod gwall wrth brosesu %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Digwyddod gwall wrth brosesu %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, fuzzy, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Digwyddod gwall wrth brosesu %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, fuzzy, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Digwyddod gwall wrth brosesu %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, fuzzy, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Digwyddod gwall wrth brosesu %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Digwyddod gwall wrth brosesu %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Jiw, rhagoroch chi'r nifer o enwau pecyn mae'r APT hwn yn gallu ei drin." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Jiw, rhagoroch chi'r nifer o fersiynau mae'r APT hwn yn gallu ei drin." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 #, fuzzy msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "Jiw, rhagoroch chi'r nifer o fersiynau mae'r APT hwn yn gallu ei drin." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Jiw, rhagoroch chi'r nifer o ddibyniaethau mae'r APT hwn yn gallu ei drin." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, fuzzy, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Digwyddod gwall wrth brosesu %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, fuzzy, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Digwyddod gwall wrth brosesu %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Ni chanfuwyd pecyn %s %s wrth brosesu dibyniaethau ffeil" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Methwyd stat() o'r rhestr pecyn ffynhonell %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Yn Casglu Darpariaethau Ffeil" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "Gwall M/A wrth gadw'r storfa ffynhonell" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "methwyd ailenwi, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "Camgyfatebiaeth swm MD5" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 #, fuzzy msgid "Hash Sum mismatch" msgstr "Camgyfatebiaeth swm MD5" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "" # FIXME: case -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2819,7 +2826,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:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2828,27 +2835,25 @@ 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:1331 +#: apt-pkg/acquire-item.cc:1316 #, 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:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Camgyfatebiaeth maint" # FIXME: number? #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Ni ellir gramadegu ffeil becynnau %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Sylwer, yn dewis %s yn hytrach na %s\n" @@ -2862,109 +2867,109 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Nid yw'r bloc darparwr %s yn cynnwys ôl bys" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" "Mounting CD-ROM\n" msgstr "" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "" -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 #, fuzzy msgid "Unmounting CD-ROM...\n" msgstr "CD Anghywir" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 #, fuzzy msgid "Waiting for disc...\n" msgstr "Yn aros am benawdau" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" "zu signatures\n" msgstr "" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" "'%s'\n" msgstr "" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 #, fuzzy msgid "Copying package lists..." msgstr "Yn Darllen Rhestrau Pecynnau" -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 #, fuzzy msgid "Writing new source list\n" msgstr "Llinell %u yn rhy hir yn y rhestr ffynhonell %s." -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -3051,7 +3056,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Ni ellir cloi'r cyfeiriadur rhestr" diff --git a/po/da.po b/po/da.po index 7532c7f81..c36efaa13 100644 --- a/po/da.po +++ b/po/da.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-da\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+0200\n" "PO-Revision-Date: 2007-09-06 21:40+0200\n" "Last-Translator: Claus Hindsgaul <claus.hindsgaul@gmail.com>\n" "Language-Team: Danish\n" @@ -25,7 +25,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "<Pakken %s version %s har en uopfyldt afhngighed:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -95,7 +95,7 @@ msgstr "Total 'Slack'-plads: " msgid "Total space accounted for: " msgstr "Total plads, der kan gres rede for: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Pakkefilen %s er ude af trit." @@ -155,14 +155,14 @@ msgstr " Versionstabel:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 #, fuzzy, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s for %s oversat %s %s\n" -#: cmdline/apt-cache.cc:1726 +#: cmdline/apt-cache.cc:1725 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -237,15 +237,15 @@ msgstr "" " -o=? Angiv et opstningstilvalg. 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:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "Angiv et navn for denne disk, som f.eks. 'Debian 2.1r1 Disk 1'" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Indst en disk i drevet og tryk retur" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Gentag processen for resten af cd'erne i dit st." @@ -310,7 +310,7 @@ msgstr "" " -c=? Ls denne opstningsfil\n" " -o=? Angiv et opstningstilvalg. F.eks. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Kunne ikke skrive til %s" @@ -654,7 +654,7 @@ msgstr "Kunne ikke omd msgid "Y" msgstr "J" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Fejl ved tolkning af regulrt udtryk - %s" @@ -755,118 +755,118 @@ msgstr "%lu afinstalleres og %lu opgraderes ikke.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu ikke fuldstndigt installerede eller afinstallerede.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Retter afhngigheder..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " mislykkedes." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Kunne ikke rette afhngigheder" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Kunne ikke minimere opgraderingssttet" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Frdig" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "Du kan muligvis rette dette ved at kre 'apt-get -f install'." -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Uopfyldte afhngigheder. Prv med -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ADVARSEL: Flgende pakkers autenticitet kunne ikke verificeres!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Autentifikationsadvarsel tilsidesat.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Installr disse pakker uden verifikation (y/N)? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Nogle pakker kunne ikke autentificeres" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Intern fejl. InstallPackages blev kaldt med delagte pakker!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "Pakker skal afinstalleres, men Remove er deaktiveret." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Intern fejl. Sortering blev ikke fuldfrt" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Kunne ikke lse nedhentningsmappen" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Listen med kilder kunne ikke lses." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "Mystisk.. Strrelserne passede ikke, skriv til apt@packages.debian.org" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "%sB/%sB skal hentes fra arkiverne.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "%sB skal hentes fra arkiverne.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "Efter udpakning vil %sB yderligere diskplads vre brugt.\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Efter udpakning vil %sB diskplads blive frigjort.\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kunne ikke bestemme ledig plads i %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, 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:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Ja, gr som jeg siger!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -877,28 +877,28 @@ msgstr "" "For at fortstte, skal du skrive '%s'\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Afbryder." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Vil du fortstte [J/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Kunne ikke hente %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Nedhentningen af filer mislykkedes" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Nedhentning afsluttet i 'hent-kun'-tilstand" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -906,49 +906,49 @@ msgstr "" "Kunne ikke hente nogle af arkiverne. Prv evt. at kre 'apt-get update' " "eller prv med --fix-missing." -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing og medieskift understttes endnu ikke" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Kunne ikke rette manglende pakker." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Afbryder installationen." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Bemrk, at %s vlges fremfor %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, 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:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Pakken %s er ikke installeret, s den afinstalleres ikke\n" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Installeret]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Du br eksplicit vlge en at installere." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -959,70 +959,75 @@ msgstr "" "anden pakke. Det kan betyde at denne pakke blevet overfldiggjort eller \n" "kun kan hentes fra andre kilder\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Dog kan flgende pakker erstatte den:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Pakken %s har ingen installationskandidat" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s er i forvejen den nyeste version.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Udgaven '%s' for '%s' blev ikke fundet" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Versionen '%s' for '%s' blev ikke fundet" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Valgte version %s (%s) af %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "'update'-kommandoen benytter ingen parametre" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Kunne ikke lse listemappen" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 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:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Flgende pakker blev installeret automatisk, og behves ikke lngere:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "Flgende pakker blev installeret automatisk, og behves ikke lngere:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Brug 'apt-get autoremove' til at fjerne dem." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1040,43 +1045,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "Flgende oplysninger kan hjlpe dig med at klare situationen:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Intern fejl. AutoRemover delagde noget" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Intern fejl, AllUpgrade delagde noget" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Kunne ikke finde opgaven %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Kunne ikke finde pakken %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Bemrk, vlger %s som regulrt udtryk '%s'\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "%s sat til manuelt installeret.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "Du kan muligvis rette det ved at kre 'apt-get -f install':" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1084,7 +1089,7 @@ msgstr "" "Uopfyldte afhngigheder. Prv 'apt-get -f install' uden pakker (eller angiv " "en lsning)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1095,115 +1100,115 @@ msgstr "" "en umulig situation eller bruger den ustabile distribution, hvor enkelte\n" "pakker endnu ikke er lavet eller gjort tilgngelige." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "delagte pakker" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Flgende yderligere pakker vil blive installeret:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Foreslede pakker:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Anbefalede pakker:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Beregner opgraderingen... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Mislykkedes" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Frdig" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Intern fejl. Problemlseren delagde noget" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "Du skal angive mindst n pakke at hente kildeteksten til" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "Kunne ikke finde kildetekstpakken for %s" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Overspringer allerede hentet fil '%s'\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, 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:2192 +#: cmdline/apt-get.cc:2229 #, 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:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "%sB skal hentes fra kildetekst-arkiverne.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Henter kildetekst %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Nogle arkiver kunne ikke hentes." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Udpakningskommandoen '%s' fejlede.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, 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:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Opbygningskommandoen '%s' fejlede.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Barneprocessen fejlede" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "Skal angive mindst n pakke at tjekke opbygningsafhngigheder for" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Kunne ikke hente oplysninger om opbygningsafhngigheder for %s" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s har ingen opbygningsafhngigheder.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1211,7 +1216,7 @@ msgid "" msgstr "" "%s-afhngigheden for %s kan ikke opfyldes, da pakken %s ikke blev fundet" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1220,32 +1225,32 @@ msgstr "" "%s-afhngigheden for %s kan ikke opfyldes, da ingen af de tilgngelige " "udgaver af pakken %s kan tilfredsstille versions-kravene" -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2551 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Kunne ikke opfylde %s-afhngigheden for %s: Den installerede pakke %s er for " "ny" -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Kunne ikke opfylde %s-afhngigheden for %s: %s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Opbygningsafhngigheden for %s kunne ikke opfyldes." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Kunne ikke behandler opbygningsafhngighederne" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Understttede moduler:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1329,7 +1334,7 @@ msgstr "" "for flere oplysninger og tilvalg.\n" " Denne APT har \"Super Cow Powers\".\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1570,9 +1575,13 @@ msgstr "Overskriv pakkematch uden version for %s" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Kunne ikke lse %s" @@ -1602,9 +1611,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "Mapperne info og temp skal ligge i samme filsystem" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Indlser pakkelisterne" @@ -1709,12 +1718,12 @@ msgstr "Kunne ikke finde en gyldig kontrolfil" msgid "Unparsable control file" msgstr "Ikke-tolkbar kontrolfil" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Kunne ikke lse cdrom-databasen %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1722,20 +1731,20 @@ msgstr "" "Brug apt-cdrom for at apt kan lre den at kende. apt-get update kan ikke " "bruges til at tilfje nye cd'er" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Forkert cd" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Kunne ikke afmontere cdrommen i %s, den er muligvis stadig i brug." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Disk blev ikke fundet." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Fil blev ikke fundet" @@ -1753,34 +1762,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "Ugyldig URI, lokale URI'er m ikke starte med //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Logget p" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Kunne ikke bestemme serverens navn" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Kunne ikke bestemme det lokale navn" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Serveren ngtede os forbindelse og sagde: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "angivelse af brugernavn mislykkedes, serveren sagde: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "angivelse af adgangskode mislykkedes, serveren sagde: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1788,114 +1797,114 @@ msgstr "" "Der blev angivet en proxyserver men intet logp-skript; Acquire::ftp::" "ProxyLogin er tom." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Logp-skriptets kommando '%s' mislykkedes. Serveren sagde: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE mislykkedes. Serveren sagde: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Tidsudlb p forbindelsen" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Serveren lukkede forbindelsen" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Lsefejl" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Mellemlageret blev overfyldt af et svar." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Protokolfejl" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Skrivefejl" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Kunne ikke oprette sokkel" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Kunne ikke forbinde datasokkel, tidsudlb p forbindelsen" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Kunne ikke forbinde passiv sokkel." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo kunne ikke f en lyttesokkel" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Kunne ikke tilknytte en sokkel" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Kunne ikke lytte p soklen" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Kunne ikke finde soklens navn" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Kunne ikke sende PORT-kommando" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Ukendt adressefamilie %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT mislykkedes. Serveren sagde: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Tidsudlb p datasokkel-forbindelse" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Kunne ikke acceptere forbindelse" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Problem ved \"hashing\" af fil" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Kunne ikke hente fil. Serveren sagde '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Tidsudlb ved datasokkel" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Dataoverfrsel mislykkedes, serveren sagde '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Foresprgsel" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Kunne ikke udfre " @@ -2007,95 +2016,95 @@ msgstr "Kunne ikke msgid "Read error from %s process" msgstr "Lsefejl fra %s-process" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Afventer hoveder" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Fandt en enkelt linje i hovedet p over %u tegn" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Ugyldig linje i hovedet" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "http-serveren sendte et ugyldigt svarhovede" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "http-serveren sendte et ugyldigt Content-Length-hovede" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "http-serveren sendte et ugyldigt Content-Range-hovede" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "" "Denne http-servere har fejlagtig understttelse af intervaller ('ranges')" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Ukendt datoformat" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Valg mislykkedes" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Tidsudlb p forbindelsen" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Fejl ved skrivning af uddatafil" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Fejl ved skrivning til fil" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Fejl ved skrivning til filen" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "Fejl ved lsning fra serveren. Den fjerne ende lukkede forbindelsen" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Fejl ved lsning fra server" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 #, fuzzy msgid "Failed to truncate file" msgstr "Kunne ikke skrive filen %s" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Ugyldige hoved-data" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Forbindelsen mislykkedes" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Intern fejl" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Kan ikke udfre mmap for en tom fil" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Kunne ikke udfre mmap for %lu byte" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2242,13 +2251,13 @@ msgstr "Ugyldig handling %s" msgid "Unable to stat the mount point %s" msgstr "Kunne ikke finde monteringspunktet %s" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Kunne ikke skifte til %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Kunne ikke finde cdrommen" @@ -2277,51 +2286,50 @@ msgstr "Kunne ikke opn msgid "Waited for %s but it wasn't there" msgstr "Ventede p %s, men den var der ikke" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Underprocessen %s modtog en segmenteringsfejl." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Underprocessen %s modtog en segmenteringsfejl." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Underprocessen %s returnerede en fejlkode (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Underprocessen %s afsluttedes uventet" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Kunne ikke bne filen %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "ls, mangler stadig at lse %lu men der er ikke flere" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Problem under lukning af fil" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Fejl ved frigivelse af filen" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Problem under synkronisering af fil" @@ -2414,16 +2422,16 @@ msgstr "Kandidatversioner" msgid "Dependency generation" msgstr "Afhngighedsgenerering" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Lser tilstandsoplysninger" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Kunne ikke bne StateFile %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Kunne ikke skrive den midlertidige StateFile %s" @@ -2463,32 +2471,32 @@ msgstr "Ugyldig linje %lu i kildelisten %s (absolut dist)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Ugyldig linje %lu i kildelisten %s (tolkning af dist)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "bner %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Linjen %u er for lang i kildelisten %s." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Ugyldig linje %u i kildelisten %s (type)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typen '%s' er ukendt p linje %u i kildelisten %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Ugyldig linje %u i kildelisten %s (producent-id)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2512,7 +2520,7 @@ msgid "" msgstr "" "Pakken %s skal geninstalleres, men jeg kan ikke finde noget arkiv med den." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2520,12 +2528,12 @@ msgstr "" "Fejl, pkgProblemResolver::Resolve satte stopklodser op, det kan skyldes " "tilbageholdte pakker." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Kunne ikke korrigere problemerne, da du har tilbageholdt delagte pakker." -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2545,12 +2553,12 @@ msgstr "Arkivmappen %spartial mangler." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Henter fil %li ud af %li (%s tilbage)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Henter fil %li ud af %li" @@ -2570,16 +2578,16 @@ msgstr "Metoden %s startede ikke korrekt" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "Indst disken med navnet: '%s' i drevet '%s' og tryk retur." -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Pakkesystemet '%s' understttes ikke" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Kunne ikke bestemme en passende pakkesystemtype" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Kunne ikke finde %s." @@ -2596,136 +2604,135 @@ msgstr "Pakkelisterne eller statusfilen kunne ikke tolkes eller msgid "You may want to run apt-get update to correct these problems" msgstr "Du kan muligvis rette problemet ved at kre 'apt-get update'" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "Ugyldig indgang i indstillingsfilen. Pakkehovedet mangler" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Kunne ikke forst pin-type %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Ingen prioritet (eller prioritet nul) angivet ved pin" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Mellemlageret benytter en inkompatibel versionsstyring" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Der skete en fejl under behandlingen af %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Der skete en fejl under behandlingen af %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Der skete en fejl under behandlingen af %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Der skete en fejl under behandlingen af %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Der skete en fejl under behandlingen af %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Der skete en fejl under behandlingen af %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Der skete en fejl under behandlingen af %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Der skete en fejl under behandlingen af %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Der skete en fejl under behandlingen af %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Hold da op! Du nede over det antal pakkenavne, denne APT kan hndtere." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Hold da op! Du nede over det antal versioner, denne APT kan hndtere." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "Hold da op! Du nede over det antal versioner, denne APT kan hndtere." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Hold da op! Du nede over det antal afhngigheder, denne APT kan hndtere." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Der skete en fejl under behandlingen af %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Der skete en fejl under behandlingen af %s (CollectfileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Pakken %s %s blev ikke fundet under behandlingen af filafhngigheder" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Kunne ikke finde kildepakkelisten %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Samler filudbud" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "IO-fejl ved gemning af kilde-mellemlageret" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "omdbning mislykkedes, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5Sum stemmer ikke" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 #, fuzzy msgid "Hash Sum mismatch" msgstr "MD5Sum stemmer ikke" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "" "Der er ingen tilgngelige offentlige ngler for flgende ngle-ID'er:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2734,7 +2741,7 @@ msgstr "" "Jeg kunne ikke lokalisere filen til %s-pakken. Det betyder muligvis at du er " "ndt til manuelt at reparere denne pakke. (grundet manglende arch)" -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2743,25 +2750,23 @@ msgstr "" "Jeg kunne ikke lokalisere filen til %s-pakken. Det betyder muligvis at du er " "ndt til manuelt at reparere denne pakke." -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, 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:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Strrelsen stemmer ikke" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Kunne ikke tolke pakkefilen %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Bemrk, at %s vlges fremfor %s\n" @@ -2775,7 +2780,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Leverandrblok %s inderholder intet fingeraftryk" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2784,42 +2789,42 @@ msgstr "" "Bruger cdrom-monteringspunktet %s\n" "Monterer cdrom\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Identificerer.. " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Gemt mrkat: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "Afmonterer cdrom...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Bruger cdrom-monteringspunktet %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Afmonterer cdrom\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Venter p disken...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Monterer cdrom...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Skanner disken for indeksfiler..\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, fuzzy, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2828,25 +2833,23 @@ msgstr "" "Fandt %i pakkeindekser, %i kildeindekser, %i oversttelsesindekser og %i " "signaturer\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 #, fuzzy -#| msgid "" -#| "Unable to locate any package files, perhaps this is not a Debian Disc" 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" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Fandt mrkatet '%s'\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Det er ikke et gyldigt navn, prv igen.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2855,34 +2858,34 @@ msgstr "" "Denne disk hedder: \n" " %s \n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Kopierer pakkelisterne..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Skriver ny kildeliste\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Denne disk har flgende kildeliste-indgange:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Skrev %i poster.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Skrev %i poster med %i manglende filer.\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, 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" @@ -2969,7 +2972,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Kunne ikke lse listemappen" diff --git a/po/de.po b/po/de.po index 9b025dd94..400af1e49 100644 --- a/po/de.po +++ b/po/de.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+0200\n" "PO-Revision-Date: 2009-07-12 01:12+0200\n" "Last-Translator: Holger Wansing <linux@wansing-online.de>\n" "Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n" @@ -25,7 +25,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Paket %s Version %s hat eine nicht erfüllte Abhängigkeit:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -95,7 +95,7 @@ msgstr "Gesamtmenge an Slack: " msgid "Total space accounted for: " msgstr "Gesamtmenge an Speicher: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Paketdatei %s ist nicht synchronisiert." @@ -153,14 +153,14 @@ msgstr " Versions-Tabelle:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -234,18 +234,18 @@ msgstr "" " -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" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "" "Bitte geben Sie einen Namen für die CD an, wie zum Beispiel »Debian 2.1r1 " "Disk 1«" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "" "Bitte legen Sie ein Medium ins Laufwerk und drücken Sie die Eingabetaste" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Wiederholen Sie dieses Prozedere für die restlichen CDs Ihres Satzes." @@ -314,7 +314,7 @@ msgstr "" " -o=? Eine beliebige Konfigurationsoption setzen, z. B. -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Kann nicht nach %s schreiben" @@ -664,7 +664,7 @@ msgstr "Konnte %s nicht in %s umbenennen" msgid "Y" msgstr "J" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Fehler beim Kompilieren eines regulären Ausdrucks – %s" @@ -765,120 +765,120 @@ msgstr "%lu zu entfernen und %lu nicht aktualisiert.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu nicht vollständig installiert oder entfernt.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Abhängigkeiten werden korrigiert..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " fehlgeschlagen." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Kann Abhängigkeiten nicht korrigieren" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Kann die Menge zu aktualisierender Pakete nicht minimieren" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Fertig" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Nicht erfüllte Abhängigkeiten. Versuchen Sie, -f zu benutzen." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "WARNUNG: Die folgenden Pakete können nicht authentifiziert werden!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Authentifizierungswarnung überstimmt.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Diese Pakete ohne Überprüfung installieren [j/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Einige Pakete konnten nicht authentifiziert werden" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Interner Fehler, InstallPackages mit defekten Paketen aufgerufen!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "Pakete müssen entfernt werden, aber Entfernen ist abgeschaltet." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Interner Fehler, Anordnung beendete nicht" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Kann das Downloadverzeichnis nicht sperren." -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Die Liste der Quellen konnte nicht gelesen werden." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 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 an " "apt@packages.debian.org" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Es müssen noch %sB von %sB an Archiven heruntergeladen werden.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Es müssen %sB an Archiven heruntergeladen werden.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "Nach dieser Operation werden %sB Plattenplatz zusätzlich benutzt.\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Nach dieser Operation werden %sB Plattenplatz freigegeben.\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "Konnte freien Platz in %s nicht bestimmen" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "Sie haben nicht genug Platz in %s." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Ja, tue was ich sage!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -889,28 +889,28 @@ msgstr "" "Zum Fortfahren geben Sie bitte »%s« ein.\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Abbruch." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Möchten Sie fortfahren [J/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Konnte %s nicht holen %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Einige Dateien konnten nicht heruntergeladen werden" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Herunterladen abgeschlossen; Nur-Herunterladen-Modus aktiv" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -918,48 +918,48 @@ msgstr "" "Konnte einige Archive nicht herunterladen; vielleicht »apt-get update« " "ausführen oder mit »--fix-missing« probieren?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing und Wechselmedien werden zurzeit nicht unterstützt" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Konnte fehlende Pakete nicht korrigieren." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Installation abgebrochen." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Hinweis: wähle %s an Stelle von %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "Überspringe %s, es ist schon installiert und »upgrade« ist nicht gesetzt.\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Installiert]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Sie sollten eines explizit zum Installieren auswählen." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -970,60 +970,60 @@ msgstr "" "Paket 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:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Doch die folgenden Pakete ersetzen es:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Paket %s hat keinen Installationskandidaten" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ist schon die neueste Version.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Release »%s« für »%s« konnte nicht gefunden werden" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Version »%s« für »%s« konnte nicht gefunden werden" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Gewählte Version %s (%s) für %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "Kein Quellpaket »%s«, wähle stattdessen »%s«\n" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Der Befehl »update« akzeptiert keine Argumente" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Kann das Listenverzeichnis nicht sperren" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Es soll nichts gelöscht werden, kann AutoRemover nicht starten" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1031,11 +1031,18 @@ msgstr "" "Die folgenden Pakete wurden automatisch installiert und werden nicht länger " "benötigt:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"Die folgenden Pakete wurden automatisch installiert und werden nicht länger " +"benötigt:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Verwenden Sie »apt-get autoremove«, um sie zu entfernen." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1054,44 +1061,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 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:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Interner Fehler, AutoRemover hat was kaputt gemacht" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Interner Fehler, AllUpgrade hat was kaputt gemacht" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Konnte Task %s nicht finden" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Konnte Paket %s nicht finden" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Hinweis: wähle %s für regulären Ausdruck »%s«\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s wurde als manuell installiert festgelegt.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1099,7 +1106,7 @@ msgstr "" "Nicht erfüllte Abhängigkeiten. Versuchen Sie »apt-get -f install« ohne " "jegliche Pakete (oder geben Sie eine Lösung an)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1111,120 +1118,120 @@ msgstr "" "Unstable-Distribution verwenden, einige erforderliche Pakete noch nicht\n" "erstellt wurden oder Incoming noch nicht verlassen haben." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Kaputte Pakete" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Die folgenden zusätzlichen Pakete werden installiert:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Vorgeschlagene Pakete:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Empfohlene Pakete:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Berechne Upgrade (Paketaktualisierung) ..." -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Fehlgeschlagen" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Fertig" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Interner Fehler, der Problem-Löser hat was kaputt gemacht" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "Kann Quellpaket für %s nicht finden" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Überspringe schon heruntergeladene Datei »%s«\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "Sie haben nicht genug freien Platz in %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Es müssen noch %sB von %sB an Quellarchiven heruntergeladen werden.\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Es müssen %sB an Quellarchiven heruntergeladen werden.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Hole Quelle %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Konnte einige Archive nicht holen." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Überspringe Entpacken der schon entpackten Quelle in %s\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Entpack-Befehl »%s« fehlgeschlagen.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, 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:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Build-Befehl »%s« fehlgeschlagen.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Kindprozess fehlgeschlagen" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "" "Es muss zumindest ein Paket angegeben werden, dessen Bau-Abhängigkeiten\n" "überprüft werden sollen." -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" "Informationen zu Bau-Abhängigkeiten für %s konnten nicht gefunden werden." -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s hat keine Bau-Abhängigkeiten.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1233,7 +1240,7 @@ msgstr "" "%s-Abhängigkeit für %s kann nicht erfüllt werden, da Paket %s nicht gefunden " "werden kann." -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1242,32 +1249,32 @@ msgstr "" "%s-Abhängigkeit für %s kann nicht erfüllt werden, da keine verfügbare " "Version von Paket %s die Versionsanforderungen erfüllen kann." -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2551 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Konnte die %s-Abhängigkeit für %s nicht erfüllen: Installiertes Paket %s ist " "zu neu." -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Konnte die %s-Abhängigkeit für %s nicht erfüllen: %s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Bau-Abhängigkeiten für %s konnten nicht erfüllt werden." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Verarbeitung der Bau-Abhängigkeiten fehlgeschlagen" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Unterstützte Module:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1358,7 +1365,7 @@ msgstr "" "weitergehende Informationen und Optionen.\n" " Dieses APT hat Super-Kuh-Kräfte.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1606,9 +1613,13 @@ msgstr "Überschreibe Paket-Treffer ohne Version für %s" msgid "File %s/%s overwrites the one in the package %s" msgstr "Datei %s/%s überschreibt die Datei in Paket %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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Kann %s nicht lesen" @@ -1638,9 +1649,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "Die »info«- und »temp«-Verzeichnisse müssen im selben Dateisystem liegen" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Paketlisten werden gelesen" @@ -1744,12 +1755,12 @@ msgstr "Konnte gültige »control«-Datei nicht finden" msgid "Unparsable control file" msgstr "Nicht einlesbare »control«-Datei" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Kann CD-ROM-Datenbank %s nicht lesen" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1757,22 +1768,22 @@ msgstr "" "Bitte verwenden Sie apt-cdrom, um diese CD-ROM für APT erkennbar zu machen. " "apt-get update kann nicht dazu verwendet werden, neue CD-ROMs hinzuzufügen" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Falsche CD-ROM" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "" "Kann Einbindung von CD-ROM in %s nicht lösen, möglicherweise wird sie noch " "verwendet." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Disk nicht gefunden." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Datei nicht gefunden" @@ -1791,34 +1802,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "Ungültige URI, lokale URIs dürfen nicht mit // beginnen" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Logge ein" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Kann Namen des Kommunikationspartners nicht bestimmen" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Kann lokalen Namen nicht bestimmen" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Der Server hat die Verbindung abgelehnt: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "Befehl USER fehlgeschlagen: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "Befehl PASS fehlgeschlagen: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1826,114 +1837,114 @@ msgstr "" "Es war ein Proxy-Server angegeben, aber kein Einlogg-Skript, Acquire::ftp::" "ProxyLogin ist leer." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Befehl »%s« des Einlog-Skriptes ist fehlgeschlagen: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "Befehl TYPE fehlgeschlagen: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Zeitüberschreitung der Verbindung" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Der Server hat die Verbindung geschlossen" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Lesefehler" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Eine Antwort hat den Puffer zum Überlaufen gebracht." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Protokoll beschädigt" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Schreibfehler" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Konnte kein Socket erzeugen" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Konnte Daten-Socket wegen Zeitüberschreitung nicht verbinden" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Konnte passiven Socket nicht verbinden." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "Die Funktion getaddrinfo konnte keinen lauschenden Socket finden" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Konnte ein Socket nicht verbinden" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Konnte auf dem Socket nicht lauschen" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Konnte den Namen des Sockets nicht bestimmen" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Konnte PORT-Befehl nicht senden" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Unbekannte Adressfamilie %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "Befehl EPRT fehlgeschlagen: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Datenverbindungsaufbau erlitt Zeitüberschreitung" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Kann Verbindung nicht annehmen" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Bei Bestimmung des Hashwertes einer Datei trat ein Problem auf" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Kann Datei nicht holen, Server antwortete: »%s«" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Datenverbindung erlitt Zeitüberschreitung" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Datenübertragung fehlgeschlagen, Server antwortete: »%s«" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Abfrage" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Kann nicht aufrufen: " @@ -2050,95 +2061,95 @@ msgstr "Konnte keine Pipe (Weiterleitung) für %s öffnen" msgid "Read error from %s process" msgstr "Lesefehler von Prozess %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Warte auf Kopfzeilen" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Erhielt einzelne Kopfzeile aus %u Zeichen" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Ungültige Kopfzeile" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "Der HTTP-Server sandte eine ungültige Antwort-Kopfzeile" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Der HTTP-Server sandte eine ungültige »Content-Length«-Kopfzeile" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Der HTTP-Server sandte eine ungültige »Content-Range«-Kopfzeile" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Der HTTP-Server unterstützt Datei-Teilübertragung nur fehlerhaft." -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Unbekanntes Datumsformat" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Auswahl fehlgeschlagen" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Verbindung erlitt Zeitüberschreitung" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Fehler beim Schreiben der Ausgabedatei" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Fehler beim Schreiben einer Datei" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Fehler beim Schreiben der Datei" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "" "Fehler beim Lesen vom Server: Der Server am anderen Ende hat die Verbindung " "geschlossen" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Fehler beim Lesen vom Server" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Konnte Datei nicht einkürzen" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Fehlerhafte Kopfzeilendaten" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Verbindung fehlgeschlagen" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Interner Fehler" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Kann eine leere Datei nicht mit mmap abbilden" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Konnte kein mmap von %lu Bytes durchführen" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2289,13 +2300,13 @@ msgstr "Ungültige Operation %s." msgid "Unable to stat the mount point %s" msgstr "Kann kein »stat« auf dem Einhängepunkt %s durchführen." -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Kann nicht nach %s wechseln" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Konnte kein »stat« auf der CD-ROM durchführen" @@ -2324,51 +2335,50 @@ msgstr "Konnte Lock %s nicht bekommen" msgid "Waited for %s but it wasn't there" msgstr "Auf %s gewartet, aber es war nicht da" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Unterprozess %s hat einen Speicherzugriffsfehler erhalten." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Unterprozess %s hat einen Speicherzugriffsfehler erhalten." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Unterprozess %s ist mit einem Fehlercode zurückgekehrt (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Unterprozess %s hat sich unerwartet beendet" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Konnte Datei %s nicht öffnen" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "Lese, habe noch %lu zu lesen, aber nichts mehr übrig" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "Schreiben, habe noch %lu zu schreiben, konnte aber nicht" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Beim Schließen der Datei trat ein Problem auf" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Beim Unlinking der Datei trat ein Problem auf" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Beim Synchronisieren einer Datei trat ein Problem auf" @@ -2461,16 +2471,16 @@ msgstr "Mögliche Versionen" msgid "Dependency generation" msgstr "Abhängigkeits-Generierung" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Lese Status-Informationen ein" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Konnte Statusdatei %s nicht öffnen" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Konnte temporäre Statusdatei %s nicht schreiben" @@ -2510,32 +2520,32 @@ msgstr "Missgestaltete Zeile %lu in Quellliste %s (»absolute dist«)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Missgestaltete Zeile %lu in Quellliste %s (»dist parse«)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "%s wird geöffnet" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Zeile %u zu lang in der Quellliste %s." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Missgestaltete Zeile %u in Quellliste %s (»type«)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typ »%s« ist unbekannt in Zeile %u der Quellliste %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Missgestaltete Zeile %u in Quellliste %s (»vendor id«)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2560,7 +2570,7 @@ msgstr "" "Das Paket %s muss neu installiert werden, ich kann aber kein Archiv dafür " "finden." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2568,11 +2578,11 @@ msgstr "" "Fehler: pkgProblemResolver::Resolve hat Unterbrechungen hervorgerufen, dies " "könnte durch gehaltene Pakete hervorgerufen worden sein." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "Kann Probleme nicht korrigieren, Sie haben gehaltene defekte Pakete." -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2592,12 +2602,12 @@ msgstr "Archivverzeichnis %spartial fehlt." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Hole Datei %li von %li (noch %s)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Hole Datei %li von %li" @@ -2619,16 +2629,16 @@ msgstr "" "Bitte legen Sie das Medium mit dem Namen »%s« in Laufwerk »%s« und drücken Sie " "die Eingabetaste." -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Paketierungssystem »%s« wird nicht unterstützt" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Kann keinen passenden Paketierungssystem-Typ bestimmen" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Kann kein »stat« auf %s durchführen." @@ -2649,142 +2659,141 @@ 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:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "Ungültiger Eintrag in Einstellungsdatei, keine »Package«-Kopfzeilen" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Konnte Pinning-Typ (pin type) %s nicht verstehen" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Keine Priorität (oder Null) für Pin angegeben" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Cache hat ein inkompatibles Versionssystem" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Ein Fehler trat beim Verarbeiten von %s auf (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Ein Fehler trat beim Bearbeiten von %s auf (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Ein Fehler trat beim Bearbeiten von %s auf (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Ein Fehler trat beim Bearbeiten von %s auf (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Ein Fehler trat beim Bearbeiten von %s auf (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Na so was, Sie haben die Anzahl an Paketen überschritten, mit denen APT " "umgehen kann." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" "Na so was, Sie haben die Anzahl an Versionen überschritten, mit denen APT " "umgehen kann." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" "Na so was, Sie haben die Anzahl an Beschreibungen überschritten, mit denen " "APT umgehen kann." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Na so was, Sie haben die Anzahl an Abhängigkeiten überschritten, mit denen " "APT umgehen kann." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Fehler trat beim Bearbeiten von %s auf (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Fehler trat beim Bearbeiten von %s auf (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Paket %s %s wurde nicht gefunden beim Verarbeiten der Dateiabhängigkeiten" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Konnte kein »stat« auf der Liste %s der Quellpakete durchführen." -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Sammle Datei-Provides" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "E/A-Fehler beim Speichern des Quell-Caches" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "Umbenennen fehlgeschlagen, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5-Summe stimmt nicht überein" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Hash-Summe stimmt nicht überein" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "" "Es gibt keine öffentlichen Schlüssel für die folgenden Schlüssel-IDs:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2793,7 +2802,7 @@ msgstr "" "Ich konnte keine Datei für Paket %s finden. Das könnte heißen, dass Sie " "dieses Paket von Hand korrigieren müssen (aufgrund fehlender Architektur)." -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2802,26 +2811,24 @@ msgstr "" "Ich konnte keine Datei für Paket %s finden. Das könnte heißen, dass Sie " "dieses Paket von Hand korrigieren müssen." -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, 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:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Größe stimmt nicht überein" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Kann Paketdatei %s nicht verarbeiten (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Hinweis: wähle %s an Stelle von %s\n" @@ -2835,7 +2842,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Herstellerblock %s enthält keinen Fingerabdruck" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2844,42 +2851,42 @@ msgstr "" "Benutze CD-ROM-Einhängepunkt %s\n" "Hänge CD-ROM ein\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Identifiziere ... " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Gespeicherte Kennzeichnung: %s\n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "Hänge CD-ROM aus ...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Benutze CD-ROM-Einhängepunkt %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Hänge CD-ROM aus\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Warte auf Disk ...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Hänge CD-ROM ein ...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Suche auf CD nach Index-Dateien ...\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2888,22 +2895,22 @@ msgstr "" "Fand %zu Paketindizes, %zu Quellindizes, %zu Übersetzungsindizes und %zu " "Signaturen\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Fand Kennzeichnung »%s«\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Dies ist kein gültiger Name, versuchen Sie es erneut.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2912,34 +2919,34 @@ msgstr "" "Diese Disk heißt: \n" "»%s«\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Kopiere Paketlisten..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Schreibe neue Quellliste\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Quelllisteneinträge für diese Disk sind:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Es wurden %i Datensätze geschrieben.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, 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:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -3030,7 +3037,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Kann das Listenverzeichnis nicht sperren" diff --git a/po/dz.po b/po/dz.po index e30abd03c..56bced6a4 100644 --- a/po/dz.po +++ b/po/dz.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po.pot\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -24,7 +24,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "ཐུམ་སྒྲིལ་ %s ཐོན་རིམ་ %s ལུ་ ཌེཔ་མ་ཚང་ཅིག་འདུག:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -96,7 +96,7 @@ msgstr "བར་སྟོང་ལྷུག་ལྷུག་གི་བསྡ msgid "Total space accounted for: " msgstr "གི་དོན་ལུ་རྩིས་ཐོ་བཏོན་ཡོད་པའི་བར་སྟོང:" -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "ཐུམ་སྒྲིལ་ཡིག་སྣོད་ %sའདི་མཉམ་འབྱུང་གི་ཕྱི་ཁར་ཨིན་པས།" @@ -155,14 +155,14 @@ msgstr "ཐོན་རིམ་ཐིག་ཁྲམ།:" msgid " %4i %s\n" msgstr "%4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -239,15 +239,15 @@ msgstr "" "cache=/tmp\n" " ཧེང་བཀལ་བརྡ་དོན་གི་དོན་ལུ་ ཨེ་apt-cache(8)དང་apt.conf(5)ལག་ཐོག་ཤོག་ལེབ་ཚུ་བལྟ།.\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "ཌིསིཀ་འདི་གི་དོན་ལུ་མིང་ཅིག་བླིན་གནང་ དཔེར་ན་ 'Debian 2.1r1 Disk 1'བཟུམ།" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "ཌིསིཀ་ཅིག་འདྲེན་འཕྲུལ་ནང་བཙུགས་བཞིནམ་ལས་ལོག་ལྡེ་འདི་ཨེབ།" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "ཁྱོད་ཀྱི་ཆ་ཚན་ནང་གི་སི་ཌི་ལྷག་ལུས་ཡོད་མི་གི་དོན་ལུ་འ་ནི་ལས་སྦྱོར་དེ་ཡང་བསྐྱར་འབད།" @@ -312,7 +312,7 @@ msgstr "" " -o=? འདི་གིས་མཐུན་སྒྲིག་རིམ་སྒྲིག་གདམ་ཁ་ཅིག་གཞི་སྒྲིག་འབདཝ་ཨིན་ དཔེར་ན་-o dir::cache=/tmp་" "བཟུམ།\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr " %sལུ་འབྲི་མ་ཚུགས།" @@ -659,7 +659,7 @@ msgstr "%s་ལུ་%s་བསྐྱར་མིང་བཏགས་ནི msgid "Y" msgstr "ཝའི།" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "རི་ཇེགསི་ཕྱོགས་སྒྲིག་འཛོལ་བ་- %s" @@ -760,122 +760,122 @@ msgstr "རྩ་བསྐྲད་འབད་ནི་ལུ་%lu་དང་ msgid "%lu not fully installed or removed.\n" msgstr "%lu་འདི་ཆ་ཚང་སྦེ་གཞི་བཙུགས་མ་འབད་ཡང་ན་རྩ་བསྐྲད་མ་གཏང་པས།\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "རྟེན་འབྲེལ་ནོར་བཅོས་འབད་དོ།" -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr "འཐུས་ཤོར་བྱུང་ཡོད།" -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "རྟེན་འབྲེལ་འདི་ནོར་བཅོས་འབད་མི་ཚུགས་པས།" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "ཡར་བསྐྱེད་འབད་ཡོད་པའི་ཆ་ཚན་འདི་ཆུང་ཀུ་བཟོ་མི་ཚུགས་པས།" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr "འབད་ཚར་ཡི།" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "འ་ནི་འདི་ཚུ་ནོར་བཅོས་འབད་ནི་ལུ་ཁྱོད་ཀྱི་`apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་།" -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "མ་ཚང་པའི་རྟེན་འབྲེལ་ཚུ། -f ལག་ལེན་འཐབ་སྟེ་འབད་རྩོལ་བསྐྱེད།" -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ཉེན་བརྡ:འོག་གི་ཐུམ་སྒྲིལ་འདི་ཚུ་བདེན་བཤད་འབད་མི་བཏུབ་པས།" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "བདེན་བཤད་ཉེན་བརྡ་འདི་ཟུར་འབད་ཡོད།\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "བདེན་སྦྱོར་མ་འབད་བར་འ་ནི་ཐུམ་སྒྲིལ་འདི་ཚུ་གཞི་བཙུགས་འབད་ནི་ཨིན་ན་[y/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་བདེན་བཤད་འབད་མ་ཚུགས།" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "དཀའ་ངལ་ཚུ་ཡོདཔ་ལས་-y ་འདི་ --force-yes་མེདཐོག་ལས་ལག་ལེན་འཐབ་སྟེ་ཡོད།" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" "ནང་འཁོད་ཀྱི་འཛོལ་བ་ གཞི་བཙུགས་ཐུམ་སྒྲིལ་ཚུ་ ཆད་པ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་དང་གཅིག་ཁར་བོད་བརྡ་འབད་འདི་" "ཡོད!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་བཏང་དགོཔ་འདུག་འདི་འབདགཝ་ད་རྩ་བསྐྲད་གཏང་ནི་འདི་ལྕོགས་མིན་ཐལ་ཏེ་འདུག" -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "ནང་འཁོད་འཛོལ་བ་ གོ་རིམ་བཟོ་ནི་ཚུ་མཇུག་མ་བསྡུ་བས།" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "ཕབ་ལེན་འབད་ནིའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབས་མ་ཚུགས་པས།" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "འབྱུང་ཁུངས་ཚུ་ཀྱི་ཐོ་ཡིག་དེ་ལྷག་མི་ཚུགས་པས།" -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "ག་ཅི་གི་ཡ་མཚན་ཆེ་མི་ཆེ་ ཚད་འདི་གིས་ email apt@packages.debian.org་ལུ་མཐུན་སྒྲིག་མི་འབད་" "བས།" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "%sBལེན་ནི་ལུ་དགོཔ་པས། ཡིག་མཛོད་ཚི་གི་%sB་\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "ཡིག་མཛོད་ཀྱི་%sB་འདི་ལེན་དགོ་པས།\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "ཁ་སྐོང་གི་%sB་འདི་བཤུབ་པའི་ཤུལ་ལས་ཌིཀསི་གི་བར་སྟོང་དེ་ལག་ལེན་འཐབ་འོང་།\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "%sB་འདི་ཤུབ་པའི་ཤུལ་ལས་ཀྱི་བར་སྟོང་དེ་དལཝ་སྦེ་ལུས་འོང་།\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s་ནང་བར་སྟོང་" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "%s ནང་ཁྱོད་ལུ་བར་སྟོང་དལཝ་ལངམ་སྦེ་མིན་འདུག" -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "གལ་ཆུང་རྐྱངམ་ཅིག་ཁསལ་བཀོད་འབད་ནུག་ འདི་འབདཝ་ད་འ་ནི་འདི་གལ་ཆུང་གི་བཀོལ་སྤྱོད་མེན།" -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "ཨིན་ ང་གིས་སླབ་དོ་བཟུམ་སྦེ་རང་འབད!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -886,28 +886,28 @@ msgstr "" "འཕྲོ་མཐུད་འབད་ནིའི་དོན་ལུ་'%s'ཚིག་ཚན་ནང་ལུ་ཡིག་དཔར་རྐྱབས།\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "བར་བཤོལ་འབད།" -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "ཁྱོན་ཀྱི་འཕྲོ་མཐུད་ནི་འབད་ནི་ཨིན་ན་[Y/n]?" -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s་ ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "ཕབ་ལེན་ཐབས་ལམ་རྐྱངམ་གཅིག་ནང་མཇུག་བསྡུཝ་སྦེ་རང་ཕབ་ལེན་འབད།" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -915,49 +915,49 @@ msgstr "" "ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་མི་ཚུགས་པས་ apt-get་དུས་མཐུན་བཟོ་ནི་གཡོག་བཀོལ་ནི་ཨིན་ན་ཡང་ན་--fix-" "missing་དང་གཅིག་ཁར་འབད་རྩོལ་བསྐྱེད་ནི་ཨིན་ན་?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing་དང་བརྡ་ལམ་བརྗེ་སོར་འབད་ནི་འདི་ད་ལྟོ་ལས་རང་རྒྱབ་སྐྱོར་མི་འབད་བས།" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "བརླག་སྟོར་ཞུགས་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་ནོར་བཅོས་འབད་མི་ཚུགས་པས།" -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོ།" -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "%s་གི་ཚབ་ལུ་%s་སེལ་འཐུ་འབད་ནི་སེམས་ཁར་བཞག\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསྐྱེད་འབད་ནི་འདི་གཞི་སྒྲིག་མ་" "འབད་བས།\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "ཐུམ་སྒྲིལ་%s་འདི་གཞི་བཙུགས་མ་འབད་བས་ འདི་འབད་ནི་དི་གིས་རྩ་བསྐྲད་མ་གཏང་པས།་\n" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "གྱིས་བྱིན་ཏེ་ཡོད་པའི་ཐུམ་སྒྲིལ་%s་འདི་བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་ཅིག་ཨིན།\n" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "ཁྱོད་ཀྱི་གཞི་བཙུགས་འབད་ནི་ལུ་གཏན་འཁལ་སྦེ་གཅིག་སེལ་འཐུ་འབད་དགོ" -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -968,69 +968,74 @@ msgstr "" "འདི་གིས་ཐུམ་སྒྲིལ་ཅིག་བརླག་སྟོར་ཞུགས་ཡོདཔ་ཨིནམ་སྟོནམ་ཨིནམ་དང་ ཕན་མེད་སྦེ་གནས་ཡོདཔ་ ཡང་ན་\n" "འདི་གཞན་འབྱུང་ཅིག་ནང་ལས་ལས་རྐྱངམ་ཅིག་འཐོབ་ཚུགསཔ་ཨིན་པས།\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "ག་དེ་སྦེ་ཨིན་རུང་འོག་གི་ཐུམ་སྒྲིལ་ཚུ་གིས་ འདི་ཚབ་བཙུགསཔ་ཨིན:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "ཐུམ་སྒྲིལ་%s་ལུ་གཞི་བཙུགས་ཀྱི་མི་ངོ་མིན་འདུག" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "%s ་ལོག་གཞི་བཙུགས་འབད་ནི་འདི་མི་སྲིད་པ་ཅིག་ཨིན་པས་ འདི་ཕབ་ལེན་འབད་མི་བཏུབ་པས།\n" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "%sགི་དོན་ལུ་འཛིན་གྲོལ་'%s'་དེ་མ་འཐོབ་པས།" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "'%s'་གི་དོན་ལུ་འཐོན་རིམ་'%s'་དེ་མ་འཐོབ་པས།" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "(%s)གི་དོན་ལུ་སེལ་འཐུ་འབད་ཡོད་པའི་འཐོན་རིམ་'%s'(%s)\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "དུས་མཐུན་བཟོ་བའི་བརྡ་བཀོད་འདི་གིས་སྒྲུབ་རྟགས་ཚུ་མི་འབག་འབད།" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "ཐོ་བཀོད་འབད་ཡོད་པའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབ་མ་ཚུགས།" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1046,44 +1051,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "འོག་གི་བརྡ་དོན་དེ་གིས་དུས་སྐབས་འདི་མོས་མཐུན་བཟོ་ནི་ལུ་གྲོགས་རམ་འབད་འོང་:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "ནང་འཁོད་འཛོལ་བ་ དཀའ་ངལ་མོས་མཐུན་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་ཐལ་ཡོད།" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "ནང་འགོད་འཛོལ་བ་ ཡར་བསྐྱེད་ཀྱི་ཅ་ཆས་ཆ་མཉམ་མེདཔ་ཐལ་ཡོད།" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, fuzzy, c-format msgid "Couldn't find task %s" msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "དྲན་འཛིན་ རི་ཇེགསི་'%s'གི་དོན་ལུ་%s་སེལ་འཐུ་འབད་དོ།\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "འདི་ཚུ་ནོར་བཅོས་འབད་ནིའི་དོན་ལུ་ཁྱོད་ཀྱི་`apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་:" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1091,7 +1096,7 @@ msgstr "" "མ་ཚང་བའི་རྟེན་འབྲེལ་ ཐུས་སྒྲིལ་མེད་མི་ཚུ་དང་གཅིག་ཁར་ 'apt-get -f install'དེ་འབཐ་རྩོལ་བསྐྱེདཔ།" "(ཡང་ན་ཐབས་ཤེས་ཅིག་གསལ་བཀོད་འབད།)" -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1102,122 +1107,122 @@ msgstr "" "འབད་འབདཝ་འོང་ནི་མས་ ཡང་ན་ད་ལྟོ་ཡང་གསར་བསྐྲུན་མ་འབད་བར་ཡོད་པའི་ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་ཡང་ན་ནང་" "འབྱོར་གྱི་ཕྱི་ཁར་རྩ་བསྐྲད་བཏང་ཡོད་པའི་རྩ་བརྟན་མེད་པའི་བགོ་འགྲེམ་ཚུ་ལག་ལེན་འཐབ་དོ་ཡོདཔ་འོང་ནི་ཨིན་པས།" -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "ཆད་པ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ།" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "འོག་གི་ཐུམ་སྒྲིལ་ཐེབས་ཚུ་གཞི་བཙུགས་འབད་འོང་:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "བསམ་འཆར་བཀོད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "འོས་སྦྱོར་འབད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "ཡར་བསྐྱེད་རྩིས་བཏོན་དོ་... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "འཐུས་ཤོར་བྱུང་ཡོད།" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "འབད་ཚར་ཡི།" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "ནང་འཁོད་འཛོལ་བ་ དཀའ་ངལ་མོས་མཐུན་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་ཐལ་ཡོད།" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "གི་དོན་ལུ་འབྱུང་ཁུངས་ལེན་ནི་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་ལེན་དགོ" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "%s་གི་དོན་ལུ་འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་ཅིག་འཚོལ་མ་འཐོབ" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "གོམ་འགྱོ་གིས་ཧེ་མ་ལས་རང་'%s'་ཡིག་སྣོད་དེ་ཕབ་ལེན་འབད་ནུག\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr " %s་ནང་ཁྱོད་ལུ་བར་སྟོང་ཚུ་ལངམ་སྦེ་མིན་འདུག་" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "%sB་ལེན་དགོཔ་འདུག་ འབྱུང་ཁུངས་ཡིག་མཛོད་ཀྱི་%sB།\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "འབྱུང་ཁུངས་ཡིག་མཛོད་ཚུ་ཀྱི་%sB་ལེན་དགོ་པསས།\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "%s་འབྱུང་ཁུངས་ལེན།\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "%s་ནང་ཧེ་མ་ལས་སྦུང་ཚན་བཟོ་བཤོལ་ཨིན་མའི་སྦུང་ཚན་བཟོ་བཤོལ་གོམ་འགྱོ་འབད་དོ།\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "'%s'སྦུང་ཚན་བཟོ་བཤོལ་འཐུས་ཤོར་བྱུང་ཡོད།\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "'dpkg-dev'་ཐུམ་སྒྲིལ་དེ་གཞི་བཙུགས་འབད་ཡོད་པ་ཅིན་ཨེབ་གཏང་འབད།\n" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "'%s'་བཟོ་བརྩིགས་བརྡ་བཀོད་འཐུས་ཤོར་བྱུང་ཡོད།\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "ཆ་ལག་ལས་སྦྱོར་དེ་འཐུས་ཤོར་བྱུང་ནུག" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "builddeps ཞིབ་དཔྱད་འབད་ནིའི་དོན་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་གསལ་བཀོད་འབད་དགོ" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་བརྡ་དོན་དེ་ལེན་མ་ཚུགས།" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s ལུ་བཟོ་བརྩིགས་རྟེན་འབྲེལ་མིན་འདུག\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, 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:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1226,32 +1231,32 @@ msgstr "" "%s གི་དོན་ལུ་%s་རྟེན་འབྲེལ་འདི་གི་རེ་བ་སྐོང་མི་ཚུགས་ནུག་ག་ཅི་འབད་ཟེར་བ་ཅིན་ཐུམ་སྒརིལ་%s་གི་འཐོན་རིམ་" "ཚུ་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་འཐོན་རིམ་དགོས་མཁོ་ཚུ་གི་རེ་བ་དོ་སྐོང་མ་ཚུགས་པས།" -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2551 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "%s:གི་དོན་ལུ་%s་རྟེན་འབྲེལ་དེ་གི་རེ་བ་སྐོང་ནི་འདི་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན་ གཞི་བཙུགས་འབད་ཡོད་པའི་ཐུམ་" "སྒྲིལ་%s་དེ་གནམ་མེད་ས་མེད་གསརཔ་ཨིན་པས།" -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%s: %s་གི་དོན་ལུ་་%s་རྟེན་འབྲེལ་འདི་ངལ་རངས་འབད་ནི་འཐུས་ཤོར་བྱུང་ནུག" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr " %s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་འདི་ངལ་རངས་མ་ཚུགས་པས།" -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "བཟོ་བརྩིགས་རྟེན་འབྲེལ་འདི་ལས་སྦྱོར་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན།" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "རྒྱབ་སྐྱོར་འབད་ཡོད་པའི་ཚད་གཞི་ཚུ:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1338,7 +1343,7 @@ msgstr "" "ཤོག་ལེབ་ཚུ་ལུ་བལྟ།\n" " འ་ནི་ ཨེ་ཊི་པི་འདི་ལུ་ཡང་དག་ ཀའུ་ ནུས་ཤུགས་ཚུ་ཡོད།\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1580,9 +1585,13 @@ msgstr "%s་གི་དོན་ལུ་ཚབ་སྲུང་འབད་ msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "%s་འདི་ལུ་ལྷག་མ་ཚུགས།" @@ -1612,9 +1621,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "info ་དང་ temp་སྣོད་ཐོ་ཚུ་ཡིག་སྣོད་རིམ་ལུགས་གཅིག་གུར་ལུ་བཞག་དགོཔ་ཨིན།" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "ཐུམ་སྒྲིལ་ཐོ་ཡིག་ཚུ་ལྷག་དོ།" @@ -1716,12 +1725,12 @@ msgstr "ནུས་ཅན་ཡོད་པའི་ཚད་འཛིན་ཡ msgid "Unparsable control file" msgstr "མིང་དཔྱད་འབད་མ་བཏུབ་པའི་ཚད་འཛིན་ཡིག་སྣོད།" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "སི་ཌི་རོམ་གནད་སྡུད་གཞི་རྟེན་%s་འདི་ལྷག་མ་ཚུགས།" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1729,21 +1738,21 @@ msgstr "" "འ་ནི་སི་ཌི་-རོམ་འདི་ཨེ་པི་ཊི་་གིས་ ངོས་འཛིན་འབད་ཚུགསཔ་སྦེ་བཟོ་ནིའི་་དོན་ལུ་ ཨེ་པི་ཊི་-སི་ཌི་རོམ་ལག་ལེན་" "འཐབ་གནང། apt-get་དུས་མཐུན་བཟོ་ནི་དེ་ སི་ཌི་-རོམས་གསརཔ་ཁ་སྐོང་རྐྱབ་ནི་ལུ་ལག་ལེན་འཐབ་མི་བཏུབ།" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "སི་དི་-རོམ་ཕྱི་འགྱུར།" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "" "%s་ནང་་སི་ཌི་-རོམ་འདི་བརྩེགས་བཤོལ་འབད་མ་ཚུགས་ འདི་ད་ལྟོ་ཡང་ལག་ལེན་འཐབ་སྟེ་ཡོདཔ་འོང་ནི་མས།" -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "ཌིཀསི་དེ་འཚོལ་མ་ཐོབ།" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "ཡིག་སྣོད་འཚོལ་མ་ཐོབ།" @@ -1761,34 +1770,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "ཡུ་ཨར་ཨེལ་ ནུས་མེད་ ཉེ་གནས་ ཡུ་ཨར་ཨེལ་ཨེསི་འདི་གིས་//་དང་གཅིག་ཁར་འགོ་བཙུགས་ནི་མི་འོང་།" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "ནང་བསྐྱོད་འབད་དོ།" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "དོ་བཉམ་གི་མིང་འདི་གཏན་འབེབས་བཟོ་མ་ཚུགས།" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "ཉེ་གནས་མིང་འདི་གཏན་འབེེབས་བཟོ་མ་ཚུགས།" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "སར་བར་འདི་གིས་ མཐུད་ལམ་འདི་ངོས་ལེན་འབད་མ་བཏུབ་པར་སླབ་མས: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "ལག་ལེན་པ་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས་: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "རྩི་སྤྲོད་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས་: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1796,114 +1805,114 @@ msgstr "" "པོརོ་སི་སར་བར་ཅིག་གསལ་བཀོད་འབད་ཡོད་འདི་འབདཝ་ད་ ནང་བསྐྱོད་ཡིག་ཚུགས་མིན་འདུག་ Acquire::ftp::" "ProxyLoginའདི་སྟོངམ་ཨིན་པས།" -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "ནང་བསྐྱོད་ཡིག་ཚུགས་ བརྡ་བཀོད་'%s'་འདི་འཐོས་ཤོར་བྱུང་ཡོད་ སར་བར་གྱིས་སླབ་མས:%s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "ཡིག་དཔར་རྐྱབ་མ་བཏུབ་སར་བར་གྱིས་སླབ་མས། %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "མཐུད་ལམ་ངལ་མཚམས" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "སར་བར་གྱིས་མཐུད་ལམ་འདི་ཁ་བསྡམས་ཏེ་ཡོདཔ་ཨིན།" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "འཛོལ་བ་ལྷབ།" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "ལན་གྱིས་ གནད་ཁོངས་གུར་ལས་ ལུད་སོང་སྟེ་ཡོདཔ་ཨིན།" -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "གནད་སྤེལ་ལམ་ལུགས་ ངན་ཅན།" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "འཛོལ་བ་འབྲི།" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "སོ་ཀེཊི་ཅིག་གསར་བསྐྲུན་འབད་མ་ཚུགས་པར་ཡོདཔ་ཨིན།" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "གནད་སྡུད་སོ་ཀེཊི་མཐུད་མ་ཚུགས་པར་ཡོདཔ་ཨིན་ མཐུད་ལམ་ངལ་མཚམས།" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "བྱ་ཡུལ་གྱི་སོ་ཀེཊི་མཐུད་མ་ཚུགས།" -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo་འདི་གིས་ཉན་ནིའི་སོ་ཀེཊི་ཅིག་ལེན་མ་ཚུགས།" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "སོ་ཀེཊི་ཅིག་བསྡམས་མ་ཚུགས།" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "སོ་ཀེཊི་གུར་ཉེན་མ་ཚུགས།" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "སོ་ཀེཊི་གི་མིང་འདི་གཏན་འབེབས་བཟོ་མ་ཚུགས།" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "འདྲེན་ལམ་གྱི་བརྡ་བཀོད་འདི་བཏང་མ་ཚུགས།" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "མ་ཤེས་པའི་ཁ་བྱང་གི་རིགས་ཚན་%u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "ཨི་པི་ཨར་ཊི་ འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་གིས་སླབ་མས:%s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "གནད་སྡུད་སོ་ཀེཊི་ མཐུད་ནི་ངལ་མཚམས་བྱུང་ནུག" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "མཐུད་ལམ་འདི་དང་ལེན་འབད་མ་ཚུགས།" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "ཡིག་སྣོད་ལུ་་དྲྭ་རྟགས་བཀལ་བའི་བསྒང་དཀའ་ངལ།" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "ཡིག་སྣོད་ལེན་མ་ཚུགས་ སར་བར་'%s'གིས་སླབ་མས" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "གནད་སྡུད་སོ་ཀེཊི་ངལ་མཚམས།" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "གནད་སྡུད་གནས་སོར་དེ་འཐུས་ཤོར་བྱུང་ཡོད་ སར་བར་'%s'་གིས་སླབ་མས།" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "འདྲི་དཔྱད།" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "ལས་བཀོལ་འབད་མ་ཚུགས།" @@ -2017,94 +2026,94 @@ msgstr "%s་གི་དོན་ལུ་རྒྱུད་དུང་འད msgid "Read error from %s process" msgstr "%s་ལས་སྦྱོར་ནང་ལས་འཛོལ་བ་ཚུ་ལྷག" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "མགོ་ཡིག་ཚུ་གི་དོན་ལུ་བསྒ྄ག་དོ།" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "%u་ཡིག་འབྲུ་ཚུ་གི་ལྟག་ལས་མགོ་ཡིག་རྐྱང་པ་ཅིག་ཐོབ་ཡོད།" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "མགོ་ཡིག་གི་གྲལ་ཐིག་བྱང་ཉེས།" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ནུས་མེད་ལན་གསལ་གི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "ཨེཆི་ཊི་ཊི་པི་སར་བར་འདི་གིས་ནུས་མེད་ནང་དོན་རིང་-ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ནུས་མེད་ ནང་དོན་-ཁྱབ་ཚད་ཀྱི་མགོ་ཡིག་ཅིག་བཏང་ཡོད།" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "འ་ནི་ ཨེཆི་ཊི་ཊི་པི་ སར་བར་འདི་གིས་ ཁྱབ་ཚད་ཀྱི་རྒྱབ་སྐྱོར་དེ་ཆད་པ་བཟོ་བཏང་ནུག" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "མ་ཤེས་པའི་ཚེས་རྩ་སྒྲིག" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "སེལ་འཐུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "མཐུད་ལམ་ངལ་མཚམས་འབད་ཡོད།" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "ཨའུཊི་པུཊི་ཡིག་སྣོད་ལུ་འབྲིཝ་ད་འཛོལ་བ།" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "ཡིག་སྣོད་ལུ་འབྲིཝ་ད་འཛོལ་བ།" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "ཡིག་སྣོད་འདི་ལུ་འབྲིཝ་ད་འཛོལ་བ།" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ། ཐག་རིང་མཇུག་གི་མཐུད་ལམ་དེ་ཁ་བསྡམས།" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "སར་བར་ནང་ལས་ལྷག་པའི་བསྒང་འཛོལ་བ།" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 #, fuzzy msgid "Failed to truncate file" msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "མགོ་ཡིག་གནད་སྡུད་བྱང་ཉེས།" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "བཐུད་ལམ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "ནང་འཁོད་འཛོལ་བ།" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "ཡིག་སྣོད་སྟོངམ་འདི་mmap་འབད་མ་ཚུགས།" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "%lu་བཱའིཊིསི་གི་mmap་བཟོ་མ་ཚུགས།" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2251,13 +2260,13 @@ msgstr "ནུས་མེད་བཀོལ་སྤྱོད་%s" msgid "Unable to stat the mount point %s" msgstr "སྦྱར་བརྩེགས་ས་ཚིགས་%s་འདི་ངོ་བཤུས་འབད་མ་ཚུགས།" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "%s་ལུ་བསྒྱུར་བཅོས་འབད་མ་ཚུགས།" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "སི་ཌི་རོམ་འདི་ངོ་བཤུས་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" @@ -2287,51 +2296,50 @@ msgstr "%sལྡེ་མིག་རྐྱབ་ནི་ལེན་མ་ཚ msgid "Waited for %s but it wasn't there" msgstr "%s་གི་དོན་ལུ་བསྒུག་སྡོད་ཅི་ འདི་འབདཝ་ད་ཕར་མིན་འདུག" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "ཡན་ལག་ལས་སྦྱོར་%s་ལུ་ཆ་བགོས་ཀྱི་སྐྱོན་ཅིག་ཐོབ་ཡོདཔ་ཨིན།" -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "ཡན་ལག་ལས་སྦྱོར་%s་ལུ་ཆ་བགོས་ཀྱི་སྐྱོན་ཅིག་ཐོབ་ཡོདཔ་ཨིན།" -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "ཡན་ལག་ལས་སྦྱོར་%s་གིས་འཛོལ་བའི་ཨང་རྟགས་(%u)ཅིག་སླར་ལོག་འབད་ཡོདཔ་ཨིན།" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "ཡན་ལག་ལས་སྦྱོར་་%s་གིས་རེ་བ་མེད་པར་ཕྱིར་ཐོན་ཡོདཔ་ཨིན།" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "%s་ཡིག་སྣོད་འདི་ཁ་ཕྱེ་མ་ཚུགས།" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "ལྷག་ ད་ལྟོ་ཡང་ལྷག་ནི་ལུ་%lu་ཡོད་འདི་འབདཝ་ད་ཅི་ཡང་ལྷག་ལུས་མིན་འདུག" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "འབྲི་ ད་ལྟོ་ཡང་འབྲི་ནི་ལུ་%lu་ཡོད་འདི་འདབཝ་ད་འབད་མ་ཚུགས།" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "ཡིག་སྣོད་འདི་ཁ་བསྡམས་པའི་བསྒང་དཀའ་ངལ།" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "ཡིག་སྣོད་འདི་འབྲེལལམ་མེདཔ་བཟོ་བའི་བསྒང་དཀའ་ངལ།" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "ཡིག་སྣོད་མཉམ་བྱུང་འབདཝ་ད་དཀའ་ངལ།" @@ -2424,17 +2432,17 @@ msgstr "མི་ངོ་འཐོན་རིམཚུ།" msgid "Dependency generation" msgstr "བརྟེན་པའི་བཟོ་བཏོན།" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 #, fuzzy msgid "Reading state information" msgstr "འཐོབ་ཚུགས་པའི་བརྡ་དོན་མཉམ་བསྡོམས་འབད་དོ།" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "%s་ག་ཕྱེ་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ།" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "%s་ཡིག་སྣོད་འདི་འབྲི་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" @@ -2474,32 +2482,32 @@ msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐི msgid "Malformed line %lu in source list %s (dist parse)" msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%lu་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(dist མིང་དཔྱད་འབད་ནི་)ནང་ན།" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "%s་ཁ་ཕྱེ་དོ།" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "གྲལ་ཐིག་%u་འདི་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་ནང་ལུ་གནམ་མེད་ས་མེད་རིངམོ་འདུག" -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%u་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s (དབྱེ་བ)་ནང་ན།" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "དབྱེ་བ་'%s'་འདི་གྲལ་ཐིག་%u་གུར་ལུ་ཡོདཔ་འབྱུང་ཁུངས་ཐོ་ཡིག་%s་གི་ནང་ན་མ་ཤེས་པས།" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%u་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(སིལ་ཚོང་པ་ ཨའི་ཌི)གི་ནང་ན།" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2524,7 +2532,7 @@ msgstr "" "ཐུམ་སྒྲིལ་%s་འདི་ལོག་འདི་རང་གཞི་བཙུགས་འབད་དགོཔ་འདུག་ འདི་འབདཝ་ད་འདི་གི་དོན་ལུ་ཡིག་མཛོད་ཅིག་འཚོལ་" "མ་ཐོབ།" -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2532,11 +2540,11 @@ msgstr "" "འཛོལ་བ་ pkgProblemResolver::གིས་བཟོ་བཏོན་འབད་ཡོད་པའི་མཚམས་དེ་ཚུ་མོས་མཐུན་བཟོཝ་ཨིན འ་ནི་ཐུམ་" "སྒྲིལ་ཚུ་འཛིན་པའི་རྒྱུ་རྐྱེན་ལས་བརྟེན་ཨིན་པས།" -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "དཀའ་ངལ་འདི་ནོར་བཅོས་འབད་མ་ཚུགས་ ཁྱོད་ཀྱི་ཐུམ་སྒྲིལ་ཆད་པ་ཚུ་འཆང་འདི་འདུག" -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2556,12 +2564,12 @@ msgstr "ཡིག་མཛོད་སྣོད་ཐོ་ %s་ ཆ་ཤས #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "%li་ གི་བརླག་སྟོར་ཞུགས་པའི་ཡིག་སྣོད་%li (%s ལྷག་ལུས་དོ།)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr " %li་གི་བརླག་སྟོར་ཟུགསཔའི་ཡིག་སྣོད་ %li" @@ -2581,16 +2589,16 @@ msgstr "ཐབས་ལམ་ %s འདི་ངེས་བདེན་སྦ msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "ཁ་ཡིག་བཀོད་ཡོད་པའི་ ཌིསི་འདི་བཙུགས་གནང་། '%s'འདྲེན་འཕྲུལ་ནང་'%s' དང་ལོག་ལྡེ་འདི་ཨེབ།་" -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "སྦུང་ཚན་བཟོ་ནིའི་རིམ་ལུགས་ '%s' འདི་ལུ་རྒྱབ་སྐྱོར་མ་འབད་བས།" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "འོས་འབབ་དང་ལྡན་པའི་སྦུང་ཚན་རིམ་ལུགས་ཀྱི་དབྱེ་བ་ཅིག་གཏན་འབེབས་བཟོ་མི་ཚུགས་པས།" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "%s་ ངོ་བཤུས་འབད་མ་ཚུགས།" @@ -2608,134 +2616,133 @@ msgstr "ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་ཡང་ msgid "You may want to run apt-get update to correct these problems" msgstr "འ་ནི་དཀའ་ངལ་འདི་ཚུ་སེལ་ནིའི་ལུ་ ཁྱོད་ཀྱི་ apt-get update་དེ་གཡོག་བཀོལ་དགོཔ་འོང་།" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "དགའ་གདམ་ཡིག་སྣོད་ནང་ལུ་ནུས་མེད་ཀྱི་དྲན་ཐོ་ ཐུམ་སྒྲིལ་མགོ་ཡིག་མིན་འདུག" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "ངོ་རྟགས་ཨང་གི་དབྱེ་བ་ %s འདི་ཧ་གོ་མ་ཚུགས།" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "གོ་རྟགས་ཨང་གི་དོན་ལུ་ གཙོ་རིམ་(ཡང་ན་ ཀླད་ཀོར་)ཚུ་གསལ་བཀོད་མ་འབད་བས།" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "འདྲ་མཛོད་ལུ་མཐུན་འགྱུར་མེན་པའི་འཐོན་རིམ་བཟོ་ནིའི་རིམ་ལུགས་ཅིག་འདུག" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "%s (ཐུམ་སྒྲིལ་གསརཔ་)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "%s (ལག་ལེན་འཐུམ་སྒྲིལ་ ༡་)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་འཐོན་ནུག" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "%s (ཡིག་སྣོད་འཐོན་རིམ་གསརཔ་ ༡)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "%s (ལག་ལེན་འཐུམ་སྒྲིལ་ ༢་)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་འཐོན་ནུག" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "%s (ཡིག་སྣོད་འཐོན་རིམ་གསརཔ་ ༡)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr " %s (འཐོན་རིམ་གསརཔ་ ༡་)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "%s (ལག་ལེན་ཐུམ་སྒྲིལ་ ༣་)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོབ་ཅིག་བྱུང་ནུག" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "%s (འཐོན་རིམ་གསརཔ་ ༢)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "%s (ཡིག་སྣོད་འཐོན་རིམ་གསརཔ་ ༡)བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐུམ་སྒྲིལ་ཨང་གྲངས་ལས་ལྷག་ནུག" -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐོན་རིམ་ཨང་གྲངས་ལས་ལྷག་ནུག" -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 #, fuzzy msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་ཐོན་རིམ་ཨང་གྲངས་ལས་ལྷག་ནུག" -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "པའོ་་་ཁྱོད་ཀྱིས་ ཨེ་པི་ཊི་འདི་གིས་བཟོད་ཐུབ་པའི་བརྟེན་པའི་ཨང་གྲངས་ལས་ལྷག་ནུག" -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "%s (པི་ཀེ་ཇི་འཚོལ་ནི)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "%s (CollectFileProvides)དེ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་འཛོལ་བ་ཅིག་བྱུང་ནུག" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "ཡིག་སྣོད་རྟེན་འབྲེལ་འདི་ཚུ་བཟོ་སྦྱོར་འབད་བའི་བསྒང་ཐུམ་སྒྲིལ་ %s %s ་འདི་མ་ཐོབ་པས།" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་གྱི་ཐོ་ཡིག་%s་དེ་ངོ་བཤུས་འབད་མ་ཚུགས།" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "ཡིག་སྣོད་བྱིན་མི་ཚུ་བསྡུ་ལེན་འབད་དོ།" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "IO འཛོལ་བ་འབྱུང་ཁུངས་འདྲ་མཛོད་སྲུང་བཞག་འབད་དོ།" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "%s (%s -> %s)བསྐྱར་མིང་བཏགས་ནི་འདི་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན།" -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "ཨེམ་ཌི་༥་ ཁྱོན་བསྡོམས་མ་མཐུན་པ།" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 #, fuzzy msgid "Hash Sum mismatch" msgstr "ཨེམ་ཌི་༥་ ཁྱོན་བསྡོམས་མ་མཐུན་པ།" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "འོག་གི་ ཨའི་ཌི་་ ལྡེ་མིག་ཚུ་གི་དོན་ལུ་མི་དམང་གི་ལྡེ་མིག་འདི་འཐོབ་མི་ཚུགས་པས:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2744,7 +2751,7 @@ msgstr "" " %s་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ང་་གི་ཡིག་སྣོད་ཅིག་ག་ཡོད་འཚོལ་མི་འཐོབ་པས། འདི་འབདཝ་ལས་ཁྱོད་ཀྱི་ལག་ཐོག་ལས་ " "འ་ནི་ཐུམ་སྒྲིལ་འདི་གི་དཀའ་ངལ་སེལ་དགོཔ་འདུག (arch འདི་བྱིག་སོངམ་ལས་བརྟེན།)" -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2753,26 +2760,24 @@ msgstr "" " %s་ཐུམ་སྒྲིལ་གི་དོན་ལུ་ང་་གི་ཡིག་སྣོད་ཅིག་ག་ཡོད་འཚོལ་མི་འཐོབ་པས། འདི་འབདཝ་ལས་ཁྱོད་ཀྱི་ལག་ཐོག་ལས་ " "འ་ནི་ཐུམ་སྒྲིལ་འདི་གི་དཀའ་ངལ་སེལ་དགོཔ་འདུག " -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "ཐུམ་སྒྲིལ་ ཟུར་ཐོ་ཡིག་སྣོད་ཚུ་ངན་ཅན་འགྱོ་ནུག ཡིག་སྣོད་ཀྱི་མིང་མིན་འདུག: %s་ཐུམ་སྒྲིལ་གྱི་དོན་ལུ་ས་སྒོ།" -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "ཚད་མ་མཐུན།" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "%s (༡་)་ཐུམ་སྒྲིལ་ཡིག་སྣོད་འདི་མིང་དཔྱད་འབད་མ་ཚུགས།" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "%s་གི་ཚབ་ལུ་%s་སེལ་འཐུ་འབད་ནི་སེམས་ཁར་བཞག\n" @@ -2786,7 +2791,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "%sསིལ་ཚོང་པ་སྡེབ་ཚན་གྱི་ནང་ན་མཛུབ་རྗེས་མིན་འདུག" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2795,65 +2800,65 @@ msgstr "" " %s སི་ཌི-རོམ་སྦྱར་བརྩེགས་ཀྱི་ས་ཚིགས་ལག་ལེན་འཐབ་དོ།\n" "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་འབད་དོ།\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "ངོས་འཛིན་འབད་དོ.." -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་ཁ་ཡིག:%s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 #, fuzzy msgid "Unmounting CD-ROM...\n" msgstr "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་མ་འབད་བར་བཞག་དོ..." -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr " %s སི་ཌི-རོམ་སྦྱར་བརྩེགས་ཀྱི་ས་ཚིགས་ལག་ལེན་འཐབ་དོ།\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "སི་ཌི་-རོམ་བརྩེགས་བཤོལ་འབད་དོ།\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "ཌིསིཀ་གི་དོན་ལུ་བསྒུག་དོ...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "སི་ཌི་-རོམ་སྦྱར་བརྩེགས་འབད་དོ...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "ཟུར་ཐོ་ཡིག་སྣོད་ཚུ་གི་དོན་ལུ་ ཌིསིཀ་ཞིབ་ལྟ་འབད་དོ..\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, fuzzy, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" "zu signatures\n" msgstr "%i་ཐུམ་སྒྲིལ་གྱི་ཟུར་ཐོ་ཚུ་ཐོབ་ཅི་ %i་འབྱུང་ཁུངས་ཟུར་ཐོ་ཚུ་དང་ %iམིང་རྟགས་ཚུ།\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, fuzzy, c-format msgid "Found label '%s'\n" msgstr "གསོག་འཇོག་འབད་ཡོད་པའི་ཁ་ཡིག:%s \n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "དེ་ནུས་ཅན་གྱི་མིང་ཅིག་མེན་པས་ ལོག་སྟེ་རང་འབད་རྩོལ་བསྐྱེད།\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2862,34 +2867,34 @@ msgstr "" "ཌིསིཀ་འདི་བོད་བརྡ་འབད་དོ་ཡོདཔ་ཨིན།\n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "ཐུམ་སྒྲིལ་གྱིཐོ་ཡིག་ཚུ་འདྲ་བཤུས་རྐྱབ་དོ..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "འབྱུང་ཁུངས་ཀྱི་ཐོ་ཡིག་གསརཔ་ཅིག་འབྲི་དོ།\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "འ་ནི་ ཌིསིཀ་གི་དོན་ལུ་ འབྱུང་ཁུངས་ཧྲིལ་བུ་ཚུ་:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "%i་དྲན་མཐོ་དེ་ཚུ་བྲིས་ཡོད།\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i བྱིག་འགྱོ་ཡོད་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i དྲན་ཐོ་འདི་ཚུ་བྲིས་ཡོད།\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i་མཐུན་སྒྲིག་མེདཔ་པའི་ཡིག་སྣོད་ཚུ་དང་གཅིག་ཁར་ %i་དྲན་ཐོ་ཚུ་བྲིས་བཞག་ཡོདཔ་ཨིན།\n" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -2978,7 +2983,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "ཐོ་བཀོད་འབད་ཡོད་པའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབ་མ་ཚུགས།" diff --git a/po/el.po b/po/el.po index 14bde3b79..189b7424f 100644 --- a/po/el.po +++ b/po/el.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_el\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -32,7 +32,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Το πακέτο %s με έκδοση %s έχει ανικανοποίητες εξαρτήσεις:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -102,7 +102,7 @@ msgstr "Σύνολο χώρου ασφαλείας: " msgid "Total space accounted for: " msgstr "Συνολικός Καταμετρημένος Χώρος: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Το αρχείο πακέτου %s δεν είναι ενημερωμένο." @@ -161,14 +161,14 @@ msgstr " Πίνακας Έκδοσης:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -245,16 +245,16 @@ msgstr "" " -o=? Χρήση μιας αυθαίρετη επιλογής ρυθμίσεων, πχ -o dir::cache=/tmp\n" "Δείτε τις σελίδες man του apt-cache(8) και apt.conf(5) για πληροφορίες.\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "" "Παρακαλώ δώστε ένα όνομα για τον δίσκο αυτό, όπως 'Debian 2.1r1 Disk 1'" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Παρακαλώ εισάγετε το δίσκο στη συσκευή και πατήστε enter" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Επαναλάβετε την διαδικασία για τα υπόλοιπα CD από το σετ σας." @@ -320,7 +320,7 @@ msgstr "" " -c=? Ανάγνωση αυτού του αρχείου ρυθμίσεων\n" " -o=? Καθορισμός αυθαίρετης επιλογής παραμέτρου, πχ -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Αδύνατη η εγγραφή στο %s" @@ -667,7 +667,7 @@ msgstr "Αποτυχία μετονομασίας του %s σε %s" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "σφάλμα μεταγλωτισμου - %s" @@ -768,124 +768,124 @@ msgstr "%lu θα αφαιρεθούν και %lu δεν αναβαθμίζοντ msgid "%lu not fully installed or removed.\n" msgstr "%lu μη πλήρως εγκατεστημένα ή αφαιρέθηκαν.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Διόρθωση εξαρτήσεων..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " απέτυχε." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Αδύνατη η διόρθωση των εξαρτήσεων" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Αδύνατη η ελαχιστοποίηση του συνόλου αναβαθμίσεων" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Ετοιμο" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "" "Ίσως να πρέπει να τρέξετε apt-get -f install για να διορθώσετε αυτά τα " "προβλήματα." -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Ανεπίλυτες εξαρτήσεις. Δοκιμάστε με το -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Τα ακόλουθα πακέτα δεν εξακριβώθηκαν!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Παράκαμψη προειδοποίησης ταυτοποίησης.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Εγκατάσταση των πακέτων χωρίς επαλήθευση [ν/Ο]; " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Μερικά πακέτα δεν εξαακριβώθηκαν" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "Υπάρχουν προβλήματα και δώσατε -y χωρίς το --force-yes" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Εσωτερικό σφάλμα, έγινε κλήση του Install Packages με σπασμένα πακέτα!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "" "Μερικά πακέτα πρέπει να αφαιρεθούν αλλά η Αφαίρεση είναι απενεργοποιημένη." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Εσωτερικό Σφάλμα, η Ταξινόμηση δεν ολοκληρώθηκε" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Αδύνατο το κλείδωμα του καταλόγου μεταφόρτωσης" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Αδύνατη η ανάγνωση της λίστας πηγών." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "Πολύ περίεργο! Τα μεγέθη δεν ταιριάζουν, στείλτε μήνυμα στο apt@packages." "debian.org" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Χρειάζεται να μεταφορτωθούν %sB/%sB από αρχεία.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Χρειάζεται να μεταφορτωθούν %sB από αρχεία.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" "Μετά από αυτή τη λειτουργία, θα χρησιμοποιηθούν %sB χώρου από το δίσκο.\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Μετά από αυτή τη λειτουργία, θα ελευθερωθούν %sB χώρου από το δίσκο.\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "Δεν μπόρεσα να προσδιορίσω τον ελεύθερο χώρο στο %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "Δεν διαθέτετε αρκετό ελεύθερο χώρο στο %s." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Καθορίσατε συνηθισμένο, αλλά αυτή δεν είναι μια συνηθισμένη εργασία" -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Ναι, κανε ότι λέω!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -896,28 +896,28 @@ msgstr "" "Για να συνεχίσετε πληκτρολογήστε τη φράση '%s'\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Εγκατάλειψη." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Θέλετε να συνεχίσετε [Ν/ο]; " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Αποτυχία ανάκτησης του %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Για μερικά αρχεία απέτυχε η μεταφόρτωση" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Ολοκληρώθηκε η μεταφόρτωση μόνο" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -925,49 +925,49 @@ msgstr "" "Αδύνατη η μεταφόρτωση μερικών αρχείων, ίσως αν δοκιμάζατε με apt-get update " "ή το --fix-missing;" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "" "ο συνδυασμός --fix-missing με εναλλαγή μέσων δεν υποστηρίζεται για την ώρα" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Αδύνατη η επίλυση των χαμένων πακέτων." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Εγκατάλειψη της εγκατάστασης." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Σημείωση, επιλέχθηκε το %s αντί του%s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "Παράκαμψη του %s, είναι εγκατεστημένο και η αναβάθμιση δεν έχει οριστεί.\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Το πακέτο %s δεν είναι εγκατεστημένο και δεν θα αφαιρεθεί\n" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Το πακέτο %s είναι εικονικό και παρέχεται από τα:\n" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Εγκατεστημένα]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Θα πρέπει επακριβώς να επιλέξετε ένα για εγκατάσταση." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -979,71 +979,76 @@ msgstr "" "Αυτό σημαίνει ότι το πακέτο αυτό λείπει, είναι παλαιωμένο, ή είναι διαθέσιμο " "από άλλη πηγή\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Πάραυτα το ακόλουθο πακέτο το αντικαθιστά:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Το πακέτο %s δεν είναι υποψήφιο για εγκατάσταση" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" "Η επανεγκατάσταση του %s δεν είναι εφικτή, δεν είναι δυνατή η μεταφόρτωσή " "του\n" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Η έκδοση %s για το %s δεν βρέθηκε" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Η έκδοση %s για το %s δεν βρέθηκε" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Επιλέχθηκε η έκδοση %s (%s) για το%s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Η εντολή update δεν παίρνει ορίσματα" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Αδύνατο το κλείδωμα του καταλόγου" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Δεν επιτρέπεται οποιαδήποτε διαγραφή· αδυναμία εκκίνησης του AutoRemover" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χρειάζονται πλέον:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "Τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χρειάζονται πλέον:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Χρησιμοποιήστε 'apt-get autoremove' για να τα διαγράψετε." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1061,43 +1066,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "Οι ακόλουθες πληροφορίες ίσως βοηθήσουν στην επίλυση του προβλήματος:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Εσωτερικό Σφάλμα, το AutoRemover δημιούργησε κάποιο πρόβλημα" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Εσωτερικό Σφάλμα, η διαδικασία αναβάθμισης χάλασε" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Αδύνατη η εύρεση του συνόλου πακέτων %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Αδύνατη η εύρεση του πακέτου %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Σημείωση, επιλέχτηκε το %s στη θέση του '%s'\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "το %s έχει εγκατασταθεί με το χέρι\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "Aν τρέξετε 'apt-get -f install' ίσως να διορθώσετε αυτά τα προβλήματα:" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1105,7 +1110,7 @@ msgstr "" "Ανεπίλυτες εξαρτήσεις. Δοκιμάστε 'apt-get -f install' χωρίς να ορίσετε " "πακέτο (ή καθορίστε μια λύση)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1117,120 +1122,120 @@ msgstr "" "διανομή, ότι μερικά από τα πακέτα δεν έχουν ακόμα δημιουργηθεί ή έχουν\n" "μετακινηθεί από τα εισερχόμενα." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Χαλασμένα πακέτα" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Τα ακόλουθα επιπλέον πακέτα θα εγκατασταθούν:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Προτεινόμενα πακέτα:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Συνιστώμενα πακέτα:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Υπολογισμός της αναβάθμισης... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Απέτυχε" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Ετοιμο" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "" "Εσωτερικό Σφάλμα, η προσπάθεια επίλυσης του προβλήματος \"έσπασε\" κάποιο " "υλικό" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "" "Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για να μεταφορτώσετε τον " "κωδικάτου" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "Αδυναμία εντοπισμού του κώδικά του πακέτου %s" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Παράκαμψη του ήδη μεταφορτωμένου αρχείου `%s`\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "Δεν διαθέτετε αρκετό ελεύθερο χώρο στο %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Χρειάζεται να μεταφορτωθούν %sB/%sB πηγαίου κώδικα.\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Χρειάζεται να μεταφορτωθούν %sB πηγαίου κώδικα.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Μεταφόρτωση Κωδικα %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Αποτυχία μεταφόρτωσης μερικών αρχειοθηκών." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Παράκαμψη της αποσυμπίεσης ήδη μεταφορτωμένου κώδικα στο %s\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Απέτυχε η εντολή αποσυμπίεσης %s\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Ελέγξτε αν είναι εγκαταστημένο το πακέτο 'dpkg-dev'.\n" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Απέτυχε η εντολή χτισίματος %s.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Η απογονική διεργασία απέτυχε" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "" "Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για έλεγχο των εξαρτήσεων του" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Αδύνατη η εύρεση πληροφοριών χτισίματος για το %s" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "το %s δεν έχει εξαρτήσεις χτισίματος.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1238,7 +1243,7 @@ msgid "" msgstr "" "%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το πακέτο %s δεν βρέθηκε" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1247,32 +1252,32 @@ msgstr "" "%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή δεν υπάρχουν διαθέσιμες " "εκδόσεις του πακέτου %s που να ικανοποιούν τις απαιτήσεις έκδοσης" -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2551 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Αποτυχία ικανοποίησης %s εξαρτήσεων για το %s: Το εγκατεστημένο πακέτο %s " "είναι νεώτερο" -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Αποτυχία ικανοποίησης %s εξάρτησης για το %s: %s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Οι εξαρτήσεις χτισίματος για το %s δεν ικανοποιούνται." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Αποτυχία επεξεργασίας εξαρτήσεων χτισίματος" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Υποστηριζόμενοι Οδηγοί:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1355,7 +1360,7 @@ msgstr "" "για περισσότερες πληροφορίες και επιλογές.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1596,9 +1601,13 @@ msgstr "Αντικατάσταση πακέτου χωρίς καμία έκδο msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Αδύνατη η ανάγνωση του %s" @@ -1628,9 +1637,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "Οι φάκελοι info και temp πρέπει να βρίσκονται στο ίδιο σύστημα αρχείων" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Ανάγνωση Λιστών Πακέτων" @@ -1734,12 +1743,12 @@ msgstr "Αποτυχία εντοπισμού ενός έγκυρου αρχεί msgid "Unparsable control file" msgstr "Μη αναλύσιμο αρχείο control" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Αδύνατη η ανάγνωση της βάσης δεδομένων του cdrom %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1747,20 +1756,20 @@ msgstr "" "Παρακαλώ χρησιμοποιείστε το apt-cdrom για να αναγνωριστεί αυτό το CD από το " "APT. Το apt-get update δε χρησιμεύει για να προσθέτει νέα CD" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Λάθος CD" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Αδυναμία απόσυναρμογής του CD-ROM στο %s, μπορεί να είναι σε χρήση." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Ο δίσκος δεν βρέθηκε." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Το αρχείο Δε Βρέθηκε" @@ -1778,34 +1787,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "Μη έγκυρο URI, τα τοπικά URI δεν πρέπει να αρχίζουν με //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Σύνδεση στο σύστημα" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Αδύνατος ο καθορισμός του ονόματος του ομότιμου (peer)" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Αδύνατος ο καθορισμός του τοπικού ονόματος" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Ο διακομιστής αρνήθηκε την σύνδεση με μήνυμα: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "Η εντολή USER απέτυχε, ο διακομιστής απάντησε: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "Η εντολή PASS απέτυχε, ο διακομιστής απάντησε: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1813,114 +1822,114 @@ msgstr "" "Ο διαμεσολαβητής έχει οριστεί αλλά χωρίς σενάριο εισόδου, το Acquire::ftp::" "ProxyLogin είναι άδειο" -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Η εντολή '%s' στο σενάριο εισόδου απέτυχε, ο διακομιστής απάντησε: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "Η εντολή TYPE απέτυχε, ο διακομιστής απάντησε: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Λήξη χρόνου σύνδεσης" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Ο διακομιστής έκλεισε την σύνδεση" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Σφάλμα ανάγνωσης" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Το μήνυμα απάντησης υπερχείλισε την ενδιάμεση μνήμη." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Αλλοίωση του πρωτοκόλλου" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Σφάλμα εγγραφής" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Αδύνατη η δημιουργία μιας υποδοχής (socket)" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Αδύνατη η σύνδεση υποδοχής δεδομένων, λήξη χρόνου σύνδεσης" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Αδύνατη η σύνδεση σε παθητική υποδοχή (socket)." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "Το getaddrinfo ήταν αδύνατο να δέσμευση υποδοχή παρακολούθησης" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Αδύνατη η πρόσδεση στην υποδοχή (socket)" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Αδύνατη η παρακολούθηση της υποδοχής (socket)" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Αδύνατος ο καθορισμός του ονόματος της υποδοχής (socket)" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Αδύνατη η αποστολή της εντολής PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Άγνωστη οικογένεια διευθύνσεων %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "Το EPRT απέτυχε, ο διακομιστής απάντησε: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Λήξη χρόνου σύνδεσης στην υποδοχή δεδομένων" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Αδύνατη η αποδοχή συνδέσεων" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Πρόβλημα κατά το hashing του αρχείου" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Αδυναμία λήψης του αρχείου, ο διακομιστής απάντησε '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Λήξη χρόνου υποδοχής δεδομένων" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Αποτυχία κατά τη μεταφορά δεδομένων, ο διακομιστής απάντησε '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Επερώτηση" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Αδύνατη η εκτέλεση" @@ -2034,95 +2043,95 @@ msgstr "Αδύνατο το άνοιγμα διασωλήνωσης για το msgid "Read error from %s process" msgstr "Σφάλμα ανάγνωσης από τη διεργασία %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Αναμονή επικεφαλίδων" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Λήψη μίας και μόνης γραμμής επικεφαλίδας πάνω από %u χαρακτήρες" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Ελαττωματική γραμμή επικεφαλίδας" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα απάντησης" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα Content-Length" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Ο διακομιστής http έστειλε μια άκυρη επικεφαλίδα Content-Range" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Ο διακομιστής http δεν υποστηρίζει πλήρως το range" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Άγνωστη μορφή ημερομηνίας" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Η επιλογή απέτυχε" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Λήξη χρόνου σύνδεσης" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Σφάλμα στην εγγραφή στο αρχείο εξόδου" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Σφάλμα στην εγγραφή στο αρχείο" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Σφάλμα στην εγγραφή στο αρχείο" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "" "Σφάλμα στην ανάγνωση από το διακομιστή, το άλλο άκρο έκλεισε τη σύνδεση" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Σφάλμα στην ανάγνωση από το διακομιστή" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 #, fuzzy msgid "Failed to truncate file" msgstr "Αποτυχία εγγραφής του αρχείου %s" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Ελαττωματικά δεδομένα επικεφαλίδας" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Η σύνδεση απέτυχε" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Εσωτερικό Σφάλμα" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Αδύνατη η απεικόνιση mmap ενός άδειου αρχείου" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Αδύνατη η απεικόνιση μέσω mmap %lu bytes" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2271,13 +2280,13 @@ msgstr "Μη έγκυρη λειτουργία %s" msgid "Unable to stat the mount point %s" msgstr "Αδύνατη η εύρεση της κατάστασης του σημείου επαφής %s" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Αδύνατη η αλλαγή σε %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Αδύνατη η εύρεση της κατάστασης του cdrom" @@ -2309,51 +2318,50 @@ msgstr "Αδύνατο το κλείδωμα %s" msgid "Waited for %s but it wasn't there" msgstr "Αναμονή του %s, αλλά δε βρισκόταν εκεί" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Η υποδιεργασία %s έλαβε ένα σφάλμα καταμερισμού (segfault)" -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Η υποδιεργασία %s έλαβε ένα σφάλμα καταμερισμού (segfault)" -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Η υποδιεργασία %s επέστρεψε ένα κωδικός σφάλματος (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Η υποδιεργασία %s εγκατέλειψε απρόσμενα" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Αδύνατο το άνοιγμα του αρχείου %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "αναγνώστηκαν, απομένουν ακόμη %lu για ανάγνωση αλλά δεν απομένουν άλλα" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "γράφτηκαν, απομένουν %lu για εγγραφή αλλά χωρίς επιτυχία" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Πρόβλημα κατά το κλείσιμο του αρχείου" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Πρόβλημα κατά την διαγραφή του αρχείου" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Πρόβλημα κατά τον συγχρονισμό του αρχείου" @@ -2446,16 +2454,16 @@ msgstr "Υποψήφιες Εκδόσεις" msgid "Dependency generation" msgstr "Παραγωγή Εξαρτήσεων" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Ανάγνωση περιγραφής της τρέχουσας κατάσταση" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Αποτυχία ανοίγματος του αρχείου κατάστασης %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Αποτυχία εγγραφής του αρχείου κατάστασης %s" @@ -2495,32 +2503,32 @@ msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγ msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Λάθος μορφή της γραμμής %lu στη λίστα πηγών %s (Ανάλυση dist)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Άνοιγμα του %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Η γραμμή %u έχει υπερβολικό μήκος στη λίστα πηγών %s." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Λάθος μορφή της γραμμής %u στη λίστα πηγών %s (τύπος)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Ο τύπος '%s' στη γραμμή %u στη λίστα πηγών %s είναι άγνωστος " -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Λάθος μορφή της γραμμής %u στη λίστα πηγών %s (id κατασκευαστή)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2545,7 +2553,7 @@ msgstr "" "Το πακέτο '%s' χρειάζεται να επανεγκατασταθεί, αλλά είναι αδύνατη η εύρεση " "κάποιας κατάλληλης αρχείοθήκης." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2553,11 +2561,11 @@ msgstr "" "Σφάλμα, το pkgProblemResolver::Resolve παρήγαγε διακοπές, αυτό ίσως " "προκλήθηκε από κρατούμενα πακέτα." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "Αδύνατη η διόρθωση προβλημάτων, έχετε κρατούμενα ελαττωματικά πακέτα." -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2577,12 +2585,12 @@ msgstr "Ο φάκελος αρχειοθηκών %spartial αγνοείται." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Κατέβασμα του αρχείου %li του %li (απομένουν %s)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Λήψη αρχείου %li του %li" @@ -2604,16 +2612,16 @@ msgstr "" "Παρακαλώ εισάγετε το δίσκο με ετικέτα '%s' στη συσκευή '%s' και πατήστε " "enter." -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Το σύστημα συσκευασίας '%s' δεν υποστηρίζεται" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Αδύνατος ο καθορισμός ενός κατάλληλου τύπου συστήματος πακέτων" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Αδύνατη η εύρεση της κατάστασης του %s." @@ -2632,137 +2640,136 @@ msgid "You may want to run apt-get update to correct these problems" msgstr "" "Ίσως να πρέπει να τρέξετε apt-get update για να διορθώσετε αυτά τα προβλήματα" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "Μη έγκυρη εγγραφή στο αρχείο προτιμήσεων, καμία επικεφαλίδα Package" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Αδύνατη η κατανόηση του τύπου καθήλωσης %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "" "Δεν έχει οριστεί προτεραιότητα (ή έχει οριστεί μηδενική) για την καθήλωση" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Η cache έχει ασύμβατο σύστημα απόδοσης έκδοσης" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Προέκευψε σφάλμα κατά την επεξεργασία του %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Προέκευψε σφάλμα κατά την επεξεργασία του %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Προέκευψε σφάλμα κατά την επεξεργασία του %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Εκπληκτικό, υπερβήκατε τον αριθμό των ονομάτων πακέτων που υποστηρίζει το " "APT." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Εκπληκτικό, υπερβήκατε τον αριθμό των εκδόσεων που υποστηρίζει το APT." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" "Εκπληκτικό, υπερβήκατε τον αριθμό των περιγραφών που υποστηρίζει το APT." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Εκπληκτικό, υπερβήκατε τον αριθμό των εξαρτήσεων που υποστηρίζει το APT." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Προέκυψε σφάλμα κατά την επεξεργασία του %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Το πακέτο %s %s δε βρέθηκε κατά την επεξεργασία εξαρτήσεων του αρχείου" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Αδύνατη η εύρεση της κατάστασης της λίστας πηγαίων πακέτων %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Συλλογή Παροχών Αρχείου" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "Σφάλμα IO κατά την αποθήκευση της cache πηγών" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "απέτυχε η μετονομασία, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "Ανόμοιο MD5Sum" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Ανόμοιο MD5Sum" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "Δεν υπάρχει διαθέσιμο δημόσιο κλειδί για τα ακολουθα κλειδιά:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2771,7 +2778,7 @@ msgstr "" "Αδύνατος ο εντοπισμός ενός αρχείου για το πακέτο %s. Αυτό ίσως σημαίνει ότι " "χρειάζεται να διορθώσετε χειροκίνητα το πακέτο. (λόγω χαμένου αρχείου)" -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2780,7 +2787,7 @@ msgstr "" "Αδύνατος ο εντοπισμός ενός αρχείου για το πακέτο %s. Αυτό ίσως σημαίνει ότι " "χρειάζεται να διορθώσετε χειροκίνητα το πακέτο." -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2788,19 +2795,17 @@ msgstr "" "Κατεστραμμένα αρχεία ευρετηρίου πακέτων. Δεν υπάρχει πεδίο Filename: στο " "πακέτο %s." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Ανόμοιο μέγεθος" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Αδύνατη η ανάλυση του αρχείου πακέτου %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Σημείωση, επιλέχθηκε το %s αντί του%s\n" @@ -2814,7 +2819,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Η εγγραφή κατασκευαστή %s δεν περιέχει ταυτότητα" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2823,42 +2828,42 @@ msgstr "" "Χρησιμοποιείται το σημείο προσάρτησης %s\n" "Προσαρτάται το CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Αναγνώριση..." -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Αποθήκευση Ετικέτας: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "Αποπροσάρτηση του CD-ROM...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Χρησιμοποιείται το σημείο προσάρτησης %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Αποπροσάρτηση του CD-ROM\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Αναμονή για δίσκο...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Προσάρτηση του CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Σάρωση του δίσκου για περιεχόμενα...\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2867,22 +2872,22 @@ msgstr "" "Βρέθηκαν %zu κατάλογοι πακέτων, %zu κατάλογοι πηγαίων, %zu κατάλογοι " "μεταφράσεων και %zu υπογραφές\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Εύρεση ετικέτας: %s \n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Αυτό δεν είναι έγκυρο όνομα, προσπαθείστε ξανά. \n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2891,34 +2896,34 @@ msgstr "" "Ο δίσκος αυτός ονομάζεται: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Αντιγραφή λιστών πακέτων..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Eγγραφή νέας λίστας πηγών\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Οι κατάλογοι με τις πηγές αυτού του δίσκου είναι: \n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Εγιναν %i εγγραφές.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Εγιναν %i εγγραφές με %i απώντα αρχεία.\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Εγιναν %i εγγραφές με %i ασύμβατα αρχεία.\n" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Εγιναν %i εγγραφές με %i απώντα αρχεία και %i ασύμβατα αρχεία\n" @@ -3007,7 +3012,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Αδύνατο το κλείδωμα του καταλόγου" diff --git a/po/en_GB.po b/po/en_GB.po index ed866bbb8..293312597 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+0200\n" "PO-Revision-Date: 2008-11-13 11:47+0000\n" "Last-Translator: Neil Williams <linux@codehelp.co.uk>\n" "Language-Team: en_GB <en_gb@li.org>\n" @@ -21,7 +21,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Package %s version %s has an unmet dep:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -91,7 +91,7 @@ msgstr "Total slack space: " msgid "Total space accounted for: " msgstr "Total space accounted for: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Package file %s is out of sync." @@ -149,14 +149,14 @@ msgstr " Version table:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s for %s compiled on %s %s\n" -#: cmdline/apt-cache.cc:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -230,15 +230,15 @@ msgstr "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "Please provide a name for this Disc, such as ‘Debian 2.1r1 Disk 1’" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Please insert a Disc in the drive and press enter" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Repeat this process for the rest of the CDs in your set." @@ -303,7 +303,7 @@ msgstr "" " -c=? Read this configuration file\n" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Unable to write to %s" @@ -646,7 +646,7 @@ msgstr "Failed to rename %s to %s" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Regex compilation error - %s" @@ -747,118 +747,118 @@ msgstr "%lu to remove and %lu not upgraded.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu not fully installed or removed.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Correcting dependencies..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " failed." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Unable to correct dependencies" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Unable to minimise the upgrade set" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr "Done" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "You might want to run ‘apt-get -f install’ to correct these." -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Unmet dependencies. Try using -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "WARNING: The following packages cannot be authenticated!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Authentication warning overridden.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Install these packages without verification [y/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Some packages could not be authenticated" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "There are problems and -y was used without --force-yes" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Internal error, InstallPackages was called with broken packages!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "Packages need to be removed but remove is disabled." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Internal error, Ordering didn't finish" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Unable to lock the download directory" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "The list of sources could not be read." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "How odd.. The sizes didn't match, email apt@packages.debian.org" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Need to get %sB/%sB of archives.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Need to get %sB of archives.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "After this operation, %sB of additional disk space will be used.\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "After this operation, %sB disk space will be freed.\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "Couldn't determine free space in %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "You don't have enough free space in %s." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Trivial Only specified but this is not a trivial operation." -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Yes, do as I say!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -869,28 +869,28 @@ msgstr "" "To continue type in the phrase ‘%s’\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Abort." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Do you want to continue [Y/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Failed to fetch %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Some files failed to download" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Download complete and in download only mode" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -898,47 +898,47 @@ msgstr "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing and media swapping is not currently supported" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Unable to correct missing packages." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Aborting install." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Note, selecting %s instead of %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "Skipping %s, it is already installed and upgrade is not set.\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Package %s is not installed, so not removed\n" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Package %s is a virtual package provided by:\n" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Installed]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "You should explicitly select one to install." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -949,58 +949,58 @@ msgstr "" "This may mean that the package is missing, has been obsoleted, or\n" "is only available from another source\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "However the following packages replace it:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Package %s has no installation candidate" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Reinstallation of %s is not possible, it cannot be downloaded.\n" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s is already the newest version.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Release ‘%s’ for ‘%s’ was not found" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Version ‘%s’ for ‘%s’ was not found" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Selected version %s (%s) for %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "The update command takes no arguments" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Unable to lock the list directory" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "We are not supposed to delete stuff, cannot start AutoRemover" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1008,11 +1008,18 @@ msgstr "" "The following packages were automatically installed and are no longer " "required:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"The following packages were automatically installed and are no longer " +"required:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Use 'apt-get autoremove' to remove them." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1030,43 +1037,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "The following information may help to resolve the situation:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Internal Error, AutoRemoved broke stuff" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Internal error, AllUpgrade broke stuff" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Couldn't find task %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Couldn't find package %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Note, selecting %s for regex ‘%s’\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s set to manually installed.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "You might want to run 'apt-get -f install' to correct these:" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1074,7 +1081,7 @@ msgstr "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1086,116 +1093,116 @@ msgstr "" "distribution that some required packages have not yet been created\n" "or been moved out of Incoming." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Broken packages" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "The following extra packages will be installed:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Suggested packages:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Recommended packages:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Calculating upgrade... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Failed" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Done" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Internal error, problem resolver broke stuff" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "Must specify at least one package for which to fetch source" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "Unable to find a source package for %s" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Skipping already downloaded file '%s'\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "You don't have enough free space in %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Need to get %sB/%sB of source archives.\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Need to get %sB of source archives.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Fetch source %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Failed to fetch some archives." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Skipping unpack of already unpacked source in %s\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Unpack command ‘%s’ failed.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Check if the 'dpkg-dev' package is installed.\n" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Build command ‘%s’ failed.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Child process failed" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "" "Must specify at least one package for which you want to check builddeps" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Unable to get build-dependency information for %s" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s has no build depends.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1204,7 +1211,7 @@ msgstr "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1213,31 +1220,31 @@ msgstr "" "%s dependency for %s cannot be satisfied because no available versions of " "package %s can satisfy version requirements" -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2551 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Failed to satisfy %s dependency for %s: Installed package %s is too new" -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Failed to satisfy %s dependency for %s: %s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Build-dependencies for %s could not be satisfied." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Failed to process build dependencies" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Supported modules:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1322,7 +1329,7 @@ msgstr "" "pages for more information and options.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1559,9 +1566,13 @@ msgstr "Overwrite package match with no version for %s" msgid "File %s/%s overwrites the one in the package %s" msgstr "File %s/%s overwrites the one in the package %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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Unable to read %s" @@ -1591,9 +1602,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "The info and temp directories need to be on the same filesystem" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Reading package lists" @@ -1696,12 +1707,12 @@ msgstr "Failed to locate a valid control file" msgid "Unparsable control file" msgstr "Unparsable control file" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Unable to read the cdrom database %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1709,20 +1720,20 @@ msgstr "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Wrong CD-ROM" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Unable to unmount the CD-ROM in %s, it may still be in use." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Disk not found." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "File not found" @@ -1740,34 +1751,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "Invalid URI, local URIS must not start with //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Logging in" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Unable to determine the peer name" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Unable to determine the local name" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "The server refused the connection and said: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER failed, server said: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS failed, server said: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1775,114 +1786,114 @@ msgstr "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Login script command ‘%s’ failed, server said: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE failed, server said: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Connection timeout" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Server closed the connection" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Read error" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "A response overflowed the buffer." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Protocol corruption" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Write error" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Could not create a socket" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Could not connect data socket, connection timed out" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Could not connect, passive socket." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo was unable to get a listening socket" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Could not bind a socket" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Could not listen on the socket" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Could not determine the name of the socket" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Unable to send PORT command" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Unknown address family %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT failed, server said: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Data socket connect timed out" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Unable to accept connection" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Problem hashing file" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Unable to fetch file, server said ‘%s’" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Data socket timed out" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Data transfer failed, server said ‘%s’" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Query" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Unable to invoke" @@ -1993,93 +2004,93 @@ msgstr "Couldn't open pipe for %s" msgid "Read error from %s process" msgstr "Read error from %s process" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Waiting for headers" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Got a single header line over %u chars" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Bad header line" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "The HTTP server sent an invalid reply header" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "The HTTP server sent an invalid Content-Length header" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "The HTTP server sent an invalid Content-Range header" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "This HTTP server has broken range support" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Unknown date format" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Select failed" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Connection timed out" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Error writing to output file" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Error writing to file" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Error writing to the file" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "Error reading from server. Remote end closed connection" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Error reading from server" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Failed to truncate file" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Bad header data" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Connection failed" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Internal error" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Cannot mmap an empty file" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Couldn't make mmap of %lu bytes" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2226,13 +2237,13 @@ msgstr "Invalid operation %s" msgid "Unable to stat the mount point %s" msgstr "Unable to stat the mount point %s" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Unable to change to %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Failed to stat the cdrom" @@ -2261,51 +2272,50 @@ msgstr "Could not get lock %s" msgid "Waited for %s but it wasn't there" msgstr "Waited for %s but it wasn't there" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Sub-process %s received a segmentation fault." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Sub-process %s received a segmentation fault." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Sub-process %s returned an error code (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Sub-process %s exited unexpectedly" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Could not open file %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "read, still have %lu to read but none left" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "write, still have %lu to write but couldn't" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Problem closing the file" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Problem unlinking the file" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Problem syncing the file" @@ -2398,16 +2408,16 @@ msgstr "Candidate versions" msgid "Dependency generation" msgstr "Dependency generation" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Reading state information" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Failed to open StateFile %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Failed to write temporary StateFile %s" @@ -2447,32 +2457,32 @@ msgstr "Malformed line %lu in source list %s (absolute dist)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Malformed line %lu in source list %s (dist parse)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Opening %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Line %u too long in source list %s." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Malformed line %u in source list %s (type)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Type ‘%s’ is not known on line %u in source list %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Malformed line %u in source list %s (vendor id)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2495,7 +2505,7 @@ msgid "" msgstr "" "The package %s needs to be reinstalled, but I can't find an archive for it." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2503,11 +2513,11 @@ msgstr "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "Unable to correct problems, you have held broken packages." -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2527,12 +2537,12 @@ msgstr "Archive directory %spartial is missing." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Retrieving file %li of %li (%s remaining)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Retrieving file %li of %li" @@ -2553,16 +2563,16 @@ msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Packaging system ‘%s’ is not supported" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Unable to determine a suitable packaging system type" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Unable to stat %s." @@ -2579,132 +2589,131 @@ msgstr "The package lists or status file could not be parsed or opened." msgid "You may want to run apt-get update to correct these problems" msgstr "You may want to run apt-get update to correct these problems" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "Invalid record in the preferences file, no Package header" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Did not understand pin type %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "No priority (or zero) specified for pin" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Cache has an incompatible versioning system" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Error occurred while processing %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Error occurred while processing %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Error occurred while processing %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Error occurred while processing %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Error occurred while processing %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Error occurred while processing %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Error occurred while processing %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Error occurred while processing %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Error occurred while processing %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "Wow, you exceeded the number of package names this APT can handle.." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Wow, you exceeded the number of versions this APT can handle." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "Wow, you exceeded the number of descriptions this APT can handle." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Wow, you exceeded the number of dependencies this APT can handle." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Error occurred while processing %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Error occurred while processing %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Package %s %s was not found while processing file dependencies" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Couldn't stat source package list %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Collecting File Provides" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "IO Error saving source cache" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "rename failed, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5Sum mismatch" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Hash Sum mismatch" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "There is no public key available for the following key IDs:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2713,7 +2722,7 @@ msgstr "" "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)" -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2722,26 +2731,24 @@ msgstr "" "I wasn't able to locate file for the %s package. This might mean you need to " "manually fix this package." -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "The package index files are corrupted. No Filename: field for package %s." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Size mismatch" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Unable to parse package file %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Note, selecting %s instead of %s\n" @@ -2755,7 +2762,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Vendor block %s contains no fingerprint" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2764,42 +2771,42 @@ msgstr "" "Using CD-ROM mount point %s\n" "Mounting CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Identifying.. " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Stored label: %s\n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "Unmounting CD-ROM...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Using CD-ROM mount point %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Unmounting CD-ROM\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Waiting for disc...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Mounting CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Scanning disc for index files..\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2808,22 +2815,22 @@ msgstr "" "Found %zu package indices, %zu source indices, %zu translation indices and %" "zu signatures\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Found label: %s\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "That is not a valid name, try again.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2832,34 +2839,34 @@ msgstr "" "This disc is called: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Copying package lists..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Writing new source list\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Source list entries for this disc are:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Wrote %i records.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Wrote %i records with %i missing files.\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Wrote %i records with %i mismatched files\n" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Wrote %i records with %i missing files and %i mismatched files\n" @@ -2946,7 +2953,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Unable to lock the list directory" diff --git a/po/es.po b/po/es.po index 6b789781d..fe9de20fc 100644 --- a/po/es.po +++ b/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -23,7 +23,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "El paquete %s versin %s tiene dependencias incumplidas:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -94,7 +94,7 @@ msgstr "Espacio desperdiciado total: " msgid "Total space accounted for: " msgstr "Espacio registrado total: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "El archivo de paquetes %s est desincronizado." @@ -153,14 +153,14 @@ msgstr " Tabla de versi msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -237,16 +237,16 @@ msgstr "" "cache=/tmp\n" "Vea las pginas del manual apt-cache(8) y apt.conf(5) para ms informacin.\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "" "Por favor provea un nombre para este disco, como 'Debian 2.1r1 Disco 1'" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Por favor inserte un disco en la unidad y presione Intro" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Repita este proceso para el resto de los CDs del conjunto." @@ -313,7 +313,7 @@ msgstr "" " -o=? Establece una opcin de configuracin arbitraria, p. ej. -o dir::" "cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "No se puede escribir en %s" @@ -661,7 +661,7 @@ msgstr "Fall msgid "Y" msgstr "S" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Error de compilacin de expresiones regulares - %s" @@ -762,121 +762,121 @@ msgstr "%lu para eliminar y %lu no actualizados.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu no instalados del todo o eliminados.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Corrigiendo dependencias..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " fall." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "No se puede corregir las dependencias" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "No se puede minimizar el conjunto de actualizacin" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Listo" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Dependencias incumplidas. Pruebe de nuevo usando -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVISO: No se han podido autenticar los siguientes paquetes!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Aviso de autenticacin ignorado.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Instalar estos paquetes sin verificacin [s/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Algunos paquetes no se pueden autenticar" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Error interno, InstallPackages fue llamado con un paquete roto!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "Los paquetes necesitan eliminarse pero Remove est deshabilitado." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Error interno, no termin el ordenamiento" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "No se puede bloquear el directorio de descarga" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "No se pudieron leer las listas de fuentes." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "Que raro.. Los tamaos no concuerdan, mande un correo a \n" "apt@packages.debian.org" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Se necesita descargar %sB/%sB de archivos.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Necesito descargar %sB de archivos.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" "Se utilizarn %sB de espacio de disco adicional despus de esta operacin.\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Se liberarn %sB despus de esta operacin.\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "No pude determinar el espacio libre en %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "No tiene suficiente espacio libre en %s." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Se especific Trivial Only pero sta no es una operacin trivial." -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "S, haga lo que le digo!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -887,28 +887,28 @@ msgstr "" "Para continuar escriba la frase %s\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Abortado." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Desea continuar [S/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Imposible obtener %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Algunos archivos no pudieron descargarse" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Descarga completa y en modo de slo descarga" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -916,47 +916,47 @@ msgstr "" "No se pudieron obtener algunos archivos, quizs deba ejecutar\n" "apt-get update o deba intentarlo de nuevo con --fix-missing?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "Actualmente no estn soportados --fix-missing e intercambio de medio" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "No se pudieron corregir los paquetes que faltan." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Abortando la instalacin." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Nota, seleccionando %s en lugar de %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "Ignorando %s, ya esta instalado y la actualizacin no esta activada.\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Instalado]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Necesita seleccionar explcitamente uno para instalar." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -967,59 +967,59 @@ msgstr "" "a l. Esto puede significar que el paquete falta, est obsoleto o slo se\n" "encuentra disponible desde alguna otra fuente\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Sin embargo, los siguientes paquetes lo reemplazan:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "El paquete %s no tiene candidato para su instalacin" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ya est en su versin ms reciente.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "No se encontr la Distribucin '%s' para '%s'" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "No se encontr la versin '%s' para '%s'" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Versin seleccionada %s (%s) para %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "El comando de actualizacin no toma argumentos" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "No se pudo bloquear el directorio de listas" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 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:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1027,11 +1027,18 @@ msgstr "" "Se instalaron de forma automtica los siguientes paquetes y ya no son " "necesarios." -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"Se instalaron de forma automtica los siguientes paquetes y ya no son " +"necesarios." + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Utilice apt-get autoremove para eliminarlos." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1049,43 +1056,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "La siguiente informacin puede ayudar a resolver la situacin:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Error interno, AutoRemover rompi cosas" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Error Interno, AllUpgrade rompi cosas" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "No se pudo encontrar la tarea %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "No se pudo encontrar el paquete %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Nota, seleccionando %s para la expresin regular '%s'\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "fijado %s como instalado manualmente.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1093,7 +1100,7 @@ msgstr "" "Dependencias incumplidas. Intente 'apt-get -f install' sin paquetes (o " "especifique una solucin)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1105,119 +1112,119 @@ msgstr "" "inestable, que algunos paquetes necesarios no han sido creados o han\n" "sido movidos fuera de Incoming." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Paquetes rotos" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Se instalarn los siguientes paquetes extras:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Paquetes sugeridos:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Paquetes recomendados" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Calculando la actualizacin... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Fall" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Listo" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "" "Error interno, el sistema de solucin de problemas rompi\n" "algunas cosas" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "Debe especificar al menos un paquete para obtener su cdigo fuente" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, 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:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Ignorando fichero ya descargado '%s'\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "No tiene suficiente espacio libre en %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, 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:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Necesito descargar %sB de archivos fuente.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Fuente obtenida %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "No se pudieron obtener algunos archivos." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Fall la orden de desempaquetamiento '%s'.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, 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:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Fall la orden de construccin '%s'.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Fall el proceso hijo" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "" "Debe especificar al menos un paquete para verificar sus\n" "dependencias de construccin" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "No se pudo obtener informacin de dependencias de construccin para %s" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s no tiene dependencias de construccin.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1226,7 +1233,7 @@ msgstr "" "La dependencia %s en %s no puede satisfacerse porque no se puede \n" "encontrar el paquete %s" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1235,32 +1242,32 @@ msgstr "" "La dependencia %s en %s no puede satisfacerse porque ninguna versin\n" "disponible del paquete %s satisface los requisitos de versin" -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, 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:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "No se pudieron satisfacer las dependencias de construccin de %s." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "No se pudieron procesar las dependencias de construccin" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Mdulos soportados:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1346,7 +1353,7 @@ msgstr "" "para ms informacin y opciones.\n" " Este APT tiene poderes de Super Vaca.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1589,9 +1596,13 @@ msgstr "Sobreescribiendo concordancia del paquete sin versi msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "No pude leer %s" @@ -1622,9 +1633,9 @@ msgstr "" "Los directorios info y temp deben de estar en el mismo sistema de archivos" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Leyendo lista de paquetes" @@ -1727,12 +1738,12 @@ msgstr "No pude localizar un archivo de control v msgid "Unparsable control file" msgstr "Archivo de control inanalizable" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "No pude leer la base de datos %s del cdrom" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1740,20 +1751,20 @@ msgstr "" "Por favor utilice apt-cdrom para hacer que APT reconozca este CD.\n" "apt-get update no se puede usar para agregar nuevos CDs" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "CD equivocado" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "No pude desmontar el CD-ROM de %s, tal vez todava este en uso." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Disco no encontrado." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Fichero no encontrado" @@ -1771,34 +1782,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "URI invlido, los URIS locales no deben de empezar con //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Entrando" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "No pude determinar el nombre del par" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Imposible determinar el nombre local" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "El servidor rechaz nuestra conexin y dijo: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "Usuario (USER) fall, el servidor dijo: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "Clave (PASS) fall, el servidor dijo: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1806,114 +1817,114 @@ msgstr "" "Se especific un servidor proxy pero no un script de entrada,\n" "Acquire::ftp::ProxyLogin est vaco." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Fall la orden '%s' del script de entrada, el servidor dijo: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "Tipo (TYPE) fall, el servidor dijo: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "La conexin expir" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "El servidor cerr la conexin" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Error de lectura" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Una respuesta desbord el buffer." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Corrupcin del protocolo" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Error de escritura" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "No pude crear un socket" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "No pude conectar el socket de datos, expir el tiempo de conexin" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "No pude conectar un socket pasivo." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo no pude obtener un socket oyente" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "No pude ligar un socket" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "No pude escuchar en el socket" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "No pude determinar el nombre del socket" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "No pude mandar la orden PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Direccin de familia %u desconocida (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT fall, el servidor dijo: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Expir conexin a socket de datos" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "No pude aceptar la conexin" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Hay problemas enlazando fichero" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Imposible traer archivo, el servidor dijo '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Expir el socket de datos" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Fall transferencia de datos, el servidor dijo '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Consulta" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "No pude invocar " @@ -2026,93 +2037,93 @@ msgstr "No pude abrir una tuber msgid "Read error from %s process" msgstr "Error de lectura de %s procesos" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Esperando las cabeceras" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Obtuve una sola lnea de cabecera arriba de %u caracteres" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Mala lnea de cabecera" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "El servidor de http envi una cabecera de respuesta invlida" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "El servidor de http envi una cabecera de Content-Length invlida" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "El servidor de http envi una cabecera de Content-Range invlida" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "ste servidor de http tiene el soporte de alcance roto" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Formato de fecha desconocido" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Fall la seleccin" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Expir la conexin" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Error escribiendo al archivo de salida" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Error escribiendo a archivo" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Error escribiendo al archivo" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "Error leyendo del servidor, el lado remoto cerr la conexin." -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Error leyendo del servidor" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Fall al truncar el archivo" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Mala cabecera Data" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Fallo la conexin" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Error interno" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "No puedo hacer mmap de un fichero vaco" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "No pude hacer mmap de %lu bytes" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2263,13 +2274,13 @@ msgstr "Operaci msgid "Unable to stat the mount point %s" msgstr "No se puede obtener informacin del punto de montaje %s" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "No se pudo cambiar a %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "No pude montar el cdrom" @@ -2298,51 +2309,50 @@ msgstr "No se pudo bloquear %s" msgid "Waited for %s but it wasn't there" msgstr "Esperaba %s pero no estaba all" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "El subproceso %s recibi un fallo de segmentacin." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "El subproceso %s recibi un fallo de segmentacin." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "El subproceso %s devolvi un cdigo de error (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "El subproceso %s termin de forma inesperada" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "No pude abrir el fichero %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "ledos, todava deba leer %lu pero no queda nada" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "escritos, todava tena que escribir %lu pero no pude hacerlo" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Problemas cerrando el archivo" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Hay problemas desligando el fichero %s" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Hay problemas sincronizando el fichero" @@ -2435,16 +2445,16 @@ msgstr "Versiones candidatas" msgid "Dependency generation" msgstr "Generacin de dependencias" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Leyendo la informacin de estado" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "No se pudo abrir el fichero de estado %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Fall la escritura del fichero de estado temporal %s" @@ -2484,32 +2494,32 @@ msgstr "L msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Lnea %lu mal formada en lista de fuentes %s (anlisis de dist)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Abriendo %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Lnea %u demasiado larga en la lista de fuentes %s." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Lnea %u mal formada en lista de fuentes %s (tipo)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Tipo '%s' desconocido en la lnea %u de lista de fuentes %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Lnea %u mal formada en la lista de fuentes %s (id del fabricante)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2534,7 +2544,7 @@ msgstr "" "El paquete %s necesita ser reinstalado, pero no se encuentra un archivo para " "ste." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2542,13 +2552,13 @@ msgstr "" "Error, pkgProblemResolver::Resolve gener cortes, esto puede haber sido " "causado por paquetes retenidos." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 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:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2568,12 +2578,12 @@ msgstr "Falta el directorio de archivos %spartial." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Descargando fichero %li de %li (falta %s)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Descargando fichero %li de %li" @@ -2593,16 +2603,16 @@ msgstr "El m 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:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "El sistema de paquetes '%s' no est soportado" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "No se pudo determinar un tipo de sistema de paquetes adecuado" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "No se pudo leer %s." @@ -2621,141 +2631,140 @@ 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:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "" "Registro invlido en el archivo de preferencias, no hay cabecera de paquete" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "No se entiende el pin tipo %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "No hay prioridad especificada para pin (o es cero)" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "La cach tiene una versin incompatible de sistema de versiones" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Ocurri un error mientras se procesaba %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Ocurri un error mientras se procesaba %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Ocurri un error mientras se procesaba %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Ocurri un error mientras se procesaba %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Ocurri un error mientras se procesaba %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Ocurri un error mientras se procesaba %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Ocurri un error mientras se procesaba %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Ocurri un error mientras se procesaba %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Ocurri un error mientras se procesaba %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Vaya, excedi el nmero de nombres de paquetes que este APT es capaz de " "manejar." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Vaya, excedi el nmero de versiones que este APT es capaz de manejar." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" "Vaya, excedi el nmero de descripciones que este APT es capaz de manejar." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Vaya, excedi el nmero de dependencias que este APT es capaz de manejar." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Ocurri un error mientras procesaba %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Ocurri un error mientras procesaba %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Al procesar las dependencias de archivos no se encontr el\n" "paquete %s %s" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "No se puede leer la lista de paquetes fuente %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Recogiendo archivos que proveen" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "Error de E/S guardando cach fuente" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "fall el cambio de nombre, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "La suma MD5 difiere" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "La suma hash difiere" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "" "No existe ninguna clave pblica disponible para los siguientes " "identificadores de clave:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2765,7 +2774,7 @@ msgstr "" "que necesita arreglar manualmente este paquete (debido a que falta una " "arquitectura)" -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2774,7 +2783,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:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2782,19 +2791,17 @@ msgstr "" "Los archivos de ndice de paquetes estn corrompidos. El campo 'Filename:' " "no existe para para el paquete %s." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "El tamao difiere" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "No se pudo tratar el archivo de paquetes %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Nota, seleccionando %s en lugar de %s\n" @@ -2808,7 +2815,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Bloque de fabricante %s sin huella digital" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2817,42 +2824,42 @@ msgstr "" "Usando el punto de montaje del CD-ROM %s\n" "Montando el CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Identificando.. " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Etiqueta guardada: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "Desmontando el CD-ROM...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Usando el punto de montaje del CD-ROM %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Desmontando el CD-ROM\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Esperando el disco...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Montando el CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Buscando en el disco archivos de ndices...\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2861,10 +2868,8 @@ msgstr "" "Se encontraron %zu ndices de paquetes, %zu ndices de fuentes, %zu ndices " "de traduccin y %zu firmas\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 #, fuzzy -#| msgid "" -#| "Unable to locate any package files, perhaps this is not a Debian Disc" msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" @@ -2872,16 +2877,16 @@ msgstr "" "No pude localizar ningn archivo de paquete, tal vez este no es un disco de " "Debian" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Se encontr la etiqueta: '%s'\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Ese no es un nombre vlido, intntelo de nuevo.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2890,34 +2895,34 @@ msgstr "" "Este disco se llama: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Copiando las listas de paquetes..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Escribiendo nueva lista de fuente\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 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:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "%i registros escritos.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, 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:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -3007,7 +3012,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "No se pudo bloquear el directorio de listas" diff --git a/po/eu.po b/po/eu.po index f0ebe26bd..35c1d1423 100644 --- a/po/eu.po +++ b/po/eu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_eu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -23,7 +23,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "%s paketeak (%s bertsioa) mendekotasun arazo bat du:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -93,7 +93,7 @@ msgstr "Guztira galdutako tokia:" msgid "Total space accounted for: " msgstr "Guztira erregistratutako lekua: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "%s pakete fitxategia ez dago sinkronizatuta." @@ -153,14 +153,14 @@ msgstr " Bertsio taula:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -233,16 +233,16 @@ msgstr "" " -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/tmp\n" "Informazio gehiago nahi izanez gero: ikus apt-cache(8) eta apt.conf(5).\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "" "Mesedez idatzi izen bat diska honentzat, 'Debian 2.1r1 1 Diska' antzerakoan" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Mesedez sar diska bat gailuan eta enter sakatu" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Prozesu hau bildumako beste CD guztiekin errepikatu." @@ -307,7 +307,7 @@ msgstr "" " -c=? Irakurri konfigurazio fitxategi hau\n" " -o=? Ezarri konfigurazio aukera arbitrario bat. Adib.: -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "%s : ezin da idatzi" @@ -649,7 +649,7 @@ msgstr "Huts egin du %s izenaren ordez %s ipintzean" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Adierazpen erregularren konpilazio errorea - %s" @@ -750,120 +750,120 @@ msgstr "%lu kentzeko, eta %lu bertsio-berritu gabe.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu ez erabat instalatuta edo kenduta.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Mendekotasunak zuzentzen..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " : huts egin du." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Ezin dira mendekotasunak zuzendu" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Ezin da bertsio berritzeko multzoa minimizatu" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Eginda" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Bete gabeko mendekotasunak. Probatu -f erabiliz." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "KONTUZ: Hurrengo paketeak ezin dira egiaztatu!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Egiaztapen abisua gainidazten.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Paketeak egiaztapen gabe instalatu [b/E]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Zenbait pakete ezin dira egiaztatu" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Barne errorea, InstallPackages apurturiko paketeez deitu da!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "Paketeak ezabatu beharra dute baina Ezabatzea ezgaiturik dago." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Barne errorea, ez da ordenatzeaz amaitu" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Ezin da deskarga direktorioa blokeatu" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Ezin izan da Iturburu zerrenda irakurri." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 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:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Artxiboetako %sB/%sB eskuratu behar dira.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Artxiboetako %sB eskuratu behar dira.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "Ezin da %s(e)n duzun leku librea atzeman." -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, 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:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Bai, egin esandakoa!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -874,28 +874,28 @@ msgstr "" "Jarraitzeko, idatzi '%s' esaldia\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Abortatu." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Aurrera jarraitu nahi al duzu [B/e]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ezin da lortu %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Fitxategi batzuk ezin izan dira deskargatu" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Deskarga amaituta eta deskarga soileko moduan" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -903,47 +903,47 @@ msgstr "" "Ezin izan dira artxibo batzuk lortu; beharbada apt-get update exekutatu, edo " "--fix-missing aukerarekin saiatu?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing eta euskarri aldaketa ez dira onartzen oraingoz" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Falta diren paketeak ezin dira zuzendu." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Abortatu instalazioa." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Oharra, %s hautatzen %s(r)en ordez\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, 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:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Instalatuta]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Zehazki bat hautatu behar duzu instalatzeko." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -954,58 +954,58 @@ 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:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Baina ondorengo paketeek ordezten dute:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "%s paketeak ez du instalatzeko hautagairik" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s bertsiorik berriena da jada.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "'%2$s'(r)en '%1$s' banaketa ez da aurkitu" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "'%2$s'(r)en '%1$s' bertsioa ez da aurkitu" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Hautatutako bertsioa: %s (%s) -- %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Eguneratzeko komandoak ez du argumenturik hartzen" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Ezin da zerrenda direktorioa blokeatu" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 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:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1013,11 +1013,18 @@ msgstr "" "Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " "behar." -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " +"behar." + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "'apt-get autoremove' erabili ezabatzeko." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1035,43 +1042,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "Informazio honek arazoa konpontzen lagun dezake:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Barne Errorea, AutoRemover-ek zerbait apurtu du" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Barne Errorea, AllUpgade-k zerbait apurtu du" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Ezin izan da %s zeregina aurkitu" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Ezin izan da %s paketea aurkitu" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Oharra: %s hautatzen '%s' adierazpen erregularrarentzat\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s eskuz instalatua bezala ezarri.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1079,7 +1086,7 @@ msgstr "" "Bete gabeko mendekotasunak. Probatu 'apt-get -f install' paketerik gabe (edo " "zehaztu konponbide bat)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1091,117 +1098,117 @@ msgstr "" "beharrezko pakete batzuk ez ziren sortuko oraindik, edo \n" "Sarrerakoetan (Incoming) egoten jarraituko dute." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Hautsitako paketeak" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Ondorengo pakete gehigarriak instalatuko dira:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Iradokitako paketeak:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Gomendatutako paketeak:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Berriketak kalkulatzen... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Huts egin du" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Eginda" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Barne Errorea, arazo konpontzaileak zerbait apurtu du" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "Gutxienez pakete bat zehaztu behar duzu iturburua lortzeko" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "Ezin da iturburu paketerik aurkitu %s(r)entzat" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Dagoeneko deskargaturiko '%s' fitxategia saltatzen\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, 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:2192 +#: cmdline/apt-get.cc:2229 #, 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:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Iturburu artxiboetako %sB eskuratu behar dira.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Eskuratu %s iturburua\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Huts egin du zenbat artxibo lortzean." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Deskonprimitzeko '%s' komandoak huts egin du.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Eraikitzeko '%s' komandoak huts egin du.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Prozesu umeak huts egin du" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 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:2353 +#: cmdline/apt-get.cc:2390 #, 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:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s: ez du eraikitze mendekotasunik.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1209,7 +1216,7 @@ msgid "" msgstr "" "%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1218,74 +1225,33 @@ 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:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, 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:2555 +#: cmdline/apt-get.cc:2594 #, 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:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Huts egin du eraikitze mendekotasunak prozesatzean" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Onartutako Moduluak:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy -#| msgid "" -#| "Usage: apt-get [options] command\n" -#| " apt-get [options] install|remove pkg1 [pkg2 ...]\n" -#| " apt-get [options] source pkg1 [pkg2 ...]\n" -#| "\n" -#| "apt-get is a simple command line interface for downloading and\n" -#| "installing packages. The most frequently used commands are update\n" -#| "and install.\n" -#| "\n" -#| "Commands:\n" -#| " update - Retrieve new lists of packages\n" -#| " upgrade - Perform an upgrade\n" -#| " install - Install new packages (pkg is libc6 not libc6.deb)\n" -#| " remove - Remove packages\n" -#| " autoremove - Remove automatically all unused packages\n" -#| " purge - Remove and purge packages\n" -#| " source - Download source archives\n" -#| " build-dep - Configure build-dependencies for source packages\n" -#| " dist-upgrade - Distribution upgrade, see apt-get(8)\n" -#| " dselect-upgrade - Follow dselect selections\n" -#| " clean - Erase downloaded archive files\n" -#| " autoclean - Erase old downloaded archive files\n" -#| " check - Verify that there are no broken dependencies\n" -#| "\n" -#| "Options:\n" -#| " -h This help text.\n" -#| " -q Loggable output - no progress indicator\n" -#| " -qq No output except for errors\n" -#| " -d Download only - do NOT install or unpack archives\n" -#| " -s No-act. Perform ordering simulation\n" -#| " -y Assume Yes to all queries and do not prompt\n" -#| " -f Attempt to correct a system with broken dependencies in place\n" -#| " -m Attempt to continue if archives are unlocatable\n" -#| " -u Show a list of upgraded packages as well\n" -#| " -b Build the source package after fetching it\n" -#| " -V Show verbose version numbers\n" -#| " -c=? Read this configuration file\n" -#| " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -#| "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -#| "pages for more information and options.\n" -#| " This APT has Super Cow Powers.\n" msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1369,7 +1335,7 @@ msgstr "" "sources.list(5) eta apt.conf(5) orrialdeak eskuliburuan.\n" " APT honek Super Behiaren Ahalmenak ditu.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1607,9 +1573,13 @@ msgstr "Gainidatzi pakete-konkordantzia %s(r)en bertsiorik gabe" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Ezin da %s irakurri" @@ -1639,9 +1609,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "info eta temp direktorioek fitxategi sistema berean egon behar dute" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Pakete Zerrenda irakurtzen" @@ -1745,12 +1715,12 @@ msgstr "Ezin izan da baliozko kontrol fitxategi bat lokalizatu" msgid "Unparsable control file" msgstr "Kontrol fitxategi ezin analizagarria" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Ezin da cdrom-eko %s datu-basea irakurri" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1758,21 +1728,21 @@ msgstr "" "Mesedez erabili apt-cdrom APT-k CD hau ezagutu dezan.\n" "apt-get update ezin da erabili CD berriak gehitzeko" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "CD okerra" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "" "Ezin izan da %s(e)ko CD-ROMa desmuntatu; beharbada erabiltzen ariko da." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Ez da diska aurkitu" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Ez da fitxategia aurkitu" @@ -1790,34 +1760,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "URI baliogabea. URI lokalek ezin dute // eduki hasieran" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Sartzen" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Ezin izan da peer edo parekoaren izena zehaztu" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Ezin izan da izen lokala zehaztu" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Zerbitzariak gure konexioa ukatu eta hau esan du: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USERek huts egin du, eta zerbitzariak hau esan du: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASSek huts egin du, eta zerbitzariak hau esan du: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1825,117 +1795,117 @@ msgstr "" "Proxy zerbitzari bat zehaztu da, baina sarrerako script-ik ez. Acquire::ftp::" "ProxyLogin hutsik dago." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "" "Sarrerako script-eko '%s' komandoak huts egin du, eta zerbitzariak hau esan " "du: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPEk huts egin du, eta zerbitzariak hau esan du: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Konexioa denboraz kanpo" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Zerbitzariak konexioa itxi du" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Irakurketa errorea" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Erantzun batek bufferrari gainez eragin dio." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Protokolo hondatzea" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Idazketa errorea" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Ezin izan da socket-a sortu" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "" "Ezin izan da datu-socketa konektatu; konexioak denbora muga gainditu du" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Ezin izan da socket pasibora konektatu." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo-k ezin izan du socket entzule bat eskuratu" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Ezin izan da socket bat lotu" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Ezin izan da socket-ean entzun" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Ezin izan da socket-aren izena zehaztu" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Ezin da PORT komandoa bidali" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Helbide familia ezezagunaa: %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRTek huts egin du, eta zerbitzariak hau esan du: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Datu-socket konexioak denbora muga gainditu du" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Ezin da konexioa onartu" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Arazoa fitxategiaren hash egitean" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Ezin da fitxategia lortu; zerbitzariak hau esan du: '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Datu-socketak denbora muga gainditu du" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Datu transferentziak huts egin du, eta zerbitzariak hau esan du: '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Kontsulta" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Ezin da deitu " @@ -2046,93 +2016,93 @@ msgstr "Ezin izan da %s(r)en kanalizazioa ireki" msgid "Read error from %s process" msgstr "Irakurri errorea %s prozesutik" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Goiburuen zain" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Goiburu-lerro bakarra eskuratu da %u karaktereen gainean" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Okerreko goiburu-lerroa" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "http zerbitzariak erantzun goiburu baliogabe bat bidali du." -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "http zerbitzariak Content-Length buru baliogabe bat bidali du" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "http zerbitzariak Content-Range buru baliogabe bat bidali du" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "http zerbitzariak barruti onarpena apurturik du" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Datu formatu ezezaguna" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Hautapenak huts egin du" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Konexioaren denbora muga gainditu da" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Errorea irteerako fitxategian idaztean" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Errorea fitxategian idaztean" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Errorea fitxategian idaztean" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "Errorea zerbitzaritik irakurtzen Urrunetik amaitutako konexio itxiera" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Errorea zerbitzaritik irakurtzean" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Huts fitxategia mozterakoan" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Goiburu data gaizki dago" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Konexioak huts egin du" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Barne errorea" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Ezin da fitxategi huts baten mmap egin" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Ezin izan da %lu byteren mmap egin" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2282,13 +2252,13 @@ msgstr "Eragiketa baliogabea: %s" msgid "Unable to stat the mount point %s" msgstr "Ezin da atzitu %s muntatze puntua" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Ezin da %s(e)ra aldatu" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Huts egin du CDROMa atzitzean" @@ -2320,51 +2290,50 @@ msgstr "Ezin izan da %s blokeoa hartu" msgid "Waited for %s but it wasn't there" msgstr "%s espero zen baina ez zegoen han" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "%s azpiprozesuak segmentaziuo hutsegitea jaso du." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, 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:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "%s azpiprozesua ustekabean amaitu da" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "%s fitxategia ezin izan da ireki" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Arazoa fitxategia ixtean" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Arazoa fitxategia desestekatzean" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Arazoa fitxategia sinkronizatzean" @@ -2457,16 +2426,16 @@ msgstr "Hautagaien bertsioak" msgid "Dependency generation" msgstr "Dependentzi Sormena" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Egoera argibideak irakurtzen" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Huts egin du %s EgoeraFitxategia irekitzean" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Ezin izan da %s aldiroko EgoeraFitrxategia idatzi" @@ -2506,32 +2475,32 @@ msgstr "Gaizkieratutako %lu lerroa %s iturburu zerrendan (banaketa orokorra)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Gaizki osatutako %lu lerroa %s Iturburu zerrendan (dist analisia)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "%s irekitzen" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "%2$s iturburu zerrendako %1$u lerroa luzeegia da." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Gaizki osatutako %u lerroa %s Iturburu zerrendan (type)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "'%s' mota ez da ezagutzen %u lerroan %s Iturburu zerrendan" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Gaizki osatutako %u lerroa %s Iturburu zerrendan (hornitzaile id-a)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2555,7 +2524,7 @@ msgid "" msgstr "" "%s paketea berriro instalatu behar da, baina ezin dut artxiborik aurkitu." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2563,11 +2532,11 @@ msgstr "" "Errorea: pkgProblemResolver::Resolve. Etenak sortu ditu, beharbada " "atxikitako paketeek eraginda." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "Ezin dira arazoak konpondu; hautsitako paketeak atxiki dituzu." -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2587,12 +2556,12 @@ msgstr "%spartial artxibo direktorioa falta da." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "%li fitxategi deskargatzen %li -tik (%s falta da)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "%li fitxategia jasotzen %li-tik" @@ -2612,16 +2581,16 @@ 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:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "'%s' pakete sistema ez da onartzen" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Ezin da pakete sistemaren mota egokirik zehaztu" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Ezin da %s atzitu." @@ -2638,132 +2607,131 @@ 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:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "Erregistro baliogabea hobespenen fitxategian, pakete goibururik ez" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Ez da ulertu %s orratz-mota (pin)" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Ez da lehentasunik zehaztu orratzarentzat (pin) (edo zero da)" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Katxearen bertsio sistema ez da bateragarria" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Errorea gertatu da %s prozesatzean (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Errorea gertatu da %s prozesatzean (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Errorea gertatu da %s prozesatzean (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Errorea gertatu da %s prozesatzean (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Errorea gertatu da %s prozesatzean (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Errorea gertatu da %s prozesatzean (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Errorea gertatu da %s prozesatzean (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Errorea gertatu da %s prozesatzean (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Errorea gertatu da %s prozesatzean (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "APT honek maneia dezakeen pakete izenen kopurua gainditu duzu." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "APT honek maneia dezakeen bertsio kopurua gainditu duzu." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "APT honek maneia dezakeen azalpen kopurua gainditu duzu." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "APT honek maneia dezakeen mendekotasun muga gainditu duzu." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Errorea gertatu da %s prozesatzean (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Errorea gertatu da %s prozesatzean (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "%s %s paketea ez da aurkitu fitxategi mendekotasunak prozesatzean" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Ezin da atzitu %s iturburu paketeen zerrenda" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Fitxategiaren erreferentziak biltzen" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "S/I errorea iturburu katxea gordetzean" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "huts egin du izen-aldaketak, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5Sum ez dator bat" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Egiaztapena ez dator bat" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "Ez dago gako publiko erabilgarririk hurrengo gako ID hauentzat:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2772,7 +2740,7 @@ msgstr "" "Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz konpondu " "beharko duzu paketea. (arkitektura falta delako)" -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2781,7 +2749,7 @@ msgstr "" "Ezin izan dut %s paketeko fitxategi bat lokalizatu. Beharbada eskuz konpondu " "beharko duzu paketea." -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2789,19 +2757,17 @@ msgstr "" "Paketearen indize fitxategiak hondatuta daude. 'Filename:' eremurik ez %s " "paketearentzat." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Tamaina ez dator bat" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Ezin da %s pakete fitxategia analizatu (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Oharra, %s hautatzen %s(r)en ordez\n" @@ -2815,7 +2781,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "%s saltzaile blokeak ez du egiaztapen markarik" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2824,42 +2790,42 @@ msgstr "" "%s CD-ROM muntatze puntua erabiltzen\n" "CD-ROM-a muntatzen\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Egiaztatzen... " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Gordetako Etiketa: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "CD-ROM Desmuntatzen...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "%s CD-ROM muntatze puntua erabiltzen\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "CD-ROM-a desmuntatzen\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Diska itxaroten...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "CD-ROM-a muntatzen...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Indize fitxategien bila diska arakatzen...\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2868,22 +2834,22 @@ msgstr "" "%zu pakete indize, %zu jatorri indize %zu itzulpen indize eta %zu sinadura " "aurkitu dira\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Aurkitutako Etiketa: '%s' \n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Hau ez baliozko izen bat, froga berriro.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2892,34 +2858,34 @@ msgstr "" "Diskaren izen:\n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Pakete zerrendak kopiatzen..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Jatorri zerrenda berria idazten\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Diskoarentzako jatorri sarrerak:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "%i erregistro grabaturik.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i erregistro eta %i galdutako fitxategi grabaturik.\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i erregistro eta %i okerreko fitxategi grabaturik\n" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -3009,7 +2975,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Ezin da zerrenda direktorioa blokeatu" diff --git a/po/fi.po b/po/fi.po index 64e739401..1c0e7ee0e 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -23,7 +23,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Paketin %s versiossa %s on tyydyttämätön riippuvuus:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -93,7 +93,7 @@ msgstr "Löysää tilaa yhteensä: " msgid "Total space accounted for: " msgstr "Käytetty tila yhteensä: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Pakettitiedosto %s ei ole ajan tasalla." @@ -151,14 +151,14 @@ msgstr " Versiotaulukko:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -231,15 +231,15 @@ msgstr "" " -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" "Lisätietoja apt-cache(8) ja apt.conf(5) käsikirjasivuilla.\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "Kirjoita levylle nimi, kuten \"Debian 2.1r1 Levy 1\"" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Aseta levy asemaan ja paina Enter" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Toista tämä lopuille rompuille kasassasi." @@ -304,7 +304,7 @@ msgstr "" " -c=? Lue tämä asetustiedosto\n" " -o=? Aseta mikä asetusvalitsin tahansa, esim. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Tiedostoon %s kirjoittaminen ei onnistu" @@ -650,7 +650,7 @@ msgstr "Nimen muuttaminen %s -> %s ei onnistunut" msgid "Y" msgstr "K" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Käännösvirhe lausekkeessa - %s" @@ -751,120 +751,120 @@ msgstr "%lu poistettavaa ja %lu päivittämätöntä.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu ei asennettu kokonaan tai poistettiin.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Korjataan riippuvuuksia..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " ei onnistunut." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Riippuvuuksien korjaus ei onnistu" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Päivitysjoukon minimointi ei onnistu" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Valmis" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Tyydyttämättömiä riippuvuuksia. Koita käyttää -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "VAROITUS: Seuraavian pakettien alkuperää ei voi varmistaa!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Varoitus varmistamisesta on ohitettu.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Asennetaanko nämä paketit ilman todennusta [y/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Joidenkin pakettien alkuperästä ei voitu varmistua" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Sisäinen virhe, InstallPackages kutsuttiin rikkinäisille paketeille!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 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:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Tapahtui sisäinen virhe, järjestäminen keskeytyi" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Noutokansiota ei saatu lukittua" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Lähteiden luetteloa ei pystynyt lukemaan." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 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:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Noudettavaa arkistoa %st/%st.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Noudettavaa arkistoa %st.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kansion %s vapaan tilan määrä ei selvinnyt" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, 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:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Kyllä, tee kuten käsketään!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -875,28 +875,28 @@ msgstr "" "Jatka kirjoittamalla \"%s\"\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Keskeytä." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Haluatko jatkaa [K/e]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Tiedoston %s nouto ei onnistunut %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Joidenkin tiedostojen nouto ei onnistunut" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Nouto on valmis ja määrätty vain nouto" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -904,47 +904,47 @@ msgstr "" "Joidenkin arkistojen nouto ei onnistunut, ehkä \"apt-get update\" auttaa tai " "kokeile --fix-missing?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing ja taltion vaihto ei ole nyt tuettu" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Puuttuvia paketteja ei voi korjata." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Asennus keskeytetään." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Huomautus, valitaan %s eikä %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, 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:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Asennettu]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Yksi pitää valita asennettavaksi." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -955,59 +955,59 @@ msgstr "" "Tämä voi tarkoittaa paketin puuttuvan, olevan vanhentunut tai\n" "saatavilla vain jostain muusta lähteestä\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Seuraavat paketit kuitenkin korvaavat sen:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Paketilla %s ei ole asennettavaa valintaa" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s on jo uusin versio.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Julkaisua \"%s\" paketille \"%s\" ei löytynyt" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Versiota \"%s\" paketille \"%s\" ei löytynyt" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Valittiin versio %s (%s) paketille %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Komento update ei käytä parametreja" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Luettelokansiota ei voitu lukita" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 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:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1015,11 +1015,18 @@ msgstr "" "Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " "vaadittuja:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " +"vaadittuja:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Poista ne komennolla \"apt-get autoremove\"." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1037,43 +1044,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "Seuraavista tiedoista voi olla hyötyä selvitettäessä tilannetta:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Sisäinen virhe, AutoRemover rikkoi jotain" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Sisäinen virhe, AllUpgrade rikkoi jotain" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Tehtävää %s ei löytynyt" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Pakettia %s ei löytynyt" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Huomautus, valitaan %s lausekkeella \"%s\"\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1081,7 +1088,7 @@ msgstr "" "Kaikkia riippuvuuksia ei ole tyydytetty. Kokeile \"apt-get -f install\" " "ilmanpaketteja (tai ratkaise itse)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1092,116 +1099,116 @@ msgstr "" "jos käytetään epävakaata jakelua, joitain vaadittuja paketteja ei ole\n" "vielä luotu tai siirretty Incoming-kansiosta." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Rikkinäiset paketit" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Seuraavat ylimääräiset paketit on merkitty asennettaviksi:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Ehdotetut paketit:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Suositellut paketit:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Käsitellään päivitystä ... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Ei onnistunut" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Valmis" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Sisäinen virhe, resolver rikkoi jotain" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "Paketin %s lähdekoodipakettia ei löytynyt" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Ohitetaan jo noudettu tiedosto \"%s\"\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, 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:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "On noudettava %st/%st lähdekoodiarkistoja.\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "On noudettava %st lähdekoodiarkistoja.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Nouda lähdekoodi %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Joidenkin arkistojen noutaminen ei onnistunut." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Purkukomento \"%s\" ei onnistunut.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Paketointikomento \"%s\" ei onnistunut.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Lapsiprosessi kaatui" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "" "On annettava ainakin yksi paketti jonka paketointiriippuvuudet tarkistetaan" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Paketille %s ei ole saatavilla riippuvuustietoja" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "Paketille %s ei ole määritetty paketointiriippuvuuksia.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1209,7 +1216,7 @@ msgid "" msgstr "" "riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1218,32 +1225,32 @@ msgstr "" "%s riippuvuutta paketille %s ei voi tyydyttää koska mikään paketin %s versio " "ei vastaa versioriippuvuuksia" -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Riippuvuutta %s paketille %s ei voi tyydyttää: %s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Paketointiriippuvuuksia paketille %s ei voi tyydyttää." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Paketointiriippuvuuksien käsittely ei onnistunut" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Tuetut moduulit:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1327,7 +1334,7 @@ msgstr "" "lisätietoja ja lisää valitsimia.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1566,9 +1573,13 @@ msgstr "Päälle kirjoitettava paketti täsmää mutta paketille %s ei ole versi msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Tiedostoa %s ei voi lukea" @@ -1598,9 +1609,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "Kansioiden info ja temp pitää olla samassa tiedostojärjestelmässä" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Luetaan pakettiluetteloita" @@ -1705,12 +1716,12 @@ msgstr "Kelvollista ohjaustiedostoa ei löydy" msgid "Unparsable control file" msgstr "Ohjaustiedosto ei jäsenny" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Rompputietokantaa %s ei voi lukea" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1718,20 +1729,20 @@ msgstr "" "Käytä komentoa apt-cdrom jotta APT tunnistaa tämän rompun, apt-get update ei " "osaa lisätä uusia romppuja" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Väärä romppu" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Rompun %s irrottaminen ei onnistu, se on ehkä käytössä." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Levyä ei löydy" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Tiedostoa ei löydy" @@ -1749,34 +1760,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "URI on kelvoton, paikallinen URI ei saa alkaa //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Kirjaudutaan sisään" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Vastapään nimeä ei saa selville" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Paikallista nimeä ei saa selville" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Palvelin ei huolinut yhteyttä ilmoituksella: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER ei onnistunut, palvelimen ilmoitus: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS ei onnistunut, palvelimen ilmoitus: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1784,114 +1795,114 @@ msgstr "" "Määritettiin välipalvelin mutta ei komentotiedostoa kirjautumiseen, Acquire::" "ftp::ProxyLogin on tyhjä." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Komentotiedoston rivi \"%s\" ei toiminut, palvelin ilmoitti: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE ei toiminut, palvelin ilmoitti: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Yhteys aikakatkaistiin" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Palvelin sulki yhteyden" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Lukuvirhe" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Vastaus aiheutti puskurin ylivuodon." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Yhteyskäytäntö on turmeltunut" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Virhe kirjoitettaessa" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Pistoketta ei voitu luoda" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Pistoketta ei voitu kytkeä, yhteys aikakatkaistiin" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Passiivista pistoketta ei voitu kytkeä." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo ei saanut kuuntelupistoketta" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Pistoketta ei voitu nimetä" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Pistoketta ei voitu kuunnella" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Pistokkeen nimeä ei saatu selville" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Komennon PORT lähetys ei onnistu" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Tuntematon osoiteperhe %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT ei onnistunut, palvelin ilmoitti: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Pistokkeen kytkeminen aikakatkaistiin" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Yhteyttä ei voitu hyväksyä" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Pulmia tiedoston hajautuksessa" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Tiedostoa ei saatu noudettua, palvelin ilmoitti \"%s\"" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Pistoke aikakatkaistiin" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Tiedonsiirto ei onnistunut, palvelin ilmoitti \"%s\"" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Kysely" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Käynnistys ei onnistu" @@ -2004,93 +2015,93 @@ msgstr "Putkea %s ei voitu avata" msgid "Read error from %s process" msgstr "Prosessi %s ilmoitti lukuvirheestä" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Odotetaan otsikoita" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Vastaanotettiin yksi otsikkorivi pituudeltaan yli %u merkkiä" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Virheellinen otsikkorivi" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP-palvelin lähetti virheellisen vastausotsikon" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP-palvelin lähetti virheellisen Content-Length-otsikon" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP-palvelin lähetti virheellisen Content-Range-otsikon" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "HTTP-palvelimen arvoaluetuki on rikki" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Tuntematon päiväysmuoto" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Select ei toiminut" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Yhteys aikakatkaistiin" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Tapahtui virhe kirjoitettaessa tulostustiedostoon" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Tapahtui virhe kirjoitettaessa tiedostoon" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "Tapahtui virhe luettaessa palvelimelta. Etäpää sulki yhteyden" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Tapahtui virhe luettaessa palvelimelta" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Tiedoston typistäminen ei onnistunut" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Virheellinen otsikkotieto" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Yhteys ei toiminut" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Sisäinen virhe" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Tyhjälle tiedostolle ei voi tehdä mmap:ia" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Ei voitu tehdä %lu tavun mmap:ia" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2237,13 +2248,13 @@ msgstr "Virheellinen toiminto %s" msgid "Unable to stat the mount point %s" msgstr "Komento stat ei toiminut liitoskohdalle %s" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Kansioon %s vaihto ei onnistu" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Komento stat ei toiminut rompulle" @@ -2272,51 +2283,50 @@ msgstr "Lukkoa %s ei saada" msgid "Waited for %s but it wasn't there" msgstr "Odotettiin %s, mutta sitä ei ollut" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Aliprosessi %s aiheutti suojausvirheen." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Aliprosessi %s aiheutti suojausvirheen." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Aliprosessi %s palautti virhekoodin (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Aliprosessi %s lopetti odottamatta" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Tiedostoa %s ei voitu avata" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Pulmia tiedoston sulkemisessa" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Pulmia tehtäessä tiedostolle unlink" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Pulmia tehtäessä tiedostolle sync" @@ -2409,16 +2419,16 @@ msgstr "Mahdolliset versiot" msgid "Dependency generation" msgstr "Luodaan riippuvuudet" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Luetaan tilatiedot" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Tilatiedoston %s avaaminen ei onnistunut" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Tilapäisen tilatiedoston %s kirjoittaminen ei onnistunut" @@ -2458,32 +2468,32 @@ msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (Absoluuttinen dist)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Väärän muotoinen rivi %lu lähdeluettelossa %s (dist-jäsennys)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Avataan %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Rivi %u on liian pitkä lähdeluettelossa %s." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Rivi %u on väärän muotoinen lähdeluettelossa %s (tyyppi)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Tyyppi \"%s\" on tuntematon rivillä %u lähdeluettelossa %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Rivi %u on väärän muotoinen lähdeluettelossa%s (toimittajan tunniste)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2505,7 +2515,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:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2513,11 +2523,11 @@ msgstr "" "Virhe, pkgProblemResolver::Resolve tuotti katkoja, syynä voi olla pysytetyt " "paketit." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "Pulmia ei voi korjata, rikkinäisiä paketteja on pysytetty." -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2537,12 +2547,12 @@ msgstr "Arkistokansio %spartial puuttuu." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Noudetaan tiedosto %li / %li (jäljellä %s)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Noudetaan tiedosto %li / %li" @@ -2562,16 +2572,16 @@ 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:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Paketointijärjestelmä \"%s\" ei ole tuettu" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Sopivaa paketointijärjestelmän tyyppiä ei saa selvitettyä" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "stat %s ei onnistu." @@ -2589,133 +2599,132 @@ 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:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "Asetustiedostossa on virheellinen tietue, Package-otsikko puuttuu" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Tunnistetyyppi %s on tuntematon" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Tärkeysjärjestystä ei määritetty tunnisteelle (tai se on nolla)" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Pakettivaraston versionhallintajärjestelmä ei ole yhteensopiva" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Tapahtui virhe käsiteltäessä %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Tapahtui virhe käsiteltäessä %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Tapahtui virhe käsiteltäessä %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Tapahtui virhe käsiteltäessä %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Tapahtui virhe käsiteltäessä %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Tapahtui virhe käsiteltäessä %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Tapahtui virhe käsiteltäessä %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Tapahtui virhe käsiteltäessä %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Tapahtui virhe käsiteltäessä %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Jummijammi, annoit enemmän pakettien nimiä kuin tämä APT osaa käsitellä." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Jummijammi, annoit enemmän versioita kuin tämä APT osaa käsitellä." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "Jummijammi, tämä APT ei osaa käsitellä noin montaa kuvausta." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Jummijammi, annoit enemmän riippuvuuksia kuin tämä APT osaa käsitellä." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Tapahtui virhe käsiteltäessä %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Tapahtui virhe käsiteltäessä %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Pakettia %s %s ei löytynyt käsiteltäessä tiedostojen riippuvuuksia." -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "stat ei toiminut lähdepakettiluettelolle %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Kootaan tiedostojen tarjoamistietoja" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "Syöttö/Tulostus -virhe tallennettaessa pakettivarastoa" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "nimen vaihto ei onnistunut, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5Sum ei täsmää" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Hash Sum täsmää" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "Julkisia avaimia ei ole saatavilla, avainten ID:t ovat:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2724,7 +2733,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:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2733,7 +2742,7 @@ msgstr "" "Pakettia %s vastaavaa tiedostoa ei löytynyt. Voit ehkä joutua korjaamaan " "tämän paketin itse." -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2741,19 +2750,17 @@ msgstr "" "Pakettihakemistotiedostot ovat turmeltuneet. Paketille %s ei ole Filename-" "kenttää." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Koko ei täsmää" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Pakettitiedostoa %s (1) ei voi jäsentää" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Huomautus, valitaan %s eikä %s\n" @@ -2767,7 +2774,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Toimittajan lohkosta %s puuttuu sormenjälki" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2776,42 +2783,42 @@ msgstr "" "Käytetään rompun liitoskohtaa %s\n" "Liitetään romppu\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Tunnistetaan... " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Tallennettu nimio: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "Irrotetaan romppu...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Käytetään rompun liitoskohtaa %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Irrotetaan romppu\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Odotetaan levyä...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Liitetään romppu...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Etsitään levyltä hakemistotiedostoja...\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2820,22 +2827,22 @@ msgstr "" "Hakemistoja löytyi: Asennuspakettien %zu, lähdekoodipakettien %zu, " "käännösten %zu ja allekirjoituksia löytyi %zu\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Löytyi nimiö: \"%s\"\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Tuo ei kelpaa nimeksi, yritä uudelleen.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2844,34 +2851,34 @@ msgstr "" "Tämä levy on: \n" "\"%s\"\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Kopioidaan pakettiluetteloita..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Kirjoitetaan uusi lähdeluettelo\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Tämän levyn lähdekoodipakettien luettelon tietueita ovat:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Kirjoitettiin %i tietuetta.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, 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:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -2962,7 +2969,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Luettelokansiota ei voitu lukita" diff --git a/po/fr.po b/po/fr.po index af85ef43a..e19e8b901 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+0200\n" "PO-Revision-Date: 2009-07-21 23:33+0200\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" @@ -24,7 +24,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Le paquet %s de version %s contient une dépendance absente :\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -94,7 +94,7 @@ msgstr "Espace disque gaspillé : " msgid "Total space accounted for: " msgstr "Total de l'espace attribué : " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Fichier %s désynchronisé." @@ -152,14 +152,14 @@ msgstr " Table de version :" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -236,17 +236,17 @@ msgstr "" "Regardez les pages de manuel de apt-cache(8) et apt.conf(5) pour plus\n" "d'informations.\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "" "Veuillez indiquer le nom de ce disque, par exemple « Debian 2.1r1 Disk 1 »" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "" "Veuillez insérer un disque dans le lecteur et appuyez sur la touche Entrée" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "" "Veuillez répéter cette opération pour tous les disques de votre jeu de " @@ -313,7 +313,7 @@ msgstr "" " -c=? Lit ce fichier de configuration\n" " -o=? Spécifie une option de configuration, p. ex. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Impossible d'écrire sur %s" @@ -660,7 +660,7 @@ msgstr "Impossible de changer le nom %s en %s" msgid "Y" msgstr "O" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Erreur de compilation de l'expression rationnelle - %s" @@ -762,114 +762,114 @@ msgstr "%lu à enlever et %lu non mis à jour.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu partiellement installés ou enlevés.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Correction des dépendances..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " a échoué." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Impossible de corriger les dépendances" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Impossible de minimiser le nombre des paquets mis à jour" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Fait" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Dépendances manquantes. Essayez d'utiliser l'option -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ATTENTION : les paquets suivants n'ont pas été authentifiés." -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Avertissement d'authentification ignoré.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Faut-il installer ces paquets sans vérification (o/N) ? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Certains paquets n'ont pas pu être authentifiés" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Erreur interne, « InstallPackages » appelé avec des paquets cassés." -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 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:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Erreur interne. Le tri a été interrompu." -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Impossible de verrouiller le répertoire de téléchargement" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "La liste des sources ne peut être lue." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 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:842 +#: cmdline/apt-get.cc:841 #, 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:845 +#: cmdline/apt-get.cc:844 #, 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:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "Impossible de déterminer l'espace disponible sur %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "Pas assez d'espace disponible sur %s" -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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 " @@ -877,11 +877,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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Oui, faites ce que je vous dis !" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -892,28 +892,28 @@ msgstr "" "Pour continuer, tapez la phrase « %s »\n" " ?]" -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Annulation." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Souhaitez-vous continuer [O/n] ? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Impossible de récupérer %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Certains fichiers n'ont pu être téléchargés." -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 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:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -921,48 +921,48 @@ 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:1016 +#: cmdline/apt-get.cc:1018 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:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Impossible de corriger le fait que les paquets manquent." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Annulation de l'installation." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, 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:1066 +#: cmdline/apt-get.cc:1068 #, 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:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Installé]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Vous devez explicitement sélectionner un paquet à installer." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -974,61 +974,61 @@ msgstr "" "devenu obsolète\n" "ou qu'il n'est disponible que sur une autre source\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Cependant les paquets suivants le remplacent :" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Aucun paquet ne correspond au paquet %s" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, 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:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "La version « %s » de « %s » est introuvable" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "La version « %s » de « %s » n'a pu être trouvée" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Version choisie %s (%s) pour %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "Pas de paquet source « %s ». Utilisation de « %s » à la place\n" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "La commande de mise à jour ne prend pas d'argument" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Impossible de verrouiller le répertoire de liste" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 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:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1036,11 +1036,18 @@ msgstr "" "Les paquets suivants ont été installés automatiquement et ne sont plus " "nécessaires :" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"Les paquets suivants ont été installés automatiquement et ne sont plus " +"nécessaires :" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Veuillez utiliser « apt-get autoremove » pour les supprimer." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1059,44 +1066,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 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:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "" "Erreur interne, l'outil de suppression automatique a cassé quelque chose." -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Erreur interne, AllUpgrade a cassé le boulot !" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Impossible de trouver la tâche %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Impossible de trouver le paquet %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Note, sélectionne %s pour l'expression rationnelle « %s »\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s passé en « installé manuellement ».\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1104,7 +1111,7 @@ msgstr "" "Dépendances non satisfaites. Essayez « apt-get -f install » sans paquet\n" "(ou indiquez une solution)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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,119 +1123,119 @@ 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:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Paquets défectueux" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Les paquets supplémentaires suivants seront installés : " -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Paquets suggérés :" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Paquets recommandés :" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Calcul de la mise à jour... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Échec" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Fait" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 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:2079 +#: cmdline/apt-get.cc:2113 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, 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:2158 +#: cmdline/apt-get.cc:2192 #, 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:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "Pas assez d'espace disponible sur %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, 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:2195 +#: cmdline/apt-get.cc:2232 #, 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:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Récupération des sources %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Échec lors de la récupération de quelques archives." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "La commande de décompactage « %s » a échoué.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, 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:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "La commande de construction « %s » a échoué.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Échec du processus fils" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 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:2353 +#: cmdline/apt-get.cc:2390 #, 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:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s n'a pas de dépendance de construction.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1237,7 +1244,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:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1246,32 +1253,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:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, 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:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." -msgstr "Les dépendances de compilation pour %s ne peuvent pas être satisfaites." +msgstr "" +"Les dépendances de compilation pour %s ne peuvent pas être satisfaites." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Impossible d'activer les dépendances de construction" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Modules reconnus :" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1356,7 +1364,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:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1605,9 +1613,13 @@ msgstr "Écrase la correspondance de paquet sans version pour %s " msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Impossible de lire %s" @@ -1639,9 +1651,9 @@ msgstr "" "fichiers" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Lecture des listes de paquets" @@ -1746,12 +1758,12 @@ msgstr "Impossible de localiser un fichier de contrôle valide" msgid "Unparsable control file" msgstr "Fichier de contrôle non traitable" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Impossible de lire la base de données %s du cédérom" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1759,22 +1771,22 @@ msgstr "" "Veuillez utiliser apt-cdrom afin de faire reconnaître ce cédérom par votre " "APT. apt-get update ne peut être employé pour ajouter de nouveaux cédéroms" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Mauvais cédérom" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "" "Impossible de démonter le cédérom dans %s, il doit toujours être en cours " "d'utilisation." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Disque non trouvé." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Fichier non trouvé" @@ -1792,34 +1804,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "Liens invalides, les liens locaux ne doivent pas débuter avec //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Connexion en cours" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Impossible de déterminer le nom de la machine distante" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Impossible de déterminer le nom local" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Le serveur a refusé notre connexion et a répondu : %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER incorrect, le serveur a répondu : %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS incorrect, le serveur a répondu : %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1827,116 +1839,116 @@ msgstr "" "Un serveur proxy a été spécifié, mais aucun script de connexion, Acquire::" "ftp::ProxyLogin est vide." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "" "La commande « %s » du script de connexion a échoué, le serveur a répondu : %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "Échec de TYPE, le serveur a répondu : %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Dépassement du délai de connexion" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Le serveur a fermé la connexion" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Erreur de lecture" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Une réponse a fait déborder le tampon." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Corruption du protocole" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Erreur d'écriture" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Impossible de créer un connecteur" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "" "Impossible de se connecter sur le port de données, délai de connexion dépassé" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Impossible de se connecter au port en mode passif." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "gettaddrinfo n'a pu obtenir un port d'écoute" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Impossible de se connecter à un port" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Impossible d'écouter sur le port" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Impossible de déterminer le nom du port" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Impossible d'envoyer la commande PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Famille d'adresses %u inconnue (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT a échoué, le serveur a répondu : %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Délai de connexion au port de données dépassé" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Impossible d'accepter une connexion" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Problème de hachage du fichier" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Impossible de récupérer le fichier, le serveur a répondu « %s »" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Pas de réponse du port données dans les délais" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Le transfert de données a échoué, le serveur a répondu « %s »" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Requête" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Impossible d'invoquer " @@ -2053,93 +2065,93 @@ msgstr "Ne parvient pas à ouvrir le tube pour %s" msgid "Read error from %s process" msgstr "Erreur de lecture du processus %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Attente des fichiers d'en-tête" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "J'ai une simple ligne d'en-tête au-dessus du caractère %u" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Mauvaise ligne d'en-tête" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 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:588 +#: methods/http.cc:593 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:603 +#: methods/http.cc:608 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:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Ce serveur http possède un support des limites non-valide" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Format de date inconnu" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Sélection défaillante" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Délai de connexion dépassé" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Erreur d'écriture du fichier de sortie" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Erreur d'écriture sur un fichier" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Erreur d'écriture sur le fichier" -#: methods/http.cc:883 +#: methods/http.cc:888 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:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Erreur de lecture du serveur" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Échec de la troncature du fichier" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Mauvais en-tête de donnée" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Échec de la connexion" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Erreur interne" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Impossible de mapper un fichier vide en mémoire" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Impossible de réaliser un mapping de %lu octets en mémoire" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2291,13 +2303,13 @@ 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:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Impossible d'accéder à %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Impossible d'accéder au cédérom." @@ -2326,50 +2338,50 @@ msgstr "Impossible de verrouiller %s" 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:455 +#: apt-pkg/contrib/fileutl.cc:456 #, 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:457, c-format -#| msgid "Sub-process %s received a segmentation fault." +#: apt-pkg/contrib/fileutl.cc:458 +#, 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:460 +#: apt-pkg/contrib/fileutl.cc:462 #, 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:462 +#: apt-pkg/contrib/fileutl.cc:464 #, 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:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Impossible de verrouiller %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Problème de fermeture du fichier" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Problème d'effacement du fichier" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Problème de synchronisation du fichier" @@ -2462,16 +2474,16 @@ msgstr "Versions possibles" msgid "Dependency generation" msgstr "Génération des dépendances" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Lecture des informations d'état" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Impossible d'ouvrir le fichier d'état %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Erreur d'écriture du fichier d'état temporaire %s" @@ -2513,33 +2525,33 @@ msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" "Ligne %lu mal formée dans la liste des sources %s (analyse de distribution)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Ouverture de %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "La ligne %u du fichier des listes de sources %s est trop longue." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Ligne %u mal formée dans la liste des sources %s (type)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Le type « %s » est inconnu sur la ligne %u dans la liste des sources %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "" "Ligne %u mal formée dans la liste des sources %s (identifiant du fournisseur)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2564,7 +2576,7 @@ msgstr "" "Le paquet %s doit être réinstallé, mais il est impossible de trouver son " "archive." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2572,13 +2584,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:1156 +#: apt-pkg/algorithms.cc:1140 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:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2598,12 +2610,12 @@ msgstr "Le répertoire d'archive %spartial n'existe pas." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, 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:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Téléchargement du fichier %li sur %li" @@ -2625,16 +2637,16 @@ msgstr "" "Veuillez insérer le disque « %s » dans le lecteur « %s » et appuyez sur la " "touche Entrée." -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Le système de paquet « %s » n'est pas supporté" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Impossible de déterminer un type du système de paquets adéquat" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Impossible de localiser %s." @@ -2654,144 +2666,145 @@ 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:329, c-format -#| msgid "Invalid record in the preferences file, no Package header" +#: apt-pkg/policy.cc:347 +#, 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:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Étiquette %s inconnue" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Aucune priorité (ou zéro) n'a été spécifiée pour l'étiquette" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Le cache possède un système de version incompatible" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Erreur apparue lors du traitement de %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Erreur apparue lors du traitement de %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Erreur apparue lors du traitement de %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Erreur apparue lors du traitement de %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Erreur apparue lors du traitement de %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Erreur apparue lors du traitement de %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Erreur apparue lors du traitement de %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Erreur apparue lors du traitement de %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Erreur apparue lors du traitement de %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Vous avez dépassé le nombre de noms de paquets que cette version d'APT est " "capable de traiter." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" "Vous avez dépassé le nombre de versions que cette version d'APT est capable " "de traiter." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" "Vous avez dépassé le nombre de descriptions que cette version d'APT est " "capable de traiter." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Vous avez dépassé le nombre de dépendances que cette version d'APT est " "capable de traiter." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Erreur apparue lors du traitement de %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Erreur apparue lors du traitement de %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Le paquet %s %s n'a pu être trouvé lors du traitement des dépendances des " "fichiers" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Impossible de localiser la liste des paquets sources %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Assemblage des fichiers listés dans les champs Provides" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "" "Erreur d'entrée/sortie lors de la sauvegarde du fichier de cache des sources" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "impossible de changer le nom, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "Somme de contrôle MD5 incohérente" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Somme de contrôle de hachage incohérente" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 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" +msgstr "" +"Aucune clé publique n'est disponible pour la/les clé(s) suivante(s) :\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2800,7 +2813,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:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2809,7 +2822,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:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2817,17 +2830,17 @@ msgstr "" "Les fichiers d'index des paquets sont corrompus. Aucun champ « Filename: » " "pour le paquet %s." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Taille incohérente" -#: apt-pkg/indexrecords.cc:40, c-format -#| msgid "Unable to parse package file %s (1)" +#: apt-pkg/indexrecords.cc:40 +#, c-format msgid "Unable to parse Release file %s" msgstr "Impossible d'analyser le fichier Release %s" -#: apt-pkg/indexrecords.cc:47, c-format -#| msgid "Note, selecting %s instead of %s\n" +#: apt-pkg/indexrecords.cc:47 +#, c-format msgid "No sections in Release file %s" msgstr "Pas de sections dans le fichier Release %s" @@ -2841,7 +2854,7 @@ msgstr "Pas d'entrée de hachage dans le fichier Release %s" msgid "Vendor block %s contains no fingerprint" msgstr "Le bloc de fournisseur %s ne comporte pas d'empreinte" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2850,42 +2863,42 @@ msgstr "" "Utilisation du point de montage %s pour le cédérom\n" "Montage du cédérom\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Identification..." -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Étiquette stockée : %s\n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "Démontage du cédérom...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Utilisation du point de montage %s pour le cédérom\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Démontage du cédérom\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Attente du disque...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Montage du cédérom...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Examen du disque à la recherche de fichiers d'index...\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2894,24 +2907,24 @@ msgstr "" "%zu index de paquets trouvés, %zu index de sources, %zu index de traductions " "et %zu signatures\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -"Aucun fichier de paquets trouvé. Ceci n'est peut-être pas un disque Debian ou " -"bien l'architecture est-elle incorrecte." +"Aucun fichier de paquets trouvé. Ceci n'est peut-être pas un disque Debian " +"ou bien l'architecture est-elle incorrecte." -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Étiquette « %s » trouvée\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Ce nom n'est pas valable, veuillez recommencer.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2920,34 +2933,34 @@ msgstr "" "Ce disque s'appelle :\n" "« %s »\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Copie des listes de paquets..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Écriture de la nouvelle liste de sources\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 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:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "%i enregistrements écrits.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i enregistrements écrits avec %i fichiers manquants.\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -3038,8 +3051,8 @@ msgstr "" "Impossible de verrouiller le répertoire d'administration (%s). Il est " "possible qu'un autre processus l'utilise." -#: apt-pkg/deb/debsystem.cc:73, c-format -#| msgid "Unable to lock the list directory" +#: apt-pkg/deb/debsystem.cc:73 +#, c-format msgid "Unable to lock the administration directory (%s), are you root?" msgstr "" "Impossible de verrouiller le répertoire d'administration (%s). Avez-vous les " diff --git a/po/gl.po b/po/gl.po index 75f29062c..563b26968 100644 --- a/po/gl.po +++ b/po/gl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_gl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -24,7 +24,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "O paquete %s versión %s ten unha dependencia incumprida:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -94,7 +94,7 @@ msgstr "Espazo de reserva total: " msgid "Total space accounted for: " msgstr "Espazo total contabilizado: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "O ficheiro de paquete %s está sen sincronizar." @@ -154,14 +154,14 @@ msgstr " Táboa de versións:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -237,15 +237,15 @@ msgstr "" "Vexa as páxinas de manual de apt-cache(8) e apt.conf(5) para máis " "información.\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "Forneza un nome para este disco, coma \"Debian 2.1r1 Disco 1\"" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Introduza un disco na unidade e prema Intro" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Repita este proceso para o resto de CDs do seu conxunto." @@ -312,7 +312,7 @@ msgstr "" " -o=? Establece unha opción de configuración, por exemplo: -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Non se puido escribir en %s" @@ -661,7 +661,7 @@ msgstr "Non se puido cambiar o nome de %s a %s" msgid "Y" msgstr "S" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Erro na compilación da expresión regular - %s" @@ -762,119 +762,119 @@ msgstr "%lu hanse eliminar e %lu sen actualizar.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu non instalados ou eliminados de todo.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "A corrixir as dependencias..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " fallou." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Non se puido corrixir as dependencias." -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Non se puido minimizar o xogo de actualizacións" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Rematado" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Dependencias incumpridas. Probe a empregar -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVISO: ¡Non se poden autenticar os seguintes paquetes!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Ignórase o aviso de autenticación.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "¿Instalar estes paquetes sen verificación [s/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Non se puido autenticar algúns paquetes" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "Houbo problemas e empregouse -y sen --force-yes" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Erro interno, chamouse a InstallPackages con paquetes rotos." -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 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:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Erro interno, a ordeación non rematou" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Non se puido bloquear o directorio de descargas" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Non se puido ler a lista de orixes." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 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:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Hai que recibir %sB/%sB de arquivos.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Hai que recibir %sB de arquivos.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "Non se puido determinar o espazo libre en %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, 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:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "¡Si, fai o que digo!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -885,28 +885,28 @@ msgstr "" "Para continuar escriba a frase \"%s\"\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Abortar." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "¿Quere continuar [S/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Non se puido obter %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Non se puido descargar algúns ficheiros" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Completouse a descarga no modo de só descargas" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -914,49 +914,49 @@ msgstr "" "Non se puido obter algúns arquivos; probe con apt-get update ou --fix-" "missing." -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 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:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Non se puido corrixir os paquetes non dispoñibles." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "A abortar a instalación." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Nota, escóllese %s no canto de %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, 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:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Instalado]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Debería escoller un para instalar." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -967,71 +967,77 @@ msgstr "" "Isto pode significar que o paquete falla, está obsoleto ou só está\n" "dispoñible noutra fonte.\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Nembargantes, os seguintes paquetes substitúeno:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, 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:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s xa é a versión máis recente.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Non se atopou a versión \"%s\" de \"%s\"" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Non se atopou a versión \"%s\" de \"%s\"" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Escolleuse a versión %s (%s) de %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "A orde \"update\" non toma argumentos" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Non se puido bloquear o directorio de listas" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 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:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" "Os seguintes paquetes instaláronse automaticamente e xa non son necesarios:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"Os seguintes paquetes instaláronse automaticamente e xa non son necesarios:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Empregue \"apt-get autoremove\" para eliminalos." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1049,43 +1055,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 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:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Erro interno, o autoeliminador rompeu cousas" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Erro interno, AllUpgrade rompeu cousas" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Non se puido atopar a tarefa %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Non se puido atopar o paquete %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, 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:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s cambiouse a instalado manualmente.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1093,7 +1099,7 @@ msgstr "" "Dependencias incumpridas. Probe \"apt-get -f install\" sen paquetes (ou " "especifique unha solución)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1104,118 +1110,118 @@ 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:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Paquetes rotos" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Hanse instalar os seguintes paquetes extra:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Paquetes suxiridos:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Paquetes recomendados:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "A calcular a actualización... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Fallou" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Rematado" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Erro interno, o resolvedor interno rompeu cousas" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, 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:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Omítese o ficheiro xa descargado \"%s\"\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, 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:2192 +#: cmdline/apt-get.cc:2229 #, 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:2195 +#: cmdline/apt-get.cc:2232 #, 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:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Obter fonte %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Non se puido recibir algúns arquivos." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Fallou a orde de desempaquetamento \"%s\".\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, 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:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Fallou a codificación de %s.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "O proceso fillo fallou" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 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:2353 +#: cmdline/apt-get.cc:2390 #, 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:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s non ten dependencias de compilación.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1224,7 +1230,7 @@ msgstr "" "A dependencia \"%s\" de %s non se pode satisfacer porque non se pode atopar " "o paquete %s" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1233,32 +1239,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:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, 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:2555 +#: cmdline/apt-get.cc:2594 #, 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:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Non se puido procesar as dependencias de compilación" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Módulos soportados:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1346,7 +1352,7 @@ msgstr "" "máis información e opcións.\n" " Este APT ten Poderes de Supervaca.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1584,9 +1590,13 @@ msgstr "Coincidencia na sobrescritura sen versión para %s" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Non se pode ler %s" @@ -1617,9 +1627,9 @@ msgstr "" "Os directorios info e temp teñen que estar no mesmo sistema de ficheiros" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "A ler as listas de paquetes" @@ -1722,12 +1732,12 @@ msgstr "Non se puido atopar un ficheiro de control válido" msgid "Unparsable control file" msgstr "Ficheiro de control non analizable" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Non se puido ler a base de datos de CD-ROMs %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1735,20 +1745,20 @@ msgstr "" "Empregue apt-cdrom para que APT poida recoñecer este CD-ROM. Non se pode " "empregar apt-get update para engadir CD-ROMs" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "CD-ROM incorrecto" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Non se puido desmontar o CD-ROM de %s, pode estarse empregando aínda." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Non se atopou o disco" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Non se atopou o ficheiro" @@ -1766,34 +1776,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "URI non válido, os URIs locais non deben comezar por //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "A se identificar" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Non se puido determinar o nome do outro extremo" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Non se puido determinar o nome local" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "O servidor rexeitou a conexión e dixo: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "A orde USER fallou, o servidor dixo: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "A orde PASS fallou, o servidor dixo: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1801,115 +1811,115 @@ msgstr "" "Especificouse un servidor proxy pero non un script de conexión, Acquire::" "ftp::ProxyLogin está baleiro." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "A orde do script de conexión \"%s\" fallou, o servidor dixo: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "A orde TYPE fallou, o servidor dixo: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Tempo esgotado para a conexión" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "O servidor pechou a conexión" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Erro de lectura" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Unha resposta desbordou o buffer." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Corrupción do protocolo" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Erro de escritura" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Non se puido crear un socket" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "" "Non se puido conectar o socket de datos, o tempo esgotouse para a conexión" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Non se puido conectar o socket pasivo." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo non puido obter un socket para escoitar" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Non se puido ligar un socket" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Non se puido escoitar no socket" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Non se puido determinar o nome do socket" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Non se puido enviar a orde PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Familia de enderezos %u (AF_*) descoñecida" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "A orde EPRT fallou, o servidor dixo: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "A conexión do socket de datos esgotou o tempo" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Non se pode aceptar a conexión" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Problema ao calcular o hash do ficheiro" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Non se pode obter o ficheiro, o servidor dixo \"%s\"" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "O socket de datos esgotou o tempo" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "A transferencia de datos fallou, o servidor dixo \"%s\"" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Petición" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Non se puido chamar a " @@ -2024,93 +2034,93 @@ msgstr "Non se puido abrir unha canle para %s" msgid "Read error from %s process" msgstr "Erro de lectura do proceso %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "A agardar polas cabeceiras" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Recibiuse unha soa liña de cabeceira en %u caracteres" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Liña de cabeceira incorrecta" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "O servidor HTTP enviou unha cabeceira de resposta non válida" -#: methods/http.cc:588 +#: methods/http.cc:593 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:603 +#: methods/http.cc:608 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:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Este servidor HTTP ten un soporte de rangos roto" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Formato de data descoñecido" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Fallou a chamada a select" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "A conexión esgotou o tempo" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Erro ao escribir no ficheiro de saída" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Erro ao escribir nun ficheiro" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Erro ao escribir no ficheiro" -#: methods/http.cc:883 +#: methods/http.cc:888 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:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Erro ao ler do servidor" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Non se puido truncar o ficheiro" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Datos da cabeceira incorrectos" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "A conexión fallou" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Erro interno" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Non se pode facer mmap sobre un ficheiro baleiro" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Non se puido facer mmap de %lu bytes" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2258,13 +2268,13 @@ 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:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Non se pode cambiar a %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Non se puido analizar o CD-ROM" @@ -2293,51 +2303,50 @@ msgstr "Non se puido obter o bloqueo %s" msgid "Waited for %s but it wasn't there" msgstr "Agardouse por %s pero non estaba alí" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "O subproceso %s recibiu un fallo de segmento." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "O subproceso %s recibiu un fallo de segmento." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, 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:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "O subproceso %s saíu de xeito inesperado" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Non se puido abrir o ficheiro %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Problema ao pechar o ficheiro" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Problema ao borrar o ficheiro" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Problema ao sincronizar o ficheiro" @@ -2430,16 +2439,16 @@ msgstr "Versións candidatas" msgid "Dependency generation" msgstr "Xeración de dependencias" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "A ler a información do estado" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Non se puido abrir o ficheiro de estado %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Non se puido gravar o ficheiro de estado temporal %s" @@ -2479,32 +2488,32 @@ msgstr "Liña %lu mal formada na lista de fontes %s (dist absoluta)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Liña %lu mal formada na lista de fontes %s (análise de dist)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "A abrir %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Liña %u longa de máis na lista de fontes %s." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Liña %u mal formada na lista de fontes %s (tipo)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "O tipo \"%s\" non se coñece na liña %u da lista de fontes %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Liña %u mal formada na lista de fontes %s (id de provedor)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2527,7 +2536,7 @@ msgid "" msgstr "" "O paquete %s ten que se reinstalar, pero non se pode atopar o seu arquivo." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2535,11 +2544,11 @@ msgstr "" "Erro, pkgProblemResolver::Resolve xerou interrupcións, pode estar causado " "por paquetes retidos." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 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:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2559,12 +2568,12 @@ msgstr "O directorio de arquivos %spartial falla." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "A obter o ficheiro %li de %li (fallan %s)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "A obter o ficheiro %li de %li" @@ -2584,16 +2593,16 @@ 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:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "O sistema de empaquetamento \"%s\" non está soportado" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Non se puido determinar un tipo de sistema de empaquetamento axeitado" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Non se pode analizar %s." @@ -2611,136 +2620,135 @@ 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:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" 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:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Non se entendeu o tipo de inmobilización %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "" "Non se indicou unha prioridade (ou indicouse cero) para a inmobilización" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "A caché ten un sistema de versionamento incompatible" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Ocorreu un erro ao procesar %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Ocorreu un erro ao procesar %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Ocorreu un erro ao procesar %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Ocorreu un erro ao procesar %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Ocorreu un erro ao procesar %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Ocorreu un erro ao procesar %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Ocorreu un erro ao procesar %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Ocorreu un erro ao procesar %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Ocorreu un erro ao procesar %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "Guau, superou o número de nomes de paquetes que este APT pode manexar." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Guau, superou o número de versións que este APT pode manexar." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "Guau, superou o número de descricións que este APT pode manexar." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Guau, superou o número de dependencias que este APT pode manexar." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Ocorreu un erro ao procesar %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Ocorreu un erro ao procesar %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Non se atopou o paquete %s %s ao procesar as dependencias de ficheiros" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Non se atopou a lista de paquetes fonte %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "A recoller as provisións de ficheiros" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "Erro de E/S ao gravar a caché de fontes" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "fallou o cambio de nome, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "Os MD5Sum non coinciden" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Os \"hashes\" non coinciden" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 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" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2749,7 +2757,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:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2758,7 +2766,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:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2766,19 +2774,17 @@ msgstr "" "Os ficheiros de índices de paquetes están corrompidos. Non hai un campo " "Filename: para o paquete %s." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Os tamaños non coinciden" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Non se pode analizar o ficheiro de paquetes %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Nota, escóllese %s no canto de %s\n" @@ -2792,7 +2798,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "O bloque de provedor %s non contén unha pegada dixital" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2801,42 +2807,42 @@ msgstr "" "A empregar o punto de montaxe de CD-ROMs %s\n" "A montar o CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "A identificar.. " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Etiqueta armacenada: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "A desmontar o CD-ROM...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "A empregar o punto de montaxe de CD-ROMs %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "A desmontar o CD-ROM\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "A agardar polo disco...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "A montar o CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "A buscar os ficheiros de índices no disco..\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2845,22 +2851,22 @@ msgstr "" "Atopáronse %zu índices de paquetes, %zu índices de fontes, %zu índices de " "traducións e %zu sinaturas\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Atopouse a etiqueta \"%s\"\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Ese non é un nome válido, volva tentalo.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2869,34 +2875,34 @@ msgstr "" "Este disco chámase: \n" "\"%s\"\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "A copiar as listas de paquetes..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "A gravar a nova lista de fontes\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "As entradas da lista de fontes deste disco son:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Graváronse %i rexistros.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, 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:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -2987,7 +2993,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Non se puido bloquear o directorio de listas" diff --git a/po/he.po b/po/he.po index 4e66faa54..842442672 100644 --- a/po/he.po +++ b/po/he.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.25\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+0200\n" "PO-Revision-Date: 2004-06-10 19:58+0300\n" "Last-Translator: Lior Kaplan <webmaster@guides.co.il>\n" "Language-Team: Hebrew\n" @@ -21,7 +21,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "לחבילה %s בגרסה %s יש תלויות שלא נענו:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -91,7 +91,7 @@ msgstr "" msgid "Total space accounted for: " msgstr "" -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "קובץ החבילה %s לא מסונכרן." @@ -149,14 +149,14 @@ msgstr "" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -195,15 +195,15 @@ msgid "" "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" msgstr "" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "" @@ -246,7 +246,7 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "לא מצליח לכתוב ל-%s" @@ -549,7 +549,7 @@ msgstr "כשלון בשינוי השם %s ל-%s" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "" @@ -651,119 +651,119 @@ msgstr "%lu יוסרו ו-%lu לא ישודרגו.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu לא מותקנות לחלוטין או הוסרו.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "מתקן תלויות..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr "כשלון." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "לא מצליח לתקן תלויות" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "א ז ה ר ה: החבילות החיוניות הבאות יוסרו" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr "סיום" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "אולי תרצה להריץ 'apt-get -f install' כדי לתקן את אלו." -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "תלויות שלא נענו. נסה להשתמש באפשרות -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 #, fuzzy msgid "WARNING: The following packages cannot be authenticated!" msgstr "החבילות הבאות ישודרגו:" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "היו בעיות והאפשרות -y היתה בשימוש ללא האפשרות --force-yes" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "" -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "לא מצליח לנעול את ספרית ההורדה." -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "רשימת המקורות לא ניתנת לקריאה." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "צריך לקבל %sB/%sB מתוך הארכיונים.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "צריך לקבל %sB מתוך הארכיונים.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "אחרי פריסה %sB נוספים יהיו בשימוש.\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "אחרי פריסה %sB נוספים ישוחררו.\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, fuzzy, c-format msgid "Couldn't determine free space in %s" msgstr "אין לך מספיק מקום פנוי ב-%s." -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "אין לך מספיק מקום פנוי ב-%s." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "כן, עשה כפי שאני אומר!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -771,75 +771,75 @@ msgid "" " ?] " msgstr "" -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "בטל." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 #, fuzzy msgid "Do you want to continue [Y/n]? " msgstr "האם אתה רוצה להמשיך? [Y/n]" -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "כשלון בהבאת %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "כשלון בהורדת חלק מהקבצים" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "ההורדה הסתיימה במסגרת מצב הורדה בלבד." -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" msgstr "" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "" -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "" -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr "" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "" -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -847,69 +847,74 @@ msgid "" "is only available from another source\n" msgstr "" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "החבילות החדשות הבאות הולכות להיות מותקנות:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "החבילות החדשות הבאות הולכות להיות מותקנות:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -925,50 +930,50 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "שגיאה פנימית, כלשון ביצירת %s" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "אבל %s הולכת להיות מותקנת" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -976,153 +981,153 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "" -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 #, fuzzy msgid "Internal error, problem resolver broke stuff" msgstr "שגיאה פנימית, כלשון ביצירת %s" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "" -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, 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:2514 +#: cmdline/apt-get.cc:2551 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1166,7 +1171,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1389,9 +1394,13 @@ msgstr "" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "" @@ -1421,9 +1430,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "" @@ -1523,32 +1532,32 @@ msgstr "" msgid "Unparsable control file" msgstr "" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 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 "" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "" -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 #, fuzzy msgid "Disk not found." msgstr "(לא נמצא)" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "" @@ -1566,147 +1575,147 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." msgstr "" -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "" -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "" -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "" @@ -1815,94 +1824,94 @@ msgstr "" msgid "Read error from %s process" msgstr "" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 #, fuzzy msgid "Failed to truncate file" msgstr "כשלון בפענוח %s" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2049,13 +2058,13 @@ msgstr "" msgid "Unable to stat the mount point %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "" @@ -2084,50 +2093,50 @@ msgstr "" msgid "Waited for %s but it wasn't there" msgstr "" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "" -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, c-format msgid "Sub-process %s received signal %u." msgstr "" -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "" @@ -2220,16 +2229,16 @@ msgstr "" msgid "Dependency generation" msgstr "" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "כשלון בפתיחת %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "כשלון בפענוח %s" @@ -2269,32 +2278,32 @@ msgstr "" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "" -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2313,17 +2322,17 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2341,12 +2350,12 @@ msgstr "" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "" @@ -2366,16 +2375,16 @@ msgstr "" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "" @@ -2392,157 +2401,156 @@ msgstr "" msgid "You may want to run apt-get update to correct these problems" msgstr "" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "" -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, 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:1290 +#: apt-pkg/acquire-item.cc:1275 #, 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:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to open DB file %s: %s" msgid "Unable to parse Release file %s" msgstr "לא מצליח לפתוח את קובץ מסד הנתונים %s: %s" @@ -2561,105 +2569,105 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" "Mounting CD-ROM\n" msgstr "" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "" -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" "zu signatures\n" msgstr "" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" "'%s'\n" msgstr "" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "" -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -2746,7 +2754,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the download directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "לא מצליח לנעול את ספרית ההורדה." diff --git a/po/hu.po b/po/hu.po index d052a126f..c422e1f24 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: hu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -25,7 +25,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "%s csomag %s verziójának teljesítetlen függősége van:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -95,7 +95,7 @@ msgstr "Slack terület összesen: " msgid "Total space accounted for: " msgstr "Terület összesen: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "%s csomag fájl szinkronon kívül." @@ -154,14 +154,14 @@ msgstr " Verziótáblázat:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -236,15 +236,15 @@ msgstr "" " -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/tmp\n" "Lásd az apt-cache(8) és apt.conf(5) kézikönyvlapokat további információért.\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "Adj egy nevet e lemezhez, mint például 'Debian 2.1r1 Disk 1'" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Tégy be egy lemezt a meghajtóba és üss enter-t" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Ismételd meg e folyamatot készleted többi CD-jével is." @@ -309,7 +309,7 @@ msgstr "" " -c=? Ezt a konfigurációs fájlt olvassa be\n" " -o=? Beállít egy tetszőleges konfigurációs opciót, pl -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Nem lehet írni ebbe: %s" @@ -654,7 +654,7 @@ msgstr "Nem sikerült átnevezni %s-t erre: %s" msgid "Y" msgstr "I" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Regex fordítási hiba - %s" @@ -755,118 +755,118 @@ msgstr "%lu eltávolítandó és %lu nem frissített.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu nincs teljesen telepítve/eltávolítva.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Függőségek javítása..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " sikertelen." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Nem lehet javítani a függőségeket" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Nem lehet minimalizálni a frissítendő csomagok mennyiségét" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Kész" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 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:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "FIGYELEM: Az alábbi csomagok nem hitelesíthetők!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "A hitelesítési figyelmeztetést átléptem.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 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:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Néhány csomag nem hitelesíthető" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 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:785 +#: cmdline/apt-get.cc:784 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:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Belső hiba, a rendezés nem zárult" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Nem tudom zárolni a letöltési könyvtárat" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "A források listája olvashatatlan." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 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:842 +#: cmdline/apt-get.cc:841 #, 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:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Letöltés az archívumokból: %sB\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nem határozható meg a szabad hely itt: %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "Nincs elég szabad hely itt: %s." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Igen, tedd amit mondok!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -877,28 +877,28 @@ msgstr "" "A folytatáshoz írd be ezt: '%s'\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Megszakítva." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Folytatni akarod [Y/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Sikertelen letöltés: %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Néhány fájlt nem sikerült letölteni" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 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:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -906,47 +906,47 @@ 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:1016 +#: cmdline/apt-get.cc:1018 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:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Nem lehet javítani a hiányzó csomagokat." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Telepítés megszakítása." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Megjegyzés: %s kiválasztása %s helyett\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, 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:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Telepítve]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 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:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -956,68 +956,73 @@ 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:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "De az alábbi csomagok felváltják:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, 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:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s már a legújabb verzió.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "'%s' kiadás ehhez: '%s' nem található" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "'%s' verzió ehhez: '%s' nem található" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "%s (%s) a kiválasztott verzió ehhez: %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Az update parancsnak nincsenek argumentumai" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Nem tudom a listakönyvtárat zárolni" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 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:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Az alábbi csomagok automatikusan települtek, de már nem kellenek:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "Az alábbi csomagok automatikusan települtek, de már nem kellenek:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Töröld az 'apt-get autoremove' paranccsal!" -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1035,43 +1040,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 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:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Belső hiba, az AutoRemover sérült" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Belső hiba, AllUpgrade megsértett valamit" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Hiányzó %s feladat" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Az alábbi csomag nem található: %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, 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:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s kézi telepítésre állított.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1079,7 +1084,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:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1091,118 +1096,118 @@ 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:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Törött csomagok" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Az alábbi extra csomagok kerülnek telepítésre:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Javasolt csomagok:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Ajánlott csomagok:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Frissítés kiszámítása... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Sikertelen" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Kész" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Belső hiba, hibafeloldó gond" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "Nem található forráscsomag ehhez: %s" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, 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:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "Nincs elég szabad hely itt: %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, 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:2195 +#: cmdline/apt-get.cc:2232 #, 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:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Forrás letöltése: %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Nem sikerült néhány archívumot letölteni." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "'%s' kibontási parancs nem sikerült.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, 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:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "'%s' elkészítési parancs nem sikerült.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Hiba a gyermekfolyamatnál" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 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:2353 +#: cmdline/apt-get.cc:2390 #, 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:2373 +#: cmdline/apt-get.cc:2410 #, 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:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1211,7 +1216,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:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1220,32 +1225,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:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, 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:2555 +#: cmdline/apt-get.cc:2594 #, 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:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Nem sikerült az építési függőségeket feldolgozni" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Támogatott modulok:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1330,7 +1335,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:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1566,9 +1571,13 @@ msgstr "Csomagtalálat felülírása %s verziója nélkül" msgid "File %s/%s overwrites the one in the package %s" msgstr "A(z) %s/%s fájl felülírja a(z) %s csomagban levőt" +#. 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "%s nem olvasható" @@ -1598,9 +1607,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "Az info és temp könyvtáraknak egy fájlrendszeren kell lenniük" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Csomaglisták olvasása" @@ -1703,12 +1712,12 @@ msgstr "Nem található érvényes vezérlő fájl" msgid "Unparsable control file" msgstr "Értelmezhetetlen vezérlő fájl" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "%s CD-ROM adatbázis nem olvasható" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1716,20 +1725,20 @@ msgstr "" "Kérlek használd az apt-cdrom parancsot a CD felismertetésére. Az apt-get " "update nem használható új CD-k hozzáadására" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Hibás CD" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Nem lehet lecsatolni az itt lévő CD-ROM-ot: %s, talán még használod." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Nem találom a lemezt" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Nem találom a fájlt" @@ -1747,34 +1756,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "Érvénytelen URI, helyi URIk nem kezdődhetnek //-el" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Bejelentkezés a kiszolgálóra:" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Nem lehet a társ nevét megállapítani" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Nem lehet a helyi nevet megállapítani" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "A kiszolgáló megtagadta a kapcsolatot: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "Hibás USER, a kiszolgáló üzenete: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "Hibás PASS, a kiszolgáló üzenete: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1782,114 +1791,114 @@ msgstr "" "Egy proxy kiszolgáló meg lett adva login szkript nélkül, és az Acquire::ftp::" "ProxyLogin üres." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "A login szkript '%s' parancsa hibázott, a kiszolgáló üzenete: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "Hibás TYPE, a kiszolgáló üzenete: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Időtúllépés a kapcsolatban" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "A kiszolgáló lezárta a kapcsolatot" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Olvasási hiba" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "A válasz túlcsordította a puffert." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Protokoll hiba" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Írási hiba" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Nem lehet létrehozni a socket-et" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Nem lehet kapcsolódni az adat sockethez, a kapcsolat túllépte az időt" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Nem lehet kapcsolódni a passzív sockethez." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "A getaddrinfo nem talált figyelő socketet" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Nem lehet összekapcsolódni a sockettel" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Nem lehet figyelni a socketen" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Nem lehet megállapítani a socket nevét" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Nem lehet PORT parancsot küldeni" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Ismeretlen %u címcsalád (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "Hibás EPRT, a kiszolgáló üzenete: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Az adat sockethez kapcsolódás túllépte az időt" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Nem lehet elfogadni a kapcsolatot" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Probléma a fájl hash értékének meghatározásakor" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Nem lehet letölteni a fájlt, a kiszolgáló üzenete: '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Az adat socket túllépte az időt" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Adatátvitel sikertelen, a kiszolgáló üzenete: '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Lekérdezés" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Nem lehet meghívni " @@ -1998,95 +2007,95 @@ msgstr "Nem lehet csövet nyitni ehhez: %s" msgid "Read error from %s process" msgstr "Olvasási hiba %s folyamattól" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Várakozás a fejlécekre" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Egyetlen fejléc sort kaptam, ami több mint %u karakteres" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Rossz fejléc sor" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 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:588 +#: methods/http.cc:593 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:603 +#: methods/http.cc:608 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:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Ez a http szerver támogatja a sérült tartományokat " -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Ismeretlen dátum formátum" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Sikertelen kiválasztás" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Időtúllépés a kapcsolatban" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Hiba a kimeneti fájl írásakor" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Hiba fájl írásakor" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Hiba a fájl írásakor" -#: methods/http.cc:883 +#: methods/http.cc:888 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:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Hiba a kiszolgálóról olvasáskor" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 #, fuzzy msgid "Failed to truncate file" msgstr "%s fájl írása sikertelen" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Rossz fejlécadat" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Sikertelen kapcsolódás" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Belső hiba" # FIXME -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Nem lehet mmap-olni egy üres fájlt" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Nem sikerült %lu bájtot mmap-olni" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2234,13 +2243,13 @@ 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:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Nem sikerült ide váltani: %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Nem sikerült elérni a CD-ROM-ot." @@ -2269,51 +2278,50 @@ msgstr "Nem sikerült zárolni: %s" msgid "Waited for %s but it wasn't there" msgstr "%s nem volt itt, ahogy vártam" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "%s alfolyamat szegmentálási hibát okozott." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "%s alfolyamat szegmentálási hibát okozott." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, 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:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "%s alfolyamat váratlanul kilépett" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Nem lehet megnyitni %s fájlt" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Hiba a fájl bezárásakor" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Hiba a fájl leválasztásával" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Hiba a fájl szinkronizálásakor" @@ -2406,16 +2414,16 @@ msgstr "Lehetséges verziók" msgid "Dependency generation" msgstr "Függőség-generálás" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Állapot adatok olvasása" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "%s állapot-fájl megnyitása sikertelen" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "%s átmeneti állapot-fájl írása sikertelen" @@ -2455,32 +2463,32 @@ msgstr "A(z) %lu. sor hibás %s forráslistában (Abszolút dist)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "A(z) %lu. sor hibás %s forráslistában (dist feldolgozó)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "%s megnyitása" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "A(z) %u. sor túl hosszú %s forráslistában." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "A(z) %u. sor hibás %s forráslistában (típus)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "'%s' típus nem ismert a(z) %u. sorban a(z) %s forráslistában" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "A(z) %u. sor hibás %s forráslistában (terjesztő id)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2503,7 +2511,7 @@ msgid "" msgstr "" "A(z) %s csomagot újra kell telepíteni, de nem találok archívumot hozzá." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2511,12 +2519,12 @@ msgstr "" "Hiba, a pkgProblemResolver::Resolve töréseket generált, ezt visszafogott " "csomagok okozhatják." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 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:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2536,12 +2544,12 @@ msgstr "%spartial archívumkönyvtár hiányzik." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "%li/%li fájl letöltése (%s marad)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "%li/%li fájl letöltése" @@ -2561,16 +2569,16 @@ 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:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "A(z) '%s' csomagrendszer nem támogatott" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "A megfelelő csomagrendszer típus nem határozható meg" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "%s nem érhető el." @@ -2588,138 +2596,137 @@ 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:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" 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:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "A(z) %s tűtípus nem értelmezhető" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Nincs prioritás (vagy nulla) megadva a tűhöz" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "A gyorsítótárnak inkompatibilis verziórendszere van" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Hiba történt %s feldolgozásakor (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Hiba történt %s feldolgozásakor (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Hiba történt %s feldolgozásakor (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Hiba történt %s feldolgozásakor (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Hiba történt %s feldolgozásakor (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Hiba történt %s feldolgozásakor (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Hiba történt %s feldolgozásakor (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Hiba történt %s feldolgozásakor (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Hiba történt %s feldolgozásakor (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Ez nem semmi, túllépted a csomagnevek számát, amit ez az APT kezelni tud!" -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" "Ez nem semmi, túllépted a csomagverziók számát, amit ez az APT kezelni tud!" -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" "Ez nem semmi, túllépted a csomagleírások számát, amit ez az APT kezelni tud!" -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Ez nem semmi, túllépted a függőségek számát, amit ez az APT kezelni tud." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Hiba történt %s feldolgozásakor (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Hiba történt %s feldolgozásakor (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "%s %s csomag nem volt megtalálható a fájl függőségeinek feldolgozása közben" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nem lehet a(z) %s forrás csomaglistáját elérni" # FIXME -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "\"Előkészít\" kapcsolatok összegyűjtése" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "IO hiba a forrás-gyorsítótár mentésekor" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "sikertelen átnevezés, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "Az MD5Sum nem megfelelő" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "A Hash Sum nem megfelelő" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 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" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2728,7 +2735,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:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2737,26 +2744,24 @@ 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:1331 +#: apt-pkg/acquire-item.cc:1316 #, 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:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "A méret nem megfelelő" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Nem lehet a(z) %s csomagfájlt feldolgozni (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Megjegyzés: %s kiválasztása %s helyett\n" @@ -2770,7 +2775,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "A(z) %s terjesztő blokk nem tartalmaz ujjlenyomatot" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2779,42 +2784,42 @@ msgstr "" "%s CD-ROM csatolási pont használata\n" "CD-ROM csatolása\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Azonosítás.. " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Tárolt címke: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "CD-ROM leválasztása...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "%s CD-ROM csatolási pont használata\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "CD-ROM leválasztása\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Várakozás a lemezre...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "CD-ROM felcsatolása...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Indexfájlok keresése a lemezen...\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2823,22 +2828,22 @@ msgstr "" "%zu csomag-indexet, %zu forrás-indexet, %zu fordítás-indexet és %zu aláírást " "találtam\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Talált címke: '%s'\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "E név érvénytelen, próbáld újra.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2847,34 +2852,34 @@ msgstr "" "E lemez neve: \n" "%s\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Csomaglisták másolása..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Új forráslista írása\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 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:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "%i rekord kiírva.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, 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:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, 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" @@ -2961,7 +2966,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Nem tudom a listakönyvtárat zárolni" diff --git a/po/it.po b/po/it.po index c5293153d..6fe3da8a3 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.20\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+0200\n" "PO-Revision-Date: 2009-06-04 13:23+0200\n" "Last-Translator: Milo Casagrande <milo@ubuntu.com>\n" "Language-Team: Italian <tp@lists.linux.it>\n" @@ -22,7 +22,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Il pacchetto %s versione %s ha una dipendenza non soddisfatta:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -92,7 +92,7 @@ msgstr "Totale spazio inutilizzato: " msgid "Total space accounted for: " msgstr "Totale spazio occupato: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Il file dei pacchetti %s non è sincronizzato." @@ -151,14 +151,14 @@ msgstr " Tabella versione:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -235,15 +235,15 @@ msgstr "" "Per maggiori informazioni, consultare le pagine di manuale apt-cache(8) e " "apt.conf(5).\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "Dare un nome a questo disco, tipo \"Debian 5.0 Disco 1\"" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Inserire un disco nell'unità e premere Invio" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Ripetere questo processo per il resto dei CD." @@ -308,7 +308,7 @@ msgstr "" " -c=? Legge come configurazione il file specificato\n" " -o=? Imposta un'opzione di configurazione, come -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Impossibile scrivere in %s" @@ -655,7 +655,7 @@ msgstr "Rinomina di %s in %s non riuscita" msgid "Y" msgstr "S" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Errore di compilazione dell'espressione regolare - %s" @@ -757,125 +757,125 @@ msgstr "%lu da rimuovere e %lu non aggiornati.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu non completamente installati o rimossi.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Correzione delle dipendenze..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " non riuscita." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Impossibile correggere le dipendenze" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Impossibile minimizzare l'insieme da aggiornare" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Fatto" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Dipendenze non trovate. Riprovare usando -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ATTENZIONE: i seguenti pacchetti non possono essere autenticati." -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Avviso di autenticazione disabilitato.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Installare questi pacchetti senza verificarli [s/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Alcuni pacchetti non possono essere autenticati" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" "Errore interno, InstallPackages è stato chiamato con un pacchetto " "danneggiato." -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 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:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Errore interno, l'ordinamento non è stato terminato" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Impossibile bloccare la directory di scaricamento" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Impossibile leggere l'elenco dei sorgenti." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 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:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "È necessario scaricare %sB/%sB di archivi.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "È necessario scaricare %sB di archivi.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "Impossibile determinare lo spazio libero su %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "Spazio libero in %s insufficiente." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Sì, esegui come da richiesta." -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -886,28 +886,28 @@ msgstr "" "Per continuare scrivere la frase \"%s\"\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Interrotto." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Continuare [S/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Impossibile recuperare %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Scaricamento di alcuni file non riuscito" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Scaricamento completato e in modalità solo scaricamento" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -915,48 +915,48 @@ msgstr "" "Impossibile recuperare alcuni pacchetti. Potrebbe essere utile eseguire " "\"apt-get update\" o provare l'opzione \"--fix-missing\"." -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing su supporti estraibili non è ancora supportato" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Impossibile correggere i pacchetti mancanti." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Interruzione dell'installazione." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Nota, viene selezionato %s al posto di %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, 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:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Installato]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "È necessario sceglierne uno da installare." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -967,61 +967,61 @@ msgstr "" "pacchetto. Questo significa che il pacchetto manca, è diventato obsoleto\n" "oppure è disponibile solo all'interno di un'altra sorgente\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Tuttavia questi pacchetti lo sostituiscono:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Il pacchetto %s non ha candidati da installare" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s è già alla versione più recente.\n" # (ndt) dovrebbe essere inteso il file Release -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Release \"%s\" per \"%s\" non trovato." # (ndt) dovrebbe essere inteso il Version -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Version \"%s\" per \"%s\" non trovato" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Versione %s (%s) selezionata per %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "Nessun pacchetto sorgente \"%s\", selezionato \"%s\" al suo posto\n" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Il comando update non accetta argomenti" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Impossibile bloccare la directory" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 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:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1029,11 +1029,18 @@ msgstr "" "I seguenti pacchetti sono stati installati automaticamente e non sono più " "richiesti:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"I seguenti pacchetti sono stati installati automaticamente e non sono più " +"richiesti:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Usare \"apt-get autoremove\" per rimuoverli." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1051,44 +1058,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "Le seguenti informazioni possono aiutare a risolvere la situazione: " -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Errore interno, AutoRemover ha rovinato qualche cosa" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Errore interno, AllUpgrade ha rovinato qualche cosa" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Impossibile trovare il task %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Impossibile trovare il pacchetto %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Nota, si sta selezionando %s per l'espressione regolare \"%s\"\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "È stato impostato %s per l'installazione manuale.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1096,7 +1103,7 @@ msgstr "" "Dipendenze non soddisfatte. Provare \"apt-get -f install\" senza pacchetti " "(o specificare una soluzione)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1108,118 +1115,118 @@ 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:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Pacchetto danneggiato" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "I seguenti pacchetti saranno inoltre installati:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Pacchetti suggeriti:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Pacchetti raccomandati:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Calcolo dell'aggiornamento... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Non riuscito" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Eseguito" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Errore interno, \"problem resolver\" ha rovinato qualcosa" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "Impossibile trovare un pacchetto sorgente per %s" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Il pacchetto \"%s\" già scaricato viene saltato\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "Lo spazio libero in %s è insufficiente" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "È necessario recuperare %sB/%sB di sorgenti.\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "È necessario recuperare %sB di sorgenti\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Recupero sorgente %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Recupero di alcuni archivi non riuscito." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Comando di estrazione \"%s\" non riuscito.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, 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:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Comando \"%s\" di generazione non riuscito.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Creazione processo figlio non riuscita" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 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:2353 +#: cmdline/apt-get.cc:2390 #, 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:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s non ha dipendenze di generazione.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1228,7 +1235,7 @@ msgstr "" "%s dipendenze per %s non possono essere soddisfatte perché il pacchetto %s " "non può essere trovato" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1237,74 +1244,33 @@ 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:2514 +#: cmdline/apt-get.cc:2551 #, 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 nuovo" -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2578 #, 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:2555 +#: cmdline/apt-get.cc:2594 #, 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:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Elaborazione delle dipendenze di generazione non riuscita" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Moduli supportati:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy -#| msgid "" -#| "Usage: apt-get [options] command\n" -#| " apt-get [options] install|remove pkg1 [pkg2 ...]\n" -#| " apt-get [options] source pkg1 [pkg2 ...]\n" -#| "\n" -#| "apt-get is a simple command line interface for downloading and\n" -#| "installing packages. The most frequently used commands are update\n" -#| "and install.\n" -#| "\n" -#| "Commands:\n" -#| " update - Retrieve new lists of packages\n" -#| " upgrade - Perform an upgrade\n" -#| " install - Install new packages (pkg is libc6 not libc6.deb)\n" -#| " remove - Remove packages\n" -#| " autoremove - Remove automatically all unused packages\n" -#| " purge - Remove and purge packages\n" -#| " source - Download source archives\n" -#| " build-dep - Configure build-dependencies for source packages\n" -#| " dist-upgrade - Distribution upgrade, see apt-get(8)\n" -#| " dselect-upgrade - Follow dselect selections\n" -#| " clean - Erase downloaded archive files\n" -#| " autoclean - Erase old downloaded archive files\n" -#| " check - Verify that there are no broken dependencies\n" -#| "\n" -#| "Options:\n" -#| " -h This help text.\n" -#| " -q Loggable output - no progress indicator\n" -#| " -qq No output except for errors\n" -#| " -d Download only - do NOT install or unpack archives\n" -#| " -s No-act. Perform ordering simulation\n" -#| " -y Assume Yes to all queries and do not prompt\n" -#| " -f Attempt to correct a system with broken dependencies in place\n" -#| " -m Attempt to continue if archives are unlocatable\n" -#| " -u Show a list of upgraded packages as well\n" -#| " -b Build the source package after fetching it\n" -#| " -V Show verbose version numbers\n" -#| " -c=? Read this configuration file\n" -#| " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -#| "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -#| "pages for more information and options.\n" -#| " This APT has Super Cow Powers.\n" msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1390,7 +1356,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:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1637,9 +1603,13 @@ msgstr "Il pacchetto sovrascritto corrisponde senza versione per %s" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Impossibile leggere %s" @@ -1669,9 +1639,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "Le directory temp e info devono essere sullo stesso file system" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Lettura elenco dei pacchetti" @@ -1775,12 +1745,12 @@ msgstr "Impossibile localizzare un file \"control\" valido" msgid "Unparsable control file" msgstr "File \"control\" non analizzabile" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Impossibile leggere il database del CD-ROM %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1788,20 +1758,20 @@ msgstr "" "Usare apt-cdrom per far riconoscere questo CD-ROM da APT. apt-get update non " "può essere usato per aggiungere nuovi CD-ROM" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "CD-ROM sbagliato" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Impossibile smontare il CD-ROM in %s, potrebbe essere ancora in uso." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Disco non trovato" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "File non trovato" @@ -1819,34 +1789,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "URI non valido, gli URI locali non devono iniziare con //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Accesso in corso" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Impossibile determinare il nome del nodo" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Impossibile determinare il nome locale" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Il server ha rifiutato la connessione e riporta: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER non riuscito, il server riporta: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS non riuscito, il server riporta: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1854,115 +1824,115 @@ msgstr "" "È stato specificato un server proxy, ma nessuno script di accesso: Acquire::" "ftp::ProxyLogin è vuoto." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "" "Comando dello script di accesso \"%s\" non riuscito, il server riporta: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE non riuscito, il server riporta: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Connessione scaduta" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Il server ha chiuso la connessione" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Errore di lettura" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Una risposta ha superato le dimensioni del buffer." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Protocollo danneggiato" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Errore di scrittura" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Impossibile creare un socket" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Impossibile connettersi al socket dati, connessione terminata" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Impossibile connettere socket passivo." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "Impossibile ottenere un socket in ascolto con getaddrinfo()" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Impossibile eseguire bind() su un socket" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Impossibile eseguire listen() su un socket" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Impossibile determinare il nome del socket" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Impossibile inviare il comando PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Famiglia di indirizzamento %u (AF_*) sconosciuta" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT non riuscito, il server riporta: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Connessione al socket dati terminata" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Impossibile accettare connessioni" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Si è verificato un problema nel creare l'hash del file" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Impossibile recuperare il file, il server riporta: \"%s\"" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Socket dati terminato" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Trasferimento dati non riuscito, il server riporta: \"%s\"" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Interrogazione" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Impossibile invocare " @@ -2077,93 +2047,93 @@ msgstr "Impossibile aprire una pipe per %s" msgid "Read error from %s process" msgstr "Errore di lettura dal processo %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "In attesa degli header" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Ricevuta una singola riga header su %u caratteri" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Riga header non corretta" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "Il server HTTP ha inviato un header di risposta non valido" -#: methods/http.cc:588 +#: methods/http.cc:593 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:603 +#: methods/http.cc:608 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:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Questo server HTTP ha un supporto del range non corretto" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Formato della data sconosciuto" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Select non riuscita" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Connessione terminata" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Errore nello scrivere sul file di output" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Errore nello scrivere su file" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Errore nello scrivere sul file" -#: methods/http.cc:883 +#: methods/http.cc:888 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:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Errore nel leggere dal server" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Troncamento del file non riuscito" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Header dati non corretto" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Connessione non riuscita" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Errore interno" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Impossibile eseguire mmap su un file vuoto" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Impossibile eseguire mmap di %lu byte" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2316,13 +2286,13 @@ 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:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Impossibile passare a %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Esecuzione di stat sul CD-ROM non riuscita" @@ -2351,51 +2321,50 @@ msgstr "Impossibile impostare il blocco %s" msgid "Waited for %s but it wasn't there" msgstr "In attesa di %s ma non era presente" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Il sottoprocesso %s ha ricevuto un segmentation fault." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Il sottoprocesso %s ha ricevuto un segmentation fault." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, 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:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Il sottoprocesso %s è uscito inaspettatamente" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Impossibile aprire il file %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Si è verificato un problema nel chiudere il file" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Si è verificato un problema nell'eseguire l'unlink del file" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Si è verificato un problema nel sincronizzare il file" @@ -2489,16 +2458,16 @@ msgstr "Versioni candidate" msgid "Dependency generation" msgstr "Generazione delle dipendenze" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Lettura informazioni sullo stato" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Apertura del file di stato %s non riuscita" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Scrittura del file temporaneo di stato %s non riuscita" @@ -2538,32 +2507,32 @@ msgstr "La riga %lu nel file %s non è corretta (absolute dist)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "La riga %lu nel file %s non è corretta (dist parse)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Apertura di %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Riga %u troppo lunga nel file %s." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "La riga %u nel file %s non è corretta (type)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Tipo \"%s\" non riconosciuto alla riga %u nel file %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "La riga %u nel file %s non è corretta (vendor id)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2588,7 +2557,7 @@ msgstr "" "Il pacchetto %s deve essere reinstallato, ma non è possibile trovarne un " "archivio." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2596,12 +2565,12 @@ msgstr "" "Errore, pkgProblemResolver::Resolve ha generato delle interruzioni. Questo " "potrebbe essere causato da pacchetti bloccati." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "" "Impossibile correggere i problemi, ci sono pacchetti danneggiati bloccati." -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2621,12 +2590,12 @@ msgstr "Manca la directory di archivio %spartial." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Scaricamento file %li di %li (%s rimanente)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Scaricamento file %li di %li" @@ -2646,16 +2615,16 @@ 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:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Il sistema di pacchetti \"%s\" non è supportato" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Impossibile determinare un tipo di sistema appropriato di pacchetti" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Impossibile eseguire stat su %s." @@ -2675,138 +2644,137 @@ 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:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "Campo non valido nel file delle preferenze: manca l'header \"Package\"" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Impossibile capire il tipo di gancio %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Priorità per il gancio non specificata (o zero)" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "La cache ha un sistema di gestione delle versioni incompatibile" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Si è verificato un errore nell'elaborare %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Si è verificato un errore nell'elaborare %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Si è verificato un errore nell'elaborare %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Si è verificato un errore nell'elaborare %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Si è verificato un errore nell'elaborare %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Si è verificato un errore nell'elaborare %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Si è verificato un errore nell'elaborare %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Si è verificato un errore nell'elaborare %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Si è verificato un errore nell'elaborare %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "È stato superato il numero di nomi di pacchetti che questo APT può gestire." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "È stato superato il numero di versioni che questo APT può gestire." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "È stato superato il numero di descrizioni che questo APT può gestire." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "È stato superato il numero di dipendenze che questo APT può gestire." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Si è verificato un errore nell'elaborare %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Si è verificato un errore nell'elaborare %s (CollectFileProvides)" # (ndt) il primo è il nome del pacchetto, il secondo la versione -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Il pacchetto %s v.%s non è stato trovato durante l'elaborazione delle " "dipendenze" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Impossibile eseguire stat sull'elenco dei pacchetti sorgente %s" # (ndt) non mi convince per niente, ma vediamo cosa salta fuori -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Il file fornisce" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "Errore di I/O nel salvare la cache sorgente" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "rename() non riuscita: %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5sum non corrispondente" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Somma hash non corrispondente" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "" "Non è disponibile alcuna chiave pubblica per i seguenti ID di chiavi:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2815,7 +2783,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:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2824,7 +2792,7 @@ msgstr "" "Impossibile trovare un file per il pacchetto %s. Potrebbe essere necessario " "sistemare manualmente questo pacchetto." -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2832,19 +2800,17 @@ msgstr "" "L'indice dei file è danneggiato. Manca il campo \"Filename:\" per il " "pacchetto %s." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Le dimensioni non corrispondono" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Impossibile analizzare il file di pacchetto %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Nota, viene selezionato %s al posto di %s\n" @@ -2858,7 +2824,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Il blocco vendor %s non contiene impronte" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2867,42 +2833,42 @@ msgstr "" "Viene usato il punto di mount del CD-ROM %s\n" "Montaggio CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Identificazione... " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Etichette archiviate: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "Smontaggio CD-ROM...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Viene usato il punto di mount del CD-ROM %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Smontaggio CD-ROM\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "In attesa del disco...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Montaggio CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Analisi del disco per file indice...\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2911,22 +2877,22 @@ msgstr "" "Trovati %zu indici di pacchetto, %zu indici di sorgente, %zu indici di " "traduzione e %zu firme\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Trovata l'etichetta \"%s\"\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Questo non è un nome valido, riprovare.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2935,34 +2901,34 @@ msgstr "" "Questo disco è chiamato: \n" "\"%s\"\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Copia elenco pacchetti..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Scrittura nuovo elenco sorgenti\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Le voci dell'elenco sorgenti per questo disco sono:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Scritti %i record.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Scritti %i record con %i file mancanti.\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -3052,7 +3018,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Impossibile bloccare la directory" diff --git a/po/ja.po b/po/ja.po index 1f2b0df9c..fa7e91bdb 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+0200\n" "PO-Revision-Date: 2008-11-13 09:26+0900\n" "Last-Translator: Kenshi Muto <kmuto@debian.org>\n" "Language-Team: Debian Japanese List <debian-japanese@lists.debian.org>\n" @@ -22,7 +22,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "パッケージ %s のバージョン %s には解決不可能な依存関係があります:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -92,7 +92,7 @@ msgstr "総空き容量: " msgid "Total space accounted for: " msgstr "総占有容量: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Package ファイル %s が同期していません。" @@ -150,14 +150,14 @@ msgstr " バージョンテーブル:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -231,15 +231,15 @@ msgstr "" " -o=? 指定した設定オプションを読み込む (例: -o dir::cache=/tmp)\n" "詳細は、apt-cache(8) や apt.conf(5) のマニュアルページを参照してください。\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "このディスクに、'Debian 2.1r1 Disk 1' のような名前を付けてください" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "ディスクをドライブに入れて enter を押してください" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "" "あなたの持っている CD セットの残り全部に、この手順を繰り返してください。" @@ -305,7 +305,7 @@ msgstr "" " -c=? 指定した設定ファイルを読み込む\n" " -o=? 指定した設定オプションを適用する (例: -o dir::cache=/tmp)\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "%s に書き込めません" @@ -650,7 +650,7 @@ msgstr "%s を %s に名前変更できませんでした" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "正規表現の展開エラー - %s" @@ -751,121 +751,121 @@ msgstr "削除: %lu 個、保留: %lu 個。\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu 個のパッケージが完全にインストールまたは削除されていません。\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "依存関係を解決しています ..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " 失敗しました。" -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "依存関係を訂正できません" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "アップグレードセットを最小化できません" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " 完了" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "" "これらを直すためには 'apt-get -f install' を実行する必要があるかもしれませ" "ん。" -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "未解決の依存関係があります。-f オプションを試してください。" -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "警告: 以下のパッケージは認証されていません!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "認証の警告は上書きされました。\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "検証なしにこれらのパッケージをインストールしますか [y/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "いくつかのパッケージを認証できませんでした" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "問題が発生し、-y オプションが --force-yes なしで使用されました" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "内部エラー、InstallPackages が壊れたパッケージで呼び出されました!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "パッケージを削除しなければなりませんが、削除が無効になっています。" -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "内部エラー、調整が終わっていません" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "ダウンロードディレクトリをロックできません" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "ソースのリストを読むことができません。" -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "おっと、サイズがマッチしません。apt@packages.debian.org にメールしてください" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "%2$sB 中 %1$sB のアーカイブを取得する必要があります。\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "%sB のアーカイブを取得する必要があります。\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "この操作後に追加で %sB のディスク容量が消費されます。\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "この操作後に %sB のディスク容量が解放されます。\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s の空き領域を測定できません" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "%s に充分な空きスペースがありません。" -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Trivial Only が指定されましたが、これは簡単な操作ではありません。" -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Yes, do as I say!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -876,28 +876,28 @@ msgstr "" "続行するには、'%s' というフレーズをタイプしてください。\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "中断しました。" -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "続行しますか [Y/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s の取得に失敗しました %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "いくつかのファイルの取得に失敗しました" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "ダウンロードオンリーモードでパッケージのダウンロードが完了しました" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -905,49 +905,49 @@ msgstr "" "いくつかのアーカイブが取得できません。apt-get update を実行するか --fix-" "missing オプションを付けて試してみてください。" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing とメディア交換は現在同時にはサポートされていません" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "足りないパッケージを直すことができません。" -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "インストールを中断します。" -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "注意、%2$s の代わりに %1$s を選択します\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "すでにインストールされておりアップグレードも設定されていないため、%s をスキッ" "プします。\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "パッケージ %s はインストールされていないため、削除はできません\n" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "%s は以下のパッケージで提供されている仮想パッケージです:\n" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [インストール済み]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "インストールするパッケージを明示的に選択する必要があります。" -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -958,70 +958,76 @@ msgstr "" "おそらく、そのパッケージが見つからないか、もう古くなっているか、\n" "あるいは別のソースからのみしか利用できないという状況が考えられます\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "しかし、以下のパッケージで置き換えられています:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "パッケージ %s にはインストール候補がありません" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "ダウンロードできないため、%s の再インストールは不可能です。\n" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s はすでに最新バージョンです。\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "'%2$s' のリリース '%1$s' が見つかりませんでした" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "'%2$s' のバージョン '%1$s' が見つかりませんでした" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "%3$s にはバージョン %1$s (%2$s) を選択しました\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "update コマンドは引数をとりません" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "list ディレクトリをロックできません" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "一連のものを削除するようになっていないので、AutoRemover を開始できません" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" "以下のパッケージが自動でインストールされましたが、もう必要とされていません:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"以下のパッケージが自動でインストールされましたが、もう必要とされていません:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "これらを削除するには 'apt-get autoremove' を利用してください。" -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1039,45 +1045,45 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "以下の情報がこの問題を解決するために役立つかもしれません:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "内部エラー、AutoRemover が何かを破壊しました" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "内部エラー、AllUpgrade が何かを破壊しました" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "タスク %s が見つかりません" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "パッケージ %s が見つかりません" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "注意: 正規表現 '%2$s' に対して %1$s を選択しました\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s は手動でインストールしたと設定されました。\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" "以下の問題を解決するために 'apt-get -f install' を実行する必要があるかもしれ" "ません:" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1085,7 +1091,7 @@ msgstr "" "未解決の依存関係です。'apt-get -f install' を実行してみてください (または解法" "を明示してください)。" -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1097,118 +1103,118 @@ msgstr "" "であれば) 必要なパッケージがまだ作成されていなかったり Incoming から移\n" "動されていないことが考えられます。" -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "壊れたパッケージ" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "以下の特別パッケージがインストールされます:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "提案パッケージ:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "推奨パッケージ:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "アップグレードパッケージを検出しています ... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "失敗" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "完了" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "内部エラー、問題リゾルバが何かを破壊しました" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "" "ソースを取得するには少なくともひとつのパッケージ名を指定する必要があります" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "%s のソースパッケージが見つかりません" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "すでにダウンロードされたファイル '%s' をスキップします\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "%s に充分な空きスペースがありません" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "%2$sB 中 %1$sB のソースアーカイブを取得する必要があります。\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "%sB のソースアーカイブを取得する必要があります。\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "ソース %s を取得\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "いくつかのアーカイブの取得に失敗しました。" -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "すでに %s に展開されたソースがあるため、展開をスキップします\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "展開コマンド '%s' が失敗しました。\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" "'dpkg-dev' パッケージがインストールされていることを確認してください。\n" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "ビルドコマンド '%s' が失敗しました。\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "子プロセスが失敗しました" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "" "ビルド依存関係をチェックするパッケージを少なくとも 1 つ指定する必要があります" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s のビルド依存情報を取得できません" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s にはビルド依存情報が指定されていません。\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1217,7 +1223,7 @@ msgstr "" "パッケージ %3$s が見つからないため、%2$s に対する %1$s の依存関係を満たすこと" "ができません" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1226,32 +1232,32 @@ msgstr "" "入手可能な %3$s はいずれもバージョンについての要求を満たせないため、%2$s に対" "する %1$s の依存関係を満たすことができません" -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%2$s の依存関係 %1$s を満たすことができません: %3$s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s のビルド依存関係を満たすことができませんでした。" -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "ビルド依存関係の処理に失敗しました" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "サポートされているモジュール:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1340,7 +1346,7 @@ msgstr "" "apt.conf(5) を参照してください。\n" " この APT は Super Cow Powers 化されています。\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1577,9 +1583,13 @@ msgstr "%s に対するバージョンのないパッケージマッチを上書 msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "%s を読み込むことができません" @@ -1609,9 +1619,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "info と temp ディレクトリは同じファイルシステム上になければなりません" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "パッケージリストを読み込んでいます" @@ -1716,12 +1726,12 @@ msgstr "正しいコントロールファイルを特定できませんでした msgid "Unparsable control file" msgstr "解析できないコントロールファイル" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "CD-ROM データベース %s を読み込むことができません" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1729,20 +1739,20 @@ msgstr "" "この CD-ROM を APT に認識させるには apt-cdrom を使用してください。新しい CD-" "ROM を追加するために apt-get update は使用できません。" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "CD が違います" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "%s の CD-ROM は使用中のためアンマウントすることができません。" -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "ディスクが見つかりません。" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "ファイルが見つかりません" @@ -1760,34 +1770,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "不正な URI です。ローカルの URI は // で始まってはいけません" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "ログインしています" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "ピアネームを決定することができません" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "ローカルネームを決定することができません" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "サーバから接続を拒絶されました。応答: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER 失敗、サーバ応答: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS 失敗、サーバ応答: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1795,114 +1805,114 @@ msgstr "" "プロキシサーバが指定されていますが、ログインスクリプトが設定されていません。" "Acquire::ftp::ProxyLogin が空です。" -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "ログインスクリプトのコマンド '%s' 失敗、サーバ応答: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE 失敗、サーバ応答: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "接続タイムアウト" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "サーバが接続を切断しました" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "読み込みエラー" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "レスポンスがバッファをオーバフローさせました。" -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "プロトコルが壊れています" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "書き込みエラー" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "ソケットを作成できません" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "データソケットへ接続できませんでした。接続がタイムアウトしました" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "パッシブソケットに接続できません。" -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo はリスニングポートを取得することができませんでした" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "ソケットをバインドできませんでした" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "ソケットをリスンできませんでした" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "ソケットの名前を特定できませんでした" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "PORT コマンドを送信できません" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "未知のアドレスファミリ %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT に失敗しました。サーバ応答: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "データソケット接続タイムアウト" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "接続を accept できません" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "ファイルのハッシュでの問題" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "ファイルを取得できません。サーバ応答 '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "データソケットタイムアウト" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "データ転送に失敗しました。サーバ応答 '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "問い合わせ" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "呼び出せません" @@ -2013,93 +2023,93 @@ msgstr "%s に対してパイプを開けませんでした" msgid "Read error from %s process" msgstr "%s プロセスからの読み込みエラー" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "ヘッダの待機中です" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "%u 文字を超える 1 行のヘッダを取得しました" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "不正なヘッダ行です" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "http サーバが不正なリプライヘッダを送信してきました" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "http サーバが不正な Content-Length ヘッダを送信してきました" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "http サーバが不正な Content-Range ヘッダを送信してきました" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "http サーバのレンジサポートが壊れています" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "不明な日付フォーマットです" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "select に失敗しました" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "接続タイムアウト" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "出力ファイルへの書き込みでエラーが発生しました" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "ファイルへの書き込みでエラーが発生しました" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "ファイルへの書き込みでエラーが発生しました" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "リモート側で接続がクローズされてサーバからの読み込みに失敗しました" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "サーバからの読み込みに失敗しました" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "ファイルの切り詰めに失敗しました" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "不正なヘッダです" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "接続失敗" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "内部エラー" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "空のファイルを mmap できません" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "%lu バイトの mmap ができませんでした" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2246,13 +2256,13 @@ msgstr "不正な操作 %s" msgid "Unable to stat the mount point %s" msgstr "マウントポイント %s の状態を取得できません" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "%s へ変更することができません" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "cdrom の状態を取得するのに失敗しました" @@ -2281,51 +2291,50 @@ msgstr "ロック %s が取得できませんでした" msgid "Waited for %s but it wasn't there" msgstr "%s を待ちましたが、そこにはありませんでした" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "子プロセス %s がセグメンテーション違反を受け取りました。" -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "子プロセス %s がセグメンテーション違反を受け取りました。" -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "子プロセス %s がエラーコード (%u) を返しました" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "子プロセス %s が予期せず終了しました" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "ファイル %s をオープンできませんでした" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "読み込みが %lu 残っているはずですが、何も残っていません" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "あと %lu 書き込む必要がありますが、書き込むことができませんでした" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "ファイルのクローズ中に問題が発生しました" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "ファイルの削除中に問題が発生しました" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "ファイルの同期中に問題が発生しました" @@ -2418,16 +2427,16 @@ msgstr "候補バージョン" msgid "Dependency generation" msgstr "依存関係の生成" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "状態情報を読み取っています" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "状態ファイル %s のオープンに失敗しました" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "一時状態ファイル %s の書き込みに失敗しました" @@ -2467,32 +2476,32 @@ msgstr "ソースリスト %2$s の %1$lu 行目が不正です (absolute dist)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "ソースリスト %2$s の %1$lu 行目が不正です (dist parse)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "%s をオープンしています" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "ソースリスト %2$s の %1$u 行目が長すぎます。" -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "ソースリスト %2$s の %1$u 行目が不正です (type)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "ソースリスト %3$s の %2$u 行にあるタイプ '%1$s' は不明です" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "ソースリスト %2$s の %1$u 行目が不正です (vendor id)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2516,7 +2525,7 @@ msgstr "" "パッケージ %s を再インストールする必要がありますが、そのためのアーカイブを見" "つけることができませんでした。" -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2524,11 +2533,11 @@ msgstr "" "エラー、pkgProblemResolver::Resolve は停止しました。おそらく変更禁止パッケー" "ジが原因です。" -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "問題を解決することができません。壊れた変更禁止パッケージがあります。" -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2548,12 +2557,12 @@ msgstr "アーカイブディレクトリ %spartial が見つかりません。" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "ファイルを取得しています %li/%li (残り %s)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "ファイルを取得しています %li/%li" @@ -2575,16 +2584,16 @@ msgstr "" "'%s' とラベルの付いたディスクをドライブ '%s' に入れて enter を押してくださ" "い。" -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "パッケージングシステム '%s' はサポートされていません" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "適切なパッケージシステムタイプを特定できません" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "%s の状態を取得できません。" @@ -2605,134 +2614,133 @@ msgstr "" "これらの問題を解決するためには apt-get update を実行する必要があるかもしれま" "せん" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "" "不正なレコードが preferences ファイルに存在します。パッケージヘッダがありませ" "ん" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "pin タイプ %s が理解できませんでした" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "pin で優先度 (または 0) が指定されていません" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "キャッシュに非互換なバージョニングシステムがあります" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "%s を処理中にエラーが発生しました (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "%s を処理中にエラーが発生しました (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "%s を処理中にエラーが発生しました (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "%s を処理中にエラーが発生しました (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "%s を処理中にエラーが発生しました (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "%s を処理中にエラーが発生しました (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "%s を処理中にエラーが発生しました (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "%s を処理中にエラーが発生しました (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "%s を処理中にエラーが発生しました (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "この APT が対応している以上の数のパッケージが指定されました。" -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "この APT が対応している以上の数のバージョンが要求されました。" -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "この APT が対応している以上の数の説明が要求されました。" -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "この APT が対応している以上の数の依存関係が発生しました。" -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "%s を処理中にエラーが発生しました (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "%s を処理中にエラーが発生しました (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "パッケージ %s %s がファイル依存の処理中に見つかりませんでした" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "ソースパッケージリスト %s の状態を取得できません" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "ファイル提供情報を収集しています" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "ソースキャッシュの保存中に IO エラーが発生しました" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "名前の変更に失敗しました。%s (%s -> %s)" -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5Sum が適合しません" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "ハッシュサムが適合しません" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "以下の鍵 ID に対して利用可能な公開鍵がありません:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2741,7 +2749,7 @@ msgstr "" "パッケージ %s のファイルの位置を特定できません。おそらくこのパッケージを手動" "で修正する必要があります (存在しないアーキテクチャのため)。" -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2750,7 +2758,7 @@ msgstr "" "パッケージ %s のファイルの位置を特定できません。おそらくこのパッケージを手動" "で修正する必要があります。" -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2758,19 +2766,17 @@ msgstr "" "パッケージインデックスファイルが壊れています。パッケージ %s に Filename: " "フィールドがありません。" -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "サイズが適合しません" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "パッケージファイル %s を解釈することができません (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "注意、%2$s の代わりに %1$s を選択します\n" @@ -2784,7 +2790,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "ベンダブロック %s は鍵指紋を含んでいません" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2793,42 +2799,42 @@ msgstr "" "CD-ROM マウントポイント %s を使用します\n" "CD-ROM をマウントしています\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "確認しています.. " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "格納されたラベル: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "CD-ROM をアンマウントしています ...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "CD-ROM マウントポイント %s を使用します\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "CD-ROM をアンマウントしています\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "ディスクを待っています ...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "CD-ROM をマウントしています ...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "ディスクのインデックスファイルを走査しています ..\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2837,22 +2843,22 @@ msgstr "" "%zu のパッケージインデックス、%zu のソースインデックス、%zu の翻訳インデック" "ス、%zu の署名を見つけました\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "ラベル '%s' を見つけました\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "これは有効な名前ではありません。再試行してください。\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2861,34 +2867,34 @@ msgstr "" "このディスクは以下のように呼ばれます: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "パッケージリストをコピーしています ..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "新しいソースリストを書き込んでいます\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "このディスクのソースリストのエントリ:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "%i レコードを書き込みました。\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i レコードを書き込みました。%i 個のファイルが存在しません。\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i レコードを書き込みました。%i 個の適合しないファイルがあります。\n" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -2979,7 +2985,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "list ディレクトリをロックできません" diff --git a/po/km.po b/po/km.po index 9ecea2f87..c05f9a824 100644 --- a/po/km.po +++ b/po/km.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_km\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -25,7 +25,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "កញ្ចប់ %s កំណែ %s មាន​ភាព​អាស្រ័យ​មិន​ត្រូវ​គ្នា ៖\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -97,7 +97,7 @@ msgstr "ទំហំ slack សរុប ៖" msgid "Total space accounted for: " msgstr "ទំហំ​សរុប​ដែល​ទុក​សម្រាប់ ៖ " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "ឯកសារ​កញ្ចប់ %s នៅ​ខាងក្រៅ​ការ​ធ្វើសមកាលកម្ម ។" @@ -155,14 +155,14 @@ msgstr " តារាង​កំណែ ៖" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -237,15 +237,15 @@ msgstr "" " -o=? កំណត់​ជម្រើស​ការ​កំណត់​រចនា​សម្ព័ន្ធ​តាម​ចិត្ត ឧ. eg -o dir::cache=/tmp\n" "មើល​ apt-cache(8) និង​ apt.conf(5) សម្រាប់​ព័ត៌មាន​បន្ថែម​​មាន​ក្នុង​ទំព័រ​សៀវភៅដៃ​ ។\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "សូម​ផ្ដល់​ឈ្មោះ​ឲ្យ​ថាស​នេះ ឧទាហរណ៍​ដូចជា 'ដេបៀន 2.1r1 ថាស​ទី ១' ជាដើម" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "សូម​បញ្ចូល​ថាស​ក្នុង​ដ្រាយ​ហើយ​ចុច​បញ្ចូល​" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "ធ្វើដំណើរការ​នេះ​ម្តង​ទៀត​ សម្រាប់​ស៊ីឌី​ទាំងអស់​​ក្នុង​សំណុំ​របស់​អ្នក ។" @@ -310,7 +310,7 @@ msgstr "" " -c=? អាន​ឯកសារ​ការ​កំណត់​រចនាស្ព័ន្ធ​នេះ\n" " -o=? កំណត់​ជម្រើស​ការ​កំណត់​រចនា​សម្ព័ន្ធ​តាម​ចិត្ត ឧ. eg -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "មិន​អាច​សរសេរ​ទៅ %s" @@ -654,7 +654,7 @@ msgstr "បរាជ័យ​ក្នុង​ការ​ប្តូរ​ឈ msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Regex កំហុស​ការចងក្រង​ - %s" @@ -755,118 +755,118 @@ msgstr "%lu ដែលត្រូវ​យក​ចេញ​ ហើយ​ %lu msgid "%lu not fully installed or removed.\n" msgstr "%lu មិន​បាន​ដំឡើង​ ឬ យក​ចេញបានគ្រប់ជ្រុងជ្រោយ​ឡើយ​ ។\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "កំពុង​កែ​ភាពអាស្រ័យ​..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " បាន​បរាជ័យ ។" -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "មិន​អាច​កែ​ភាព​អាស្រ័យ​បានឡើយ​" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "មិនអាច​បង្រួម​ការ​កំណត់​ភាព​ប្រសើរ​​បាន​ឡើយ​" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " ធ្វើ​រួច" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "អ្នក​ប្រហែល​ជា​ចង់រត់ `apt-get -f install' ដើម្បី​កែ​វា​​ទាំងនេះ​ហើយ ។" -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "ភាព​អាស្រ័យ​ដែល​ខុស​គ្នា ។ ព្យាយាម​ការ​ប្រើ -f ។" -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ព្រមាន​ ៖ មិនអាច​ធ្វើការផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវកញ្ចប់ខាងក្រោមបានឡើយ !" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "បានបដិសេធ​ការព្រមាន​ការផ្ទៀងផ្ទាត់ភាព​ត្រឹមត្រូវ ។\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "ដំឡើង​កញ្ចប់​ទាំងនេះ ​ដោយគ្មានការពិនិត្យ​បញ្ជាក់ [y/N] ? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "មិនអាច​ផ្ទៀងផ្ទាត់ភាពត្រឹមត្រូវកញ្ចប់​មួយចំនួន​បានឡើយ​" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "មាន​បញ្ហា​ ហើយ -y ត្រូវ​បាន​ប្រើ​ដោយគ្មាន​​ --force​-yes" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "កំហុស​ខាងក្នុង កញ្ចប់​ដំឡើង​ត្រូវ​បាន​ហៅ​​ជាមួយ​កញ្ចប់​ដែល​ខូច !" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "កញ្ចប់ ​ត្រូវការឲ្យ​យក​ចេញ​​ ប៉ុន្តែមិនអនុញ្ញាត​ឲ្យយកចេញឡើយ ។" -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "កំហុស​ខាងក្នុង​ ការ​រៀប​តាម​លំដាប់​មិន​បាន​បញ្ចប់ឡើយ" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "មិន​អាច​ចាក់​សោ​ថត​ទាញ​យក​បាន​ឡើយ" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "មិន​អាច​អាន​បញ្ជី​ប្រភព​បាន​ឡើយ​ ។" -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "យី អី​ក៏​ចម្លែង​ម្លេះ.. ទំហំ​មិន​ដូច​គ្នា​ឡើយ ។ សូម​ផ្ញើ​អ៊ីមែល​ទៅ apt@packages.debian.org" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "ត្រូវការ​​យក​ %sB/%sB នៃ​ប័ណ្ណសារ ។​\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "ត្រូវ​ការយក​ %sB នៃ​ប័ណ្ណសារ ។\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "បន្ទាប់​ពី​ពន្លា​ %sB នៃ​ការ​បន្ថែម​​ទំហំ​ថាស​ត្រូវ​បាន​ប្រើ ។\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "បន្ទាប់​ពី​ពន្លា​ %sB ទំហំ​ថាសនឹង​​ទំនេរ ។ \n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "មិន​អាច​កំណត់​ទំហំ​ទំនេរ​ក្នុង​ %s បានឡើយ" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "អ្នក​គ្មាន​ទំហំ​​ទំនេរ​គ្រប់គ្រាន់​ក្នុង​​ %s ឡើយ ។" -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "បានបញ្ជាក់​តែប្រតិបត្តិការដែលមិនសំខាន់ប៉ុណ្ណោះ ប៉ុន្តែ​នេះមិនមែនជាប្រតិបត្តិការមិនសំខាន់នោះទេ ។" -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "បាទ/ចាស ធ្វើ​ដូច​ដែល​ខ្ញុំ​និយាយ !" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -877,28 +877,28 @@ msgstr "" "ដើម្បី​បន្ត ​​វាយ​ក្នុង​ឃ្លា​ '%s'\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "បោះបង់ ។" -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "តើ​អ្នក​ចង់​បន្តឬ​ [បាទ ចាស/ទេ​] ? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "បរាជ័យ​ក្នុង​ការ​ទៅ​ប្រមូល​យក​ %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "ឯកសារ​មួយ​ចំនួន​បាន​បរាជ័យ​ក្នុង​ការ​ទាញ​យក​" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "បានបញ្ចប់ការទាញ​យក​ ហើយ​តែ​ក្នុង​របៀប​​ទាញ​យក​ប៉ុណ្ណោះ" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -906,47 +906,47 @@ msgstr "" "អនុញ្ញាត​ឲ្យ​ទៅ​ប្រមូល​យក​ប័ណ្ណសារ​មួយ​ចំនួន​ ប្រហែល​ជា​រត់​ភាព​ទាន់​សម័យ apt-get ឬ ព្យាយាមប្រើ​ជាមួយ --" "fix- ដែលបាត់ឬ់ ?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix- ដែលបាត់​ និង ​ស្វប​មេឌៀ​ដែល​មិនបាន​​គាំទ្រនៅពេល​បច្ចុប្បន្ន​" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "មិន​អាច​កែ​កញ្ចប់​ដែលបាត់បង់​បានឡើយ ។" -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។" -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "ចំណាំ កំពុង​ជ្រើស​ %s ជំនួស​ %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "កំពុង​រំលង​ %s វា​បាន​ដំឡើង​រួចរាល់​ ហើយ​ភាព​ធ្វើឲ្យ​ប្រសើរ​​មិន​ទាន់​កំណត់​​ ។\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "មិនទាន់បានដំឡើង​កញ្ចប់​ %s ទេ​ ដូច្នេះ មិន​បាន​យកចេញឡើយ \n" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "កញ្ចប់​ %s ជា​កញ្ចប់​និម្មិត​ដែល​បាន​ផ្តល់​ដោយ​ ៖\n" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [បានដំឡើង​]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "អ្នក​គួរតែ​ជ្រើស​យក​មួយ​​ឲ្យ​ច្បាស់​ដើម្បី​ដំឡើង​ ។" -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -957,69 +957,74 @@ msgstr "" "វា​មានន័យ​ថា​បាត់កញ្ចប់ ​គេ​លែង​ប្រើ ឬ\n" "អាច​រក​បាន​ពី​ប្រភព​ផ្សេង​ទៀត\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "ទោះ​យ៉ាងណា​ក៏ដោយ កញ្ចប់​ខាងក្រោម​ជំនួស​វា ៖" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "កញ្ចប់​ %s មិនមាន​ការដំឡើងសាកល្បងឡើយ" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "មិនអាចធ្វើការដំឡើង %s ឡើងវិញបានទេ វា​មិនអាចត្រូវបាន​ទាញយកបានឡើយ ។\n" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ជាកំណែ​ដែលថ្មីបំផុតរួចទៅហើយ ។\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "រក​មិន​ឃើញ​ការ​ចេញ​ផ្សាយ​ '%s' សម្រាប់​ '%s' ឡើយ" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "រក​មិន​ឃើញ​កំណែ​ '%s' សម្រាប់ '%s'" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "បានជ្រើស​កំណែ​ %s (%s) សម្រាប់ %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "ពាក្យ​បញ្ជា​ដែលធ្វើ​ឲ្យ​ទាន់​សម័យ​គ្មាន​អាគុយម៉ង់​ទេ" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "មិន​អាច​ចាក់​សោ​ថត​បញ្ជីបានឡើយ" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1035,51 +1040,51 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "ព័ត៌មាន​ដូចតទៅនេះ អាចជួយ​ដោះស្រាយ​ស្ថានភាព​បាន ៖" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "កំហុស​ខាងក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យខូច​ឧបករណ៍" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "កំហុស​ខាងក្នុង ការធ្វើឲ្យប្រសើរ​ទាំងអស់បានធ្វើឲ្យ​ឧបករណ៍​ខូច" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, fuzzy, c-format msgid "Couldn't find task %s" msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "ចំណាំ កំពុង​ជ្រើស​ %s សម្រាប់ regex '%s'\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "អ្នក​ប្រហែល​ជា​ចង់​រត់ `apt-get -f install' ដើម្បី​កែ​ពួក​វា​ទាំង​នេះ ៖" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" "ភាពអស្រ័យ​ដែល​ខុស​គ្នា ។ ព្យាយាម​ 'apt-get -f install' ដោយ​គ្មាន​កញ្ចប់ (ឬ បញ្ជាក់​ដំណោះស្រាយ) ។" -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1091,122 +1096,122 @@ msgstr "" "ដែលបាន​ទាមទារនឹងមិនទាន់បានបង្កើត​ឡើយ​\n" " ឬ ​បានយក​ចេញ​ពីការមកដល់ ។" -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "កញ្ចប់​ដែល​បាន​ខូច​" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "កញ្ចប់​បន្ថែម​ដូចតទៅនេះ នឹងត្រូវបាន​ដំឡើង ៖" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​យោបល់ ៖" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​អនុសាសន៍ ៖" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "កំពុង​គណនា​ការ​ធ្វើ​ឲ្យ​ប្រសើរ... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "បាន​បរាជ័យ" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "ធ្វើរួច​" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "កំហុស​ខាងក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យខូច​ឧបករណ៍" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "យ៉ាងហោចណាស់​ត្រូវ​​បញ្ជាក់​​កញ្ចប់​មួយ ​ដើម្បី​ទៅ​​ប្រមូល​យក​ប្រភព​សម្រាប់" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "មិន​អាច​រក​កញ្ចប់ប្រភព​​សម្រាប់ %s បានឡើយ" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "កំពុង​រំលង​ឯកសារ​ដែល​បាន​ទាញយក​រួច​ '%s'\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "អ្នក​ពុំ​មាន​ទំហំ​ទំនេរ​គ្រប់គ្រាន់​ទេ​នៅក្នុង​ %s ឡើយ" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "ត្រូវការ​យក​ %sB/%sB នៃ​ប័ណ្ណសារ​ប្រភព ។\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "ត្រូវការ​យក​ %sB នៃ​ប័ណ្ណសារ​ប្រភព​ ។\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "ទៅប្រមូល​ប្រភព​ %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "បរាជ័យ​ក្នុងការទៅប្រមូលយក​ប័ណ្ណសារ​មួយចំនួន ។" -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "កំពុង​រំលង​ការស្រាយ​នៃប្រភព​ដែលបានស្រាយរួច​នៅក្នុង %s\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "ពាក្យ​បញ្ជា​ស្រាយ '%s' បាន​បរាជ័យ​ ។\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "ពិនិត្យ​ប្រសិន​បើកញ្ចប់ 'dpkg-dev' មិន​ទាន់​បាន​ដំឡើង​ ។\n" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "សាងសង​ពាក្យ​បញ្ជា​ '%s' បានបរាជ័យ​ ។\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "ដំណើរ​ការ​កូន​បាន​បរាជ័យ​" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "ត្រូវតែ​បញ្ជាក់​យ៉ាងហោចណាស់​មួយកញ្ចប់ដើម្បីពិនិត្យ builddeps សម្រាប់" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "មិន​អាច​សាងសង់​​ព័ត៌មាន​ភាពអស្រ័យ​សម្រាប់ %s" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s មិនមានភាពអាស្រ័យ​ស្ថាបនាឡើយ​ ។\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, 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:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1215,30 +1220,30 @@ msgstr "" "ភាពអាស្រ័យ %s សម្រាប់ %s មិនអាច​តម្រូវចិត្តបានទេ ព្រោះ មិនមាន​កំណែ​នៃកញ្ចប់ %s ដែលអាច​តម្រូវចិត្ត​" "តម្រូវការ​កំណែបានឡើយ" -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2551 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "បរាជ័យ​ក្នុងការ​តម្រូវចិត្តភាពអាស្រ័យ %s សម្រាប់ %s ៖ កញ្ចប់ %s ដែលបានដំឡើង គឺថ្មីពេក" -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "បរាជ័យ​ក្នុងការ​តម្រូវចិត្តភាពអាស្រ័យ %s សម្រាប់ %s: %s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "ភាពអាស្រ័យ​ដែល​បង្កើត​ %s មិន​អាច​បំពេញ​សេចក្ដី​ត្រូវការ​បាន​ទេ ។" -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ដំណើរ​​ការ​បង្កើត​ភាព​អាស្រ័យ" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "ម៉ូឌុល​ដែល​គាំទ្រ ៖ " -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1321,7 +1326,7 @@ msgstr "" "pages for more information and options.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1557,9 +1562,13 @@ msgstr "សរសេរ​ជាន់​លើកញ្ចប់ផ្គួផ msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "មិន​អាច​អាន​ %s បានឡើយ" @@ -1589,9 +1598,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "ថតព័ត៌មាន​ និង ពុម្ព ត្រូវការនៅលើ​ប្រព័ន្ធឯកសារ​ដូចគ្នា​" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "កំពុង​អាន​បញ្ជី​កញ្ចប់" @@ -1693,12 +1702,12 @@ msgstr "បរាជ័យ​ក្នុងការដាក់ទិតាំ msgid "Unparsable control file" msgstr "ឯកសារត្រួតពិនិត្យ​ដែលមិនអាច​ញែកបាន" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "មិន​អាច​អាន​មូលដ្ឋាន​ទិន្នន័យ​​ស៊ីឌីរ៉ូម​​ %s បានឡើយ" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1706,20 +1715,20 @@ msgstr "" "សូម​ប្រើ​ apt-cdrom ដើម្បី​បង្កើត​ស៊ីឌី-រ៉ូម​នេះ​ ដែលបានរៀបចំ​តាម​ APT​ ។ apt-get ធ្វើ​ឲ្យ​ទាន់សម័យ ​មិន​" "ត្រូវ​បានប្រើ​ដើម្បី​បន្ថែម​ស៊ីឌី-រ៉ូមថ្មីឡើយ​" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "ស៊ីឌី-រ៉ូមខុស" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "មិនអាចអាន់ម៉ោន ស៊ីឌី​-រ៉ូម​ នៅ​​ក្នុង​ %s បានទេ វាអាចនៅតែប្រើបាន ។" -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "រក​ថាសមិ​ន​ឃើញ​ ។" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "រកឯកសារ​មិន​ឃើញ​" @@ -1737,148 +1746,148 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "URI មិនត្រឹមត្រូវ​ URIS មូលដ្ឋានមិនត្រូវ​ចាប់ផ្តើម​ជាមួយ​ // ឡើយ" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "កំពុង​ចូល​" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "មិន​អាច​កំណត់ឈ្មោះដែលត្រូវបង្ហាញ​បានឡើយ​" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "មិន​អាច​កំណត់ឈ្មោះមូលដ្ឋាន​បានឡើយ" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "ម៉ាស៊ីន​បម្រើបានបដិសេធ​ការតភ្ជាប់ ហើយ​ បាននិយាយ ៖ %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER បរាជ័យ​ ម៉ាស៊ីន​បម្រើបាន​​និយាយ ៖ %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS បានបរាជ័យ​ ម៉ាស៊ីន​បម្រើបាន​​និយាយ ៖ %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." msgstr "" "ម៉ាស៊ីន​បម្រើ​ប្រូកស៊ី​ត្រូវ​បាន​បញ្ជាក់​ ប៉ុន្តែ​គ្មាន​ស្គ្រីប​ចូល​ទេ Acquire::ftp::ProxyLogin គឺ ទទេ ។" -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "ពាក្យ​បញ្ជា​ស្គ្រីប​ចូល​ '%s' បានបរាជ័យ ម៉ាស៊ីន​បម្រើ​បាននិយាយ ៖ %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE បានបរាជ័យ​ ម៉ាស៊ីន​បម្រើ​បាននិយាយ​ ៖ %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "អស់ពេល​ក្នុងការតភ្ជាប់​" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "ម៉ាស៊ីន​បម្រើ​បាន​បិទ​ការតភ្ជាប់​" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "ការអាន​មានកំហុស" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "ឆ្លើយតប​សតិ​បណ្តោះអាសន្ន​​អស់ចំណុះ ។" -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "ការបង្ខូច​ពិធីការ​" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "ការសរសេរ​មានកំហុស" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "មិន​អាច​បង្កើត​រន្ធបានឡើយ" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "មិន​អាច​តភ្ជាប់​​រន្ធទិន្នន័យ​បានឡើយ អស់​ពេល​ក្នុងការតភ្ជាប់​" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "មិនអាចតភ្ជាប់​​រន្ធអកម្ម​​បានឡើយ ។" -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo មិន​អាច​​ទទួល​យក​រន្ធ​សម្រាប់​ស្តាប់​​បានឡើយ" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "មិន​អាច​ចងរន្ធ​បានបានឡើយ​" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "មិនអាច​ស្ដាប់នៅលើរន្ធ​បានឡើយ" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "មិន​អាច​កំណត់​ឈ្មោះរបស់​រន្ធ​បានឡើយ" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "មិនអាច​ផ្ញើពាក្យ​បញ្ជា​ PORT បានឡើយ" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "មិន​ស្គាល់​អាសយដ្ឋាន​គ្រួសារ​ %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT បរាជ័យ​ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ ៖ %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "ការតភ្ជាប់​រន្ធ​​ទិន្នន័បានអស់ពេល​" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "មិនអាច​ទទួលយក​ការតភ្ជាប់​បានឡើយ" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "បញ្ហា​ធ្វើឲ្យខូច​ឯកសារ" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "មិន​អាច​ទៅ​ប្រមូល​យក​ឯកសារ​បានឡើយ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ​ '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "រន្ធ​ទិន្នន័យ​បាន​អស់​ពេល​" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "បរាជ័យក្នុងការ​ផ្ទេរ​ទិន្នន័យ ម៉ាស៊ីន​បម្រើ​បាន​និយាយ​ '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "សំណួរ​" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "មិន​អាច​ហៅ​ " @@ -1986,94 +1995,94 @@ msgstr "មិន​អាច​បើក​បំពុង​សម្រាប msgid "Read error from %s process" msgstr "អាចន​កំហុស​ពី​ដំណើរការ %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "កំពុង​រង់ចាំ​បឋមកថា" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "យកបន្ទាត់​បឋមកថា​តែមួយ​​ ដែលលើស %u តួអក្សរ" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "ជួរ​បឋមកថា​ខូច​" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើបឋមកថាចម្លើយតបមិនត្រឹមត្រូវ" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើ​​បឋមកថាប្រវែង​​​មាតិកា​មិនត្រឹមត្រូវ​" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "ម៉ាស៊ីន​បម្រើ​ HTTP បានផ្ញើ​បឋមកថា​ជួរ​មាតិកា​មិន​ត្រឹមត្រូវ​" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "ម៉ាស៊ីន​បម្រើ HTTP នេះបាន​ខូច​​​ជួរ​គាំទ្រ​" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "មិនស្គាល់​ទ្រង់ទ្រាយ​កាលបរិច្ឆេទ" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "ជ្រើស​បាន​បរាជ័យ​" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "ការតភ្ជាប់​បាន​អស់ពេល​" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "កំហុស​ក្នុងការ​សរសេរទៅកាន់​ឯកសារលទ្ធផល" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "កំហុស​ក្នុងការ​សរសេរទៅកាន់​ឯកសារ" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "កំហុសក្នុងការ​សរសេរ​ទៅកាន់​ឯកសារ" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "កំហុស​ក្នុងការ​អាន​ពី​ម៉ាស៊ីនបម្រើ ។ ការបញ្ចប់​ពីចម្ងាយ​បានបិទការតភ្ជាប់" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "កំហុស​ក្នុងការអាន​ពី​ម៉ាស៊ីន​បម្រើ" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 #, fuzzy msgid "Failed to truncate file" msgstr "បរាជ័យ​ក្នុងការ​សរសេរ​ឯកសារ %s" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "ទិន្នន័យ​បឋមកថា​ខូច" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "ការតភ្ជាប់​បាន​បរាជ័យ​" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "កំហុស​ខាង​ក្នុង​" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "មិនអាច mmap ឯកសារទទេ​បានឡើយ" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "មិន​អាច​បង្កើត​ mmap នៃ​ %lu បៃបានឡើយ" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2220,13 +2229,13 @@ msgstr "ប្រតិបត្តិការ​មិន​ត្រឹមត msgid "Unable to stat the mount point %s" msgstr "មិនអាច​ថ្លែង ចំណុចម៉ោន %s បានឡើយ" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "មិនអាច​ប្ដូរទៅ %s បានឡើយ" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "បរាជ័យក្នុងការ​ថ្លែង ស៊ីឌីរ៉ូម" @@ -2255,51 +2264,50 @@ msgstr "មិន​អាច​ចាក់សោ %s បានឡើយ" msgid "Waited for %s but it wasn't there" msgstr "រង់ចាំប់​ %s ប៉ុន្តែ ​វា​មិន​នៅទីនោះ" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "ដំណើរការ​រង​ %s បាន​ទទួល​កំហុស​ការ​ចែកជាចម្រៀក​ ។" -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "ដំណើរការ​រង​ %s បាន​ទទួល​កំហុស​ការ​ចែកជាចម្រៀក​ ។" -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "ដំណើរការ​រង​ %s បានត្រឡប់​ទៅកាន់​កូដ​មាន​កំហុស​ (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "ដំណើរការ​រង​ %s បានចេញ ដោយ​មិន​រំពឹង​ទុក​ " -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "មិន​អាច​បើក​ឯកសារ​ %s បានឡើយ" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "អាន​, នៅតែ​មាន %lu ដើម្បី​អាន​ ប៉ុន្តែ​គ្មាន​អ្វី​នៅសល់" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "សរសេរ​, នៅតែមាន​ %lu ដើម្បី​សរសេរ​ ប៉ុន្តែ​មិន​អាច​" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "មាន​បញ្ហា​ក្នុងការ​បិទ​ឯកសារ" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "មានបញ្ហា​ក្នុងការ​ផ្ដាច់តំណ​ឯកសារ" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "មានបញ្ហា​ក្នុង​ការធ្វើ​សមកាលកម្មឯកសារ​" @@ -2392,17 +2400,17 @@ msgstr "កំណែ​សាកល្បង​" msgid "Dependency generation" msgstr "ការបង្កើត​ភាពអាស្រ័យ​" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 #, fuzzy msgid "Reading state information" msgstr "បញ្ចូល​​ព័ត៌មាន​ដែលមាន​ចូល​គ្នា" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "បរាជ័យ​ក្នុង​ការ​បើក %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "បរាជ័យ​ក្នុងការ​សរសេរ​ឯកសារ %s" @@ -2442,32 +2450,32 @@ msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី msgid "Malformed line %lu in source list %s (dist parse)" msgstr "បន្ទាត់ Malformed %lu ក្នុង​បញ្ជី​ប្រភព​ %s (dist ញែក​)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "កំពុង​បើក​ %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "បន្ទាត់​ %u មាន​ប្រវែង​វែងពេកនៅ​ក្នុង​បញ្ជី​ប្រភព​ %s ។" -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "បន្ទាត់​ Malformed %u ក្នុង​បញ្ជី​ប្រភព​ %s (ប្រភេទ​)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "ប្រភេទ​ '%s' មិន​ស្គាល់នៅលើបន្ទាត់​ %u ក្នុង​បញ្ជី​ប្រភព​ %s ឡើយ" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "បន្ទាត់​ Malformed %u ក្នុង​បញ្ជី​ប្រភព​ %s (លេខសម្គាល់​ក្រុមហ៊ុន​លក់)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2489,7 +2497,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "កញ្ចប់ %s ត្រូវការឲ្យដំឡើង ប៉ុន្តែ​ ខ្ញុំ​មិន​អាច​រក​ប័ណ្ណសារ​សម្រាប់​វា​បាន​ទេ​ ។" -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2497,11 +2505,11 @@ msgstr "" "កំហុស pkgProblemResolver::ដោះស្រាយ​សញ្ញាបញ្ឈប់​ដែលបានបង្កើត នេះ​ប្រហែលជា បង្កដោយកញ្ចប់​" "ដែលបាន​ទុក ។" -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "មិន​អាច​កែ​បញ្ហាបានទេេ អ្កបានទុក​កញ្ចប់​ដែល​ខូច ។។" -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2520,12 +2528,12 @@ msgstr "ថត​ប័ណ្ណសារ​ %spartial គឺ​បាត់ប #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "កំពុង​ទៅ​យក​ឯកសារ %li នៃ %li (នៅសល់ %s)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "កំពុង​ទៅយក​ឯកសារ %li នៃ %li" @@ -2545,16 +2553,16 @@ msgstr "វិធីសាស្ត្រ​ %s មិន​អាច​ចា msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "សូម​បញ្ចូល​ស្លាក​ឌីស​ ៖ '%s' ក្នុង​ដ្រាយ​ '%s' ហើយ​សង្កត់​ចូល ។" -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "មិន​គាំទ្រ​ប្រព័ន្ធ​កញ្ចប់'%s' ឡើយ" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "មិនអាច​កំណត់​ប្រភេទ​ប្រព័ន្ធ​កញ្ចប់​ដែល​សមរម្យ​បានឡើយ" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "មិនអាច​ថ្លែង %s បានឡើយ ។" @@ -2571,134 +2579,133 @@ msgstr "បញ្ជី​កញ្ចប់​ ឬ ឯកសារ​ស្ថ msgid "You may want to run apt-get update to correct these problems" msgstr "អ្នកប្រហែលជា​ចង់ភាពទាន់សម័យ apt-get ដើម្បី​កែ​បញ្ហា​ទាំងនេះ" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "កំណត់ត្រា​មិនត្រឹមត្រូវ​នៅក្នុង​ឯកសារចំណង់ចំណូលចិត្ត មិនមាន​បឋមកថា​កញ្ចប់ទេ" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "មិន​បាន​យល់​ពី​ប្រភេទ​ម្ជុល %s ឡើយ" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "គ្មាន​អទិភាព (ឬ សូន្យ​) បានបញ្ជាក់​សម្រាប់​ម្ជុល​ទេ" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "ឃ្លាំងសម្ងាត់​មិន​ត្រូវ​គ្នា​នឹង ប្រព័ន្ធ ធ្វើកំណែ" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "កំហុស​បាន​កើត​ឡើង​​ ខណៈ​ពេល​កំពុង​ដំណើរការ​ %s (កញ្ចប់​ថ្មី​)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "កំហុស​បាន​កើតឡើង​ ខណៈពេល​កំពុង​ដំណើរការ​ %s (ប្រើ​កញ្ចប់​១​)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "កំហុស​បានកើតឡើង​ ខណៈពេល​កំពុង​ដំណើរការ​ %s (កំណែ​​​ឯកសារ​ថ្មី​១)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "កំហុស​បាន​កើតឡើង​ ខណៈពេល​កំពុង​ដំណើរការ​ %s (ប្រើកញ្ចប់២)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "កំហុស​បានកើតឡើង​ ខណៈពេល​កំពុង​ដំណើរការ​ %s (កំណែ​​​ឯកសារ​ថ្មី​១)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "កំហុស​បានកើត​ឡើង​ ខណៈពេល​កំពុង​ដំណើរការ​ %s (កំណែ១ថ្មី​)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "កំហុស​បាន​កើតឡើង​ ខណៈពេល​កំពុង​ដំណើរការ​ %s (ប្រើកញ្ចប់​៣)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "កំហុស​បាន​កើត​ឡើង​ខណៈ​ពេល​កំពុង​ដំណើរការ​ %s (កំណែ២​ថ្មី​)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "កំហុស​បានកើតឡើង​ ខណៈពេល​កំពុង​ដំណើរការ​ %s (កំណែ​​​ឯកសារ​ថ្មី​១)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "អស្ចារ្យ អ្នក​មាន​ឈ្មោះ​កញ្ចប់​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​​  ។" -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "អស្ចារ្យ អ្នក​មាន​កំណែ​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​ ។" -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 #, fuzzy msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "អស្ចារ្យ អ្នក​មាន​កំណែ​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​ ។" -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "អស្ចារ្យ​, អ្នក​មាន​ភាពអាស្រ័យ​លើស​ចំនួន​ APT នេះ​ឆបគ្នា​ ។" -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "កំហុស​បានកើតឡើង​ខណៈពេល​កំពុង​ដំណើរការ​ %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "កំហុស​បានកើតឡើង​ខណៈពេល​កំពុង​ដំណើរការ​%s (ផ្តល់​ឯកសារ​ប្រមូល​ផ្តុំ)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "កញ្ចប់​ %s %s រក​មិន​ឃើញ​ខណៈ​ពេល​កំពុង​ដំណើរការ​ភាពអាស្រ័យ​​ឯកសារ" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "មិនអាចថ្លែង បញ្ជី​កញ្ចប់​ប្រភពចប់​ បានឡើយ %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "ការផ្ដល់​ឯកសារ​ប្រមូលផ្ដុំ" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "IO កំហុសក្នុងការររក្សាទុក​ឃ្លាំង​សម្ងាត់​ប្រភព​" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "ប្តូរ​ឈ្មោះ​បានបរាជ័យ​, %s (%s -> %s) ។" -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5Sum មិន​ផ្គួផ្គង​" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 #, fuzzy msgid "Hash Sum mismatch" msgstr "MD5Sum មិន​ផ្គួផ្គង​" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "គ្មាន​កូនសោ​សាធារណៈ​អាច​រក​បាន​ក្នុងកូនសោ IDs ខាងក្រោម​នេះទេ ៖\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2707,7 +2714,7 @@ msgstr "" "ខ្ញុំ​មិន​អាច​រកទីតាំង​ឯកសារ​សម្រាប់​កញ្ចប់ %s បាន​ទេ ។ ​មាន​ន័យ​ថា​អ្នក​ត្រូវការ​ជួសជុល​កញ្ចប់​នេះ​ដោយ​ដៃ ។ " "(ដោយសារ​​បាត់​ស្ថាបត្យកម្ម)" -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2715,25 +2722,23 @@ msgid "" msgstr "" "ខ្ញុំ​មិន​អាច​រកទីតាំង​ឯកសារ​សម្រាប់​កញ្ចប់ %s បានទេ ។ ​មាន​ន័យ​ថា​អ្នក​ត្រូវការ​ជួសជុល​កញ្ចប់​នេះ​ដោយ​ដៃ ។" -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "កញ្ចប់​ឯកសារ​លិបិក្រម​ត្រូវ​បាន​ខូច ។ គ្មាន​ឈ្មោះ​ឯកសារ ៖ វាល​សម្រាប់​កញ្ចប់នេះ​ទេ​ %s ។" -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "ទំហំ​មិនបាន​ផ្គួផ្គង​" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "មិនអាច​ញែក​ឯកសារកញ្ចប់ %s (1) បានឡើយ" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "ចំណាំ កំពុង​ជ្រើស​ %s ជំនួស​ %s\n" @@ -2747,7 +2752,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "ប្លុក​ក្រុមហ៊ុន​លក់​ %s គ្មាន​ស្នាម​ផ្តិត​ម្រាម​ដៃ" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2756,65 +2761,65 @@ msgstr "" "ការប្រើប្រាស់​ចំណុចម៉ោន​ ស៊ីឌី​-រ៉ូម​ %s\n" "កំពុង​ម៉ោន​ស៊ីឌី-រ៉ូម​\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "កំពុង​ធ្វើអត្តសញ្ញាណនា​.. " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "បានទុក​ស្លាក ៖ %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 #, fuzzy msgid "Unmounting CD-ROM...\n" msgstr "មិនកំពុងម៉ោន ស៊ីឌី​-រ៉ូម​ ទេ..." -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "ប្រើប្រាស់ចំណុចម៉ោន​ ស៊ីឌី​-រ៉ូម​ %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "ការមិនម៉ោន​ ស៊ីឌី-រ៉ូម​\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "កំពុង​រង់ចាំឌីស​...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "កំពុង​ម៉ោន​ ស៊ីឌី​-រ៉ូម​...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "កំពុង​ស្កេន​ឌីស​សម្រាប់​​ឯកសារ​លិបិក្រម​..\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, fuzzy, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" "zu signatures\n" msgstr "បានរកឃើញ លិបិក្រម​កញ្ចប់ %i លិបិក្រម​ប្រភព%i និង ហត្ថលេខា %i \n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, fuzzy, c-format msgid "Found label '%s'\n" msgstr "បានទុក​ស្លាក ៖ %s \n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "នោះមិនមែនជាឈ្មោះត្រឹមត្រូវទេ សូមព្យាយាម​ម្ដងទៀត ។\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2823,34 +2828,34 @@ msgstr "" "ឌីស​នេះ​ត្រូវ​បាន​ហៅ​ ៖ \n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "កំពុង​ចម្លង​បញ្ជី​កញ្ចប់..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "កំពុងសរសេរ​បញ្ជី​ប្រភព​ថ្មី\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "ធាតុបញ្ចូល​បញ្ជីប្រភព​សម្រាប់​ឌីស​នេះគឺ ៖\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "បានសរសេរ %i កំណត់ត្រា ។\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "បានសរសេរ %i កំណត់ត្រា​ជាមួយ​ %i ឯកសារ​ដែល​បាត់បង់ ។\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "បានសរសេរ​ %i កំណត់ត្រា​ជាមួយួយ​ %i ឯកសារ​ដែល​មិន​បាន​ផ្គួផ្គង​\n" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "បានសរសេរ %i កំណត់ត្រា​ជាមួយ​ %i ឯកសារ​ដែល​បាត់បង់​ និង​ %i ឯកសារ​ដែល​មិន​បាន​ផ្គួផ្គង​ ​\n" @@ -2937,7 +2942,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "មិន​អាច​ចាក់​សោ​ថត​បញ្ជីបានឡើយ" diff --git a/po/ko.po b/po/ko.po index e951c32f4..b6d9a3775 100644 --- a/po/ko.po +++ b/po/ko.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+0200\n" "PO-Revision-Date: 2008-11-13 07:14+0900\n" "Last-Translator: Changwoo Ryu <cwryu@debian.org>\n" "Language-Team: Korean <debian-l10n-korean@lists.debian.org>\n" @@ -19,7 +19,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "%s 패키지의 %s 버전의 의존성이 맞지 않습니다:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -89,7 +89,7 @@ msgstr "전체 빈 용량: " msgid "Total space accounted for: " msgstr "차지하는 전체 용량: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "패키지 파일 %s 파일이 동기화되지 않았습니다." @@ -147,14 +147,14 @@ msgstr " 버전 테이블:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -228,15 +228,15 @@ msgstr "" " -o=? 임의의 옵션을 설정합니다. 예를 들어 -o dir::cache=/tmp\n" "좀 더 자세한 정보는 apt-cache(8) 및 apt.conf(5) 매뉴얼 페이지를 보십시오.\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "이 디스크를 위해 'Debian 2.1r1 Disk 1'와 같은 이름을 지정하십시오" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "드라이브에 디스크를 넣고 Enter를 누르십시오" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "현재 갖고 있는 다른 CD에도 이 과정을 반복하십시오." @@ -301,7 +301,7 @@ msgstr "" " -c=? 설정 파일을 읽습니다\n" " -o=? 임의의 옵션을 설정합니다. 예를 들어 -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "%s에 쓸 수 없습니다" @@ -647,7 +647,7 @@ msgstr "%s 파일의 이름을 %s(으)로 바꾸는 데 실패했습니다" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "정규식 컴파일 오류 - %s" @@ -748,124 +748,124 @@ msgstr "%lu개 지우기 및 %lu개 업그레이드 안 함.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu개를 완전히 설치하지 못했거나 지움.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "의존성을 바로잡는 중입니다..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " 실패." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "의존성을 바로잡을 수 없습니다" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "업그레이드 집합을 최소화할 수 없습니다" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " 완료" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "" "이 상황을 바로잡으려면 `apt-get -f install'을 실행해야 할 수도 있습니다." -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "의존성이 맞지 않습니다. -f 옵션을 사용해 보십시오." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "경고: 다음 패키지를 인증할 수 없습니다!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "인증 경고를 무시합니다.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "확인하지 않고 패키지를 설치하시겠습니까 [y/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "인증할 수 없는 패키지가 있습니다" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "문제가 발생했고 -y 옵션이 --force-yes 옵션 없이 사용되었습니다" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "내부 오류. 망가진 패키지에서 InstallPackages를 호출했습니다!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "패키지를 지워야 하지만 지우기가 금지되어 있습니다." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "내부 오류. 순서변경작업이 끝나지 않았습니다" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "다운로드 디렉토리를 잠글 수 없습니다" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "소스 목록을 읽을 수 없습니다." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "이상하게도 크기가 서로 다릅니다. apt@packages.debian.org로 이메일을 보내주십" "시오." -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "%s바이트/%s바이트 아카이브를 받아야 합니다.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "%s바이트 아카이브를 받아야 합니다.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "이 작업 후 %s바이트의 디스크 공간을 더 사용하게 됩니다.\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "이 작업 후 %s바이트의 디스크 공간이 비워집니다.\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s의 여유 공간의 크기를 파악할 수 없습니다" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "%s 안에 충분한 여유 공간이 없습니다." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "사소한 작업만 가능하도록(Trivial Only) 지정되었지만 이 작업은 사소한 작업이 " "아닙니다." # 입력을 받아야 한다. 한글 입력을 못 할 수 있으므로 원문 그대로 사용. -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Yes, do as I say!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -876,28 +876,28 @@ msgstr "" "계속하시려면 다음 문구를 입력하십시오: '%s'\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "중단." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "계속 하시겠습니까 [Y/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s 파일을 받는 데 실패했습니다 %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "일부 파일을 받는 데 실패했습니다" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "다운로드를 마쳤고 다운로드 전용 모드입니다" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -905,48 +905,48 @@ msgstr "" "아카이브를 받을 수 없습니다. 아마도 apt-get update를 실행해야 하거나 --fix-" "missing 옵션을 줘서 실행해야 할 것입니다." -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing 옵션과 동시에 미디어 바꾸기는 현재 지원하지 않습니다" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "빠진 패키지를 바로잡을 수 없습니다." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "설치를 중단합니다." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "주의, %2$s 대신에 %1$s 패키지를 선택합니다\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "%s 패키지를 건너 뜁니다. 이미 설치되어 있고 업그레이드를 하지 않습니다.\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "%s 패키지를 설치하지 않았으므로, 지우지 않습니다\n" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "%s 패키지는 다음 패키지가 제공하는 가상 패키지입니다:\n" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [설치함]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "설치할 패키지를 하나 분명히 지정해야 합니다." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -957,68 +957,73 @@ msgstr "" "해당 패키지가 누락되었거나 지워졌다는 뜻입니다. 아니면 또 다른 곳에서\n" "패키지를 받아와야 하는 경우일 수도 있습니다.\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "하지만 다음 패키지가 대체합니다:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "%s 패키지는 설치할 수 있는 후보가 없습니다" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "%s 패키지를 다시 설치하는 건 불가능합니다. 다운로드할 수 없습니다.\n" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s 패키지는 이미 최신 버전입니다.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "%2$s 패키지의 '%1$s' 릴리즈를 찾을 수 없습니다" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "%2$s 패키지의 '%1$s' 버전을 찾을 수 없습니다" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "%3$s 패키지의 %1$s (%2$s) 버전을 선택합니다\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "update 명령은 인수를 받지 않습니다" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "목록 디렉토리를 잠글 수 없습니다" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "삭제를 할 수 없으므로 AutoRemover를 실행하지 못합니다" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "다음 새 패키지가 전에 자동으로 설치되었지만 더 이상 필요하지 않습니다:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "다음 새 패키지가 전에 자동으로 설치되었지만 더 이상 필요하지 않습니다:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "이들을 지우기 위해서는 'apt-get autoremove'를 사용하십시오." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1036,44 +1041,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "이 상황을 해결하는 데 다음 정보가 도움이 될 수도 있습니다:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "내부 오류, 문제 해결 프로그램이 무언가를 망가뜨렸습니다" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "내부 오류, AllUpgrade 프로그램이 무언가를 망가뜨렸습니다" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "%s 작업를 찾을 수 없습니다" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "%s 패키지를 찾을 수 없습니다" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "주의, 정규식 '%2$s'에 대하여 %1$s을(를) 선택합니다\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s 패키지 수동설치로 지정합니다.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1081,7 +1086,7 @@ msgstr "" "의존성이 맞지 않습니다. 패키지 없이 'apt-get -f install'을 시도해 보십시오 " "(아니면 해결 방법을 지정하십시오)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1092,115 +1097,115 @@ msgstr "" "불안정 배포판을 사용해서 일부 필요한 패키지를 아직 만들지 않았거나,\n" "아직 Incoming에서 나오지 않은 경우일 수도 있습니다." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "망가진 패키지" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "다음 패키지를 더 설치할 것입니다:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "제안하는 패키지:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "추천하는 패키지:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "업그레이드를 계산하는 중입니다... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "실패" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "완료" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "내부 오류, 문제 해결 프로그램이 무언가를 망가뜨렸습니다" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "해당되는 소스 패키지를 가져올 패키지를 최소한 하나 지정해야 합니다" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "%s의 소스 패키지를 찾을 수 없습니다" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "이미 다운로드 받은 파일 '%s'은(는) 다시 받지 않고 건너 뜁니다.\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "%s에 충분한 공간이 없습니다" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "소스 아카이브를 %s바이트/%s바이트 받아야 합니다.\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "소스 아카이브를 %s바이트 받아야 합니다.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "%s 소스를 가져옵니다\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "일부 아카이브를 가져오는 데 실패했습니다." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "%s에 이미 풀려 있는 소스의 압축을 풀지 않고 건너 뜁니다.\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "압축 풀기 명령 '%s' 실패.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "'dpkg-dev' 패키지가 설치되었는지를 확인하십시오.\n" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "빌드 명령 '%s' 실패.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "하위 프로세스가 실패했습니다" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "해당되는 빌드 의존성을 검사할 패키지를 최소한 하나 지정해야 합니다" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s의 빌드 의존성 정보를 가져올 수 없습니다" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s 패키지에 빌드 의존성이 없습니다.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1209,7 +1214,7 @@ msgstr "" "%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" "다" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1218,32 +1223,32 @@ msgstr "" "%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지의 사용 가능한 버" "전 중에서는 이 버전 요구사항을 만족시킬 수 없습니다" -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%2$s에 대한 %1$s 의존성을 만족시키는 데 실패했습니다: %3$s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s의 빌드 의존성을 만족시키지 못했습니다." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "빌드 의존성을 처리하는 데 실패했습니다" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "지원하는 모듈:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1327,7 +1332,7 @@ msgstr "" "apt.conf(5) 매뉴얼 페이지를 보십시오.\n" " 이 APT는 Super Cow Powers로 무장했습니다.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1565,9 +1570,13 @@ msgstr "덮어 쓰는 패키지가 %s 패키지의 어떤 버전과도 맞지 msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "%s을(를) 읽을 수 없습니다" @@ -1597,9 +1606,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "정보 디렉토리와 임시 디렉토리는 같은 파일 시스템에 있어야 합니다" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "패키지 목록을 읽는 중입니다" @@ -1701,12 +1710,12 @@ msgstr "올바른 control 파일을 찾는 데 실패했습니다" msgid "Unparsable control file" msgstr "control 파일을 파싱할 수 없습니다" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "CD-ROM 데이터베이스 %s을(를) 읽을 수 없습니다" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1714,20 +1723,20 @@ msgstr "" "이 CD를 APT에서 인식하려면 apt-cdrom을 사용하십시오. apt-get update로는 새 " "CD를 추가할 수 없습니다." -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "잘못된 CD" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "%s 안의 CD-ROM을 마운트 해제할 수 없습니다. 사용 중일 것입니다." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "디스크가 없습니다." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "파일이 없습니다" @@ -1745,34 +1754,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "URI가 틀렸습니다. 로컬 URI는 //로 시작해야 합니다." #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "로그인하는 중입니다" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "상대방의 이름을 알 수 없습니다" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "로컬 이름을 알 수 없습니다" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "서버에서 다음과 같이 연결을 거부했습니다: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER 실패, 서버에서는: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS 실패, 서버에서는: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1780,114 +1789,114 @@ msgstr "" "프록시 서버를 지정했지만 로그인 스크립트가 없습니다. Acquire::ftp::" "ProxyLogin 값이 비어 있습니다." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "로그인 스크립트 명령 '%s' 실패, 서버에서는: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE 실패, 서버에서는: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "연결 시간 초과" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "서버에서 연결을 닫았습니다" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "읽기 오류" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "응답이 버퍼 크기를 넘어갔습니다." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "프로토콜이 틀렸습니다" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "쓰기 오류" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "소켓을 만들 수 없습니다" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "데이터 소켓을 연결할 수 없습니다. 연결 시간이 초과되었습니다" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "수동(passive) 소켓을 연결할 수 없습니다." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo에서 소켓에 listen할 수 없습니다" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "소켓을 bind할 수 없습니다" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "소켓에 listen할 수 없습니다" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "소켓의 이름을 알아낼 수 없습니다" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "PORT 명령을 보낼 수 없습니다" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "주소 %u의 종류(AF_*)를 알 수 없습니다" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT 실패, 서버에서는: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "데이터 소켓 연결 시간 초과" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "연결을 받을 수 없습니다" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "파일 해싱에 문제가 있습니다" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "파일을 가져올 수 없습니다. 서버 왈, '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "데이터 소켓에 제한 시간이 초과했습니다" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "데이터 전송 실패, 서버에서는: %s" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "질의" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "다음을 실행할 수 없습니다: " @@ -1997,93 +2006,93 @@ msgstr "%s에 대한 파이프를 열 수 없습니다" msgid "Read error from %s process" msgstr "%s 프로세스에서 읽는 데 오류가 발생했습니다" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "헤더를 기다리는 중입니다" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "헤더 한 줄에 %u개가 넘는 문자가 들어 있습니다" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "헤더 줄이 잘못되었습니다" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP 서버에서 잘못된 응답 헤더를 보냈습니다" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP 서버에서 잘못된 Content-Length 헤더를 보냈습니다" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP 서버에서 잘못된 Content-Range 헤더를 보냈습니다" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "HTTP 서버에 범위 지원 기능이 잘못되어 있습니다" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "데이터 형식을 알 수 없습니다" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "select가 실패했습니다" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "연결 시간이 초과했습니다" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "출력 파일에 쓰는 데 오류가 발생했습니다" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "파일에 쓰는 데 오류가 발생했습니다" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "해당 파일에 쓰는 데 오류가 발생했습니다" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "서버에서 읽고 연결을 닫는 데 오류가 발생했습니다" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "서버에서 읽는 데 오류가 발생했습니다" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "파일을 자르는 데 실패했습니다" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "헤더 데이터가 잘못되었습니다" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "연결이 실패했습니다" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "내부 오류" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "빈 파일에 메모리 매핑할 수 없습니다" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "%lu바이트를 메모리 매핑할 수 없습니다" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2230,13 +2239,13 @@ msgstr "잘못된 작업 %s" msgid "Unable to stat the mount point %s" msgstr "마운트 위치 %s의 정보를 읽을 수 없습니다" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "%s 디렉토리로 이동할 수 없습니다" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "CD-ROM의 정보를 읽을 수 없습니다" @@ -2265,51 +2274,50 @@ msgstr "%s 잠금 파일을 얻을 수 없습니다" msgid "Waited for %s but it wasn't there" msgstr "%s 프로세스를 기다렸지만 해당 프로세스가 없습니다" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "하위 프로세스 %s 프로세스가 세그멘테이션 오류를 받았습니다." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "하위 프로세스 %s 프로세스가 세그멘테이션 오류를 받았습니다." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "하위 프로세스 %s 프로세스가 오류 코드(%u)를 리턴했습니다" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "하위 프로세스 %s 프로세스가 예상치 못하게 끝났습니다" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "%s 파일을 열 수 없습니다" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "%lu만큼 더 읽어야 하지만 더 이상 읽을 데이터가 없습니다" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "%lu만큼 더 써야 하지만 더 이상 쓸 수 없습니다" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "파일을 닫는 데 문제가 있습니다" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "파일을 지우는 데 문제가 있습니다" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "파일을 동기화하는 데 문제가 있습니다" @@ -2402,16 +2410,16 @@ msgstr "후보 버전" msgid "Dependency generation" msgstr "의존성 만들기" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "상태 정보를 읽는 중입니다" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "상태파일 %s 여는 데 실패했습니다" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "임시 상태파일 %s 쓰는 데 실패했습니다" @@ -2451,32 +2459,32 @@ msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (절대 d msgid "Malformed line %lu in source list %s (dist parse)" msgstr "소스 리스트 %2$s의 %1$lu번 줄이 잘못되었습니다 (dist 파싱)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "%s 파일을 여는 중입니다" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "소스 리스트 %2$s의 %1$u번 줄이 너무 깁니다." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "소스 리스트 %2$s의 %1$u번 줄이 잘못되었습니다 (타입)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "소스 목록 %3$s의 %2$u번 줄의 '%1$s' 타입을 알 수 없습니다" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "소스 리스트 %2$s의 %1$u번 줄이 잘못되었습니다 (벤더 ID)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2499,7 +2507,7 @@ msgid "" msgstr "" "%s 패키지를 다시 설치해야 하지만, 이 패키지의 아카이브를 찾을 수 없습니다." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2507,11 +2515,11 @@ msgstr "" "오류, pkgProblemResolver::Resolve가 망가졌습니다. 고정 패키지때문에 발생할 수" "도 있습니다." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "문제를 바로잡을 수 없습니다. 망가진 고정 패키지가 있습니다." -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2531,12 +2539,12 @@ msgstr "아카이브 디렉토리 %spartial이 빠졌습니다." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "파일 받아오는 중: %2$li 중 %1$li (%3$s 남았음)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "파일 받아오는 중: %2$li 중 %1$li" @@ -2557,16 +2565,16 @@ msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" "'%2$s' 드라이브에 '%1$s'(으)로 표기된 디스크를 넣고 Enter를 누르십시오." -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "'%s' 패키지 시스템을 지원하지 않습니다" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "올바른 패키지 시스템 타입을 알아낼 수 없습니다" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "%s의 정보를 읽을 수 없습니다." @@ -2583,132 +2591,131 @@ msgstr "패키지 목록이나 상태 파일을 파싱할 수 없거나 열 수 msgid "You may want to run apt-get update to correct these problems" msgstr "apt-get update를 실행하면 이 문제를 바로잡을 수도 있습니다." -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "기본 설정 파일에 잘못된 데이터가 있습니다. 패키지 헤더가 없습니다" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "핀 타입 %s이(가) 무엇인지 이해할 수 없습니다" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "핀에 우선순위(혹은 0)를 지정하지 않았습니다" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "캐시의 버전 시스템이 호환되지 않습니다" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "%s 처리하는 중에 오류가 발생했습니다 (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "%s 처리하는 중에 오류가 발생했습니다 (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "%s 처리하는 중에 오류가 발생했습니다 (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "%s 처리하는 중에 오류가 발생했습니다 (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "%s 처리하는 중에 오류가 발생했습니다 (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "%s 처리하는 중에 오류가 발생했습니다 (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "%s 처리하는 중에 오류가 발생했습니다 (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "%s 처리하는 중에 오류가 발생했습니다 (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "%s 처리하는 중에 오류가 발생했습니다 (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "우와, 이 APT가 처리할 수 있는 패키지 이름 개수를 넘어갔습니다." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "우와, 이 APT가 처리할 수 있는 버전 개수를 넘어갔습니다." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "우와, 이 APT가 처리할 수 있는 설명 개수를 넘어갔습니다." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "우와, 이 APT가 처리할 수 있는 의존성 개수를 넘어갔습니다." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "%s 처리 중에 오류가 발생했습니다 (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "%s 처리 중에 오류가 발생했습니다 (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "파일 의존성을 처리하는 데, %s %s 패키지가 없습니다" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "소스 패키지 목록 %s의 정보를 읽을 수 없습니다" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "파일에서 제공하는 것을 모으는 중입니다" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "소스 캐시를 저장하는 데 입출력 오류가 발생했습니다" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "이름 바꾸기가 실패했습니다. %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5Sum이 맞지 않습니다" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "해쉬 합계가 서로 다릅니다" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "다음 키 ID의 공개키가 없습니다:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2717,7 +2724,7 @@ msgstr "" "%s 패키지의 파일을 찾을 수 없습니다. 수동으로 이 패키지를 고쳐야 할 수도 있습" "니다. (아키텍쳐가 빠졌기 때문입니다)" -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2726,26 +2733,24 @@ msgstr "" "%s 패키지의 파일을 찾을 수 없습니다. 수동으로 이 패키지를 고쳐야 할 수도 있습" "니다." -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "패키지 인덱스 파일이 손상되었습니다. %s 패키지에 Filename: 필드가 없습니다." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "크기가 맞지 않습니다" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "패키지 파일 %s 파일을 파싱할 수 없습니다 (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "주의, %2$s 대신에 %1$s 패키지를 선택합니다\n" @@ -2759,7 +2764,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "벤더 블럭 %s의 핑거프린트가 없습니다" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2768,64 +2773,64 @@ msgstr "" "CD-ROM 마운트 위치로 %s 사용\n" "CD-ROM을 마운트하는 중입니다\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "알아보는 중입니다.. " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "저장된 레이블: %s\n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "CD-ROM을 마운트 해제하는 중입니다...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "CD-ROM 마운트 위치 %s 사용\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "CD-ROM 마운트 해제하는 중입니다\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "디스크를 기다리는 중입니다...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "CD-ROM 마운트하는 중입니다...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "디스크에서 색인 파일을 찾는 중입니다...\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" "zu signatures\n" msgstr "패키지 색인 %zu개, 소스 색인 %zu개, 번역 색인 %zu개, 서명 %zu개 발견\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "레이블 발견: %s \n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "올바른 이름이 아닙니다. 다시 시도하십시오.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2834,34 +2839,34 @@ msgstr "" "이 디스크는 다음과 같습니다: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "패키지 목록을 복사하는 중입니다..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "새 소스 리스트를 쓰는 중입니다\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "이 디스크의 소스 리스트 항목은 다음과 같습니다:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "레코드 %i개를 썼습니다.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "레코드 %i개를 파일 %i개가 빠진 상태로 썼습니다.\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "레코드 %i개를 파일 %i개가 맞지 않은 상태로 썼습니다\n" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "레코드 %i개를 파일 %i개가 빠지고 %i개가 맞지 않은 상태로 썼습니다\n" @@ -2949,7 +2954,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "목록 디렉토리를 잠글 수 없습니다" diff --git a/po/ku.po b/po/ku.po index de3ef37d5..b9187e4f5 100644 --- a/po/ku.po +++ b/po/ku.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-ku\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -24,7 +24,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -96,7 +96,7 @@ msgstr "Cihê giştî yê sist:" msgid "Total space accounted for: " msgstr "Cihê giştî yê veqetandî: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Pakêta dosya %s li derveyî demê ye." @@ -154,14 +154,14 @@ msgstr " Tabloya guhertoyan:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -200,15 +200,15 @@ msgid "" "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" msgstr "" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "Ji kerema xwe re navekî li vî Dîsketî bike, wekî 'Debian 2.1r1 Disk 1'" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Dîsketê siwar bike û piştre bişkoja derbaskirinê bitikîne" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "" @@ -263,7 +263,7 @@ msgid "" " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" msgstr "" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Nivîsandin ji bo %s ne pêkane" @@ -566,7 +566,7 @@ msgstr "" msgid "Y" msgstr "E" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "" @@ -665,118 +665,118 @@ msgstr "%lu werin rakirin û %lu neyên bilindkirin. \n" msgid "%lu not fully installed or removed.\n" msgstr "" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Bindestî tên serrastkirin..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " neserketî." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Nikare bindestiyan rast kirin" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Temam" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "" -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "" -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "" -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Pelrêça daxistinê nayê quflekirin" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "" -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, 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:845 +#: cmdline/apt-get.cc:844 #, 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:850 +#: cmdline/apt-get.cc:849 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nikarî cihê vala li %s tesbît bike" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "Cihê vala li %s têre nake." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Erê, wusa bike!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -784,74 +784,74 @@ msgid "" " ?] " msgstr "" -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Betal." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Dixwazî bidomînî [E/n]?" -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Anîna %s %s biserneket\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Daxistina çend pelan biserneket" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" msgstr "" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "" -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Sazkirin tê betalkirin." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Sazkirî]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "" -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -859,69 +859,74 @@ msgid "" "is only available from another source\n" msgstr "" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s jixwe guhertoya nûtirîn e.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Ev pakêtên NÛ dê werine sazkirin:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "Ev pakêtên NÛ dê werine sazkirin:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -937,49 +942,49 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Peywira %s nehate dîtin" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Nikarî pakêta %s bibîne" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "lê %s dê were sazkirin" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -987,152 +992,152 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Paketên şikestî" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Paketên tên pêşniyaz kirin:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Paketên tên tawsiyê kirin:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Bilindkirin tê hesibandin..." -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Serneket" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Temam" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "Cihê vala li %s têre nake" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Çavkanîna %s bîne\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Anîna çend arşîvan biserneket." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, 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:2514 +#: cmdline/apt-get.cc:2551 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1176,7 +1181,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1402,9 +1407,13 @@ msgstr "" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Nikare %s bixwîne" @@ -1434,9 +1443,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Lîsteya pakêtan tê xwendin" @@ -1536,31 +1545,31 @@ msgstr "" msgid "Unparsable control file" msgstr "" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, fuzzy, c-format msgid "Unable to read the cdrom database %s" msgstr "Pakêt nehate dîtin %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 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 "" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "CD-ROM a şaş" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "" -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Dîsk nehate dîtin." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Pel nehate dîtin" @@ -1579,147 +1588,147 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Têketin" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Nikare navê herêmî tesbît bike" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." msgstr "" -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Çewiya xwendinê" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "" -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Çewtiya nivîsînê" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "" -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, fuzzy, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Danegira %s nehate vekirin: %s" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Lêpirsîn" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 #, fuzzy msgid "Unable to invoke " msgstr "%s venebû" @@ -1829,95 +1838,95 @@ msgstr "" msgid "Read error from %s process" msgstr "" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Hilbijartin neserketî" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "" -#: methods/http.cc:810 +#: methods/http.cc:815 #, fuzzy msgid "Error writing to output file" msgstr "Dema li dosyeya naverokê joreagahî dihate nivîsîn çewtî" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Dema li pelî dihate nivîsîn çewtî" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Dema li pelî dihate nivîsîn çewtî" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 #, fuzzy msgid "Failed to truncate file" msgstr "Nivîsîna pelê %s biserneket" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Girêdan pêk nehatiye" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Çewtiya hundirîn" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2064,13 +2073,13 @@ msgstr "" msgid "Unable to stat the mount point %s" msgstr "Nivîsandin ji bo %s ne pêkane" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Nikarî derbasa %s bike" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "" @@ -2099,50 +2108,50 @@ msgstr "" msgid "Waited for %s but it wasn't there" msgstr "" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "" -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, c-format msgid "Sub-process %s received signal %u." msgstr "" -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Nikarî pelê %s veke" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Di girtina pelî de pirsgirêkek derket" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "" @@ -2235,16 +2244,16 @@ msgstr "Guhartoyên berendam" msgid "Dependency generation" msgstr "" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Vekirina StateFile %s biserneket" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "%s ji hev nehate veçirandin" @@ -2284,32 +2293,32 @@ msgstr "" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "%s tê vekirin" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "" -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2328,17 +2337,17 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2356,12 +2365,12 @@ msgstr "" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Pel tê anîn %li ji %li" @@ -2381,16 +2390,16 @@ 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:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, fuzzy, c-format msgid "Unable to stat %s." msgstr "Nivîsandin ji bo %s ne pêkane" @@ -2407,151 +2416,151 @@ msgstr "" msgid "You may want to run apt-get update to correct these problems" msgstr "" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "nav guherandin biserneket, %s (%s -> %s)" -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5Sum li hev nayên" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Hash Sum li hev nayên" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, 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:1290 +#: apt-pkg/acquire-item.cc:1275 #, 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:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Mezinahî li hev nayên" @@ -2575,71 +2584,71 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" "Mounting CD-ROM\n" msgstr "" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "" -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" "zu signatures\n" msgstr "" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Etîketa '%s' hatiye dîtin\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2648,34 +2657,34 @@ msgstr "" "Navê dîskê: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Lîsteyên pakêtan tên jibergirtin..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "%i tomar hatin nivîsîn.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -2762,7 +2771,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the download directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Pelrêça daxistinê nayê quflekirin" diff --git a/po/mr.po b/po/mr.po index 5d2a3a5f2..db5c1dc96 100644 --- a/po/mr.po +++ b/po/mr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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 " @@ -21,7 +21,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "पॅकेज %s आवृती %s मध्ये एक अनोळखी डीईपी:आहे\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -91,7 +91,7 @@ msgstr "एकूण दुर्लक्षित अवकाश:" msgid "Total space accounted for: " msgstr "हिशेबात घेतलेली एकूण अवकाश(जागा):" -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "पॅकेज संचिका %s सिंक्रोनाइज नाहीत" @@ -149,14 +149,14 @@ msgstr "आवृत्ती कोष्टक:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -230,15 +230,15 @@ msgstr "" "-o=? एखादा अहेतूक संरचना पर्याय निर्धारित करा उदा --o dir::cache=/tmp\n" "अधिक माहितीसाठी apt-cache(8) and apt.conf(5) ची मॅन्युअल पृष्ठे पहा \n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "या तबकडीला कृपया नाव द्या जसे डेबियन २ एलआरएल तबकडी १" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "कृपया तबकडी ड्राईव्हमध्ये ठेवून एंटर दाबा" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "तुमच्या संचामधील सर्व सीडीजसाठी याच कृतीची पुनरावृत्ती करा(हीच कृती करा)" @@ -303,7 +303,7 @@ msgstr "" " -c=? ही संरचना संचिका वाचा \n" " -o=? एखादा अहेतुक संरचना पर्याय निर्धारित करा जसे- -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "%s मध्ये लिहिण्यास असमर्थ " @@ -647,7 +647,7 @@ msgstr "%s ला पुनर्नामांकन %s करण्यास msgid "Y" msgstr "होय" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "रिजेक्स कंपायलेशन त्रुटी -%s " @@ -748,118 +748,118 @@ msgstr "%lu कायमचे काढून टाकण्यासाठी msgid "%lu not fully installed or removed.\n" msgstr "%lu संपूर्ण संस्थापित किंवा कायमची काढून टाकलेली नाही.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "डिपेन्डन्सीज बरोबर/दुरूस्त करत आहे..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr "अयशस्वी/चूकीचे झाले." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "डिपेन्डन्सीज बरोबर करण्यास असमर्थ आहे " -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "आवृत्तीकृत संच कमीतकमी करण्यास असमर्थ" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr "झाले" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "हे बरोबर करण्यासाठी तुम्हाला `apt-get -f संस्थापना' प्रोग्राम चालू करावा लागेल." -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "अनमेट डिपेंडन्सीज.-f.वापरून प्रयत्न करा " -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "धोक्याची सूचना:खालील पॅकेजेस् प्रमाणित करु शकत नाही! " -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "प्रमाणीकरणाची धोक्याची सूचना दुर्लक्षित करा.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "पडताळून पाहिल्याशिवाय ही पॅकेजेस संस्थापित करायची का [हो/नाही]?" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "काही पॅकेजेसचे प्रमाणिकरण होऊ शकत नाही" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "काही अडचणी आहेत आणि --force-yes शिवाय -y वापरला गेला" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "अंतर्गत त्रुटी, तुटलेल्या पॅकेजेस बरोबर संस्थापित पॅकेजला आवाहन केले गेले/बोलावले गेले!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "पॅकेजेस कायमची काढायची आहेत पण रिमूव्ह अकार्यक्षम केले आहे" -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "अंतर्गत त्रुटी,क्रम अजून संपला नाही" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "डाऊनलोड डिरेक्टरी कुलूपबंद करण्यास असमर्थ" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "उगमांच्या याद्या वाचता येणार नाहीत." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "किती विचित्र...आकार जुळत नाहीत, ईमेल apt@packages.debian.org" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "अर्काईव्हजच्या %sB/%sB घेण्याची गरज आहे\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "अर्काईव्हज%sB घेण्याची गरज आहे.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "या क्रियेनंतर, %sB एवढी अधिक डिस्क जागा वापरली जाईल.\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "या क्रियेनंतर, %sB डिस्क जागा मोकळी होईल.\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s मध्ये रिकामी जागा सांगू शकत नाही" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "%s मध्ये तुमच्याकडे पुरेशी जागा नाही." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "क्षुल्लक फक्त निर्देशित केले आहे पण हे क्षुल्लक कृति/ऑपरेशन नाही." -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "हो, मी म्ह्टल्याप्रमाणे करा!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -870,28 +870,28 @@ msgstr "" "पुढे '%s' उक्ती मध्ये लिहिणार \n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "व्यत्यय/बंद करा." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "तुम्हाला पुढे जायचे आहे [Y/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s आणणे असफल\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "काही संचिका डाऊनलोड करण्यास असमर्थ" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "डाऊनलोड संपूर्ण आणि डाऊनलोड मध्ये फक्त पद्धती" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -899,48 +899,48 @@ msgstr "" "काही आर्काइव्हज आणण्यास असमर्थ, कदाचित apt-get रन करुन अद्ययावत करा किंवा --fix- " "बरोबर प्रयत्न कराहरवलेले/गहाळ?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "" "--fix- सापडत नाही आणि माध्यम/मिडिया अदलाबदल हे सध्या तांत्रिक मदत देऊ शकत नाही" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "न सापडणारी पॅकेजेस नीट करण्यास असमर्थ." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "संस्थापन खंडित करत आहे." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "लक्षात घ्या,%s ऐवजी %s ची निवड करत आहे \n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "%s सोडून देत आहे, ते आधिच संस्थापित केले आहे आणि पुढिल आवृत्ती निश्चित केलेली नाही.\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "%s पॅकेज संस्थापित केलेले नाही,म्हणून काढले नाही\n" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "%s हे आभासी पॅकेज ह्यांच्याकडून तरतूद केले आहे,:\n" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr "[संस्थापित केले]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "तुम्ही संस्थापित करण्यासाठी एक निश्चित स्पष्टपणे निवडले पाहिजे." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -951,68 +951,73 @@ msgstr "" "याचा अर्थ असाही आहे की पॅकेज सापडत नाही,ते कालबाह्य किंवा \n" " म्हणजे ते दुसऱ्या उगमातून उपलब्ध\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "तथापि खालील पॅकेजेस मध्ये बदल झाला:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "%s पॅकेजला संस्थापित कॅन्डिडेट नाही" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "%s चे पुनर्संस्थापन शक्य नाही, हे डाऊनलोड करता येत नाही.\n" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ही आधीच नविन आवृत्ती आहे.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "'%s' साठी '%s' आवृत्ती सापडली नाही" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "'%s' साठी '%s' आवृत्ती सापडली नाही" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "%s साठी %s (%s) निवडलेली आवृत्ती.\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "सुधारित आवृत्तीचा विधान आर्ग्युमेंटस घेऊ शकत नाही." -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "संचयिका यादीला कुलुप लावण्यात असमर्थ" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "आपण या गोष्टी काढून टाकता नये, ऑटोरिमूव्हर सुरू करता येत नाही" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "ती काढून टाकण्यासाठी 'apt-get autoremove' वापरा." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1030,45 +1035,45 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "खालील माहिती परिस्थिती निवळण्यासाठी मदत ठरू शकेल:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "अंतर्गत त्रुटी, AutoRemoverने स्टफला तोडले" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "अंतर्गत त्रुटी,ऑलअपग्रेडने स्टफला तोडले" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "%s कार्य सापडू शकले नाही" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "%s पॅकेज सापडू शकले नाही" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "सूचना, '%s' रिजेक्स साठी %s ची निवड करत आहे\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" "तुम्हाला कदाचित `apt-get -f install'(एपीटी-गेट -एफ संस्थापन') प्रोग्राम चालू करावा " "लागेल'यात बदल करण्यासाठी:" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1076,7 +1081,7 @@ msgstr "" "अनमेट डिपेंडन्सीज.एपीटी-गेट -एफ संस्थापन (`apt-get -f install') पॅकेजशिवाय प्रयत्न करा " "(किंवा पर्याय सांगा)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1088,122 +1093,122 @@ msgstr "" "विभागणी असणारी पण हवी असणारी, तयार केली नसलेली पॅकेजेस वापरत असाल \n" "किंवा ती येणाऱ्यांपैकी बाहेर हलविली असतील." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "तुटलेली पॅकेजेस" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "खालील अतिरिक्त पॅकेजेस संस्थापित होतील:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "सुचवलेली पॅकेजेस:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "शिफारस केलेली पॅकेजेस:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "पुढिल आवृत्तीची गणती करीत आहे..." -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "असमर्थ" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "झाले" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "अंतर्गत त्रुटी, अडचण निवारकाने स्टफला तोडले" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "उगम शोधण्यासाठी किमान एक पॅकेज देणे/सांगणे गरजेचे आहे" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "%s उगम पॅकेज शोधणे शक्य नाही/शोधण्यास असमर्थ आहे" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "आधीच डाऊनलोड केलेली '%s' फाईल सोडून द्या\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "%s मध्ये पुरेशी जागा नाही" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "उगम अर्काईव्हज चा %sB/%sB घेण्याची गरज आहे.\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "उगम अर्काईव्हजचा %sB घेण्याची गरज आहे.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "%s उगम घ्या\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "काही अर्काईव्हज आणण्यास असमर्थ." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "%s मध्ये आधीच उघडलेल्या उगमातील उघडलेल्याला सोडून द्या किंवा वगळा\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "'%s' आज्ञा सुट्या करण्यास असमर्थ.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "'dpkg-dev' पॅकेज संस्थापित केले आहे का ते पडताळून पहा.\n" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "बांधणी करणाऱ्या आज्ञा '%s' अयशस्वी.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "चाईल्ड प्रक्रिया अयशस्वी" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "बिल्डेपस् कशासाठी ते पडताळण्यासाठी किमान एक पॅकेज सांगणे गरजेचे आहे" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s साठी बांधणी डिपेंडन्सी माहिती मिळवण्यास असमर्थ" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s ला बांधणी डिपेंडन्स नाहीत.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, 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:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1212,30 +1217,30 @@ msgstr "" "आवृतीची मागणी पूर्ण करण्यासाठी %s पॅकेजची आवृत्ती उपलब्ध नाही,त्यामुळे %s साठी %s " "डिपेंडन्सी पूर्ण होऊ शकत नाही" -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2551 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "%s अवलंबित्व %s साठी पूर्ण होण्यास असमर्थ: संस्थापित पॅकेज %s खूपच नवीन आहे" -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%s साठी %s डिपेंडन्सी पूर्ण होण्यास असमर्थ: %s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s साठी बांधणी-डिपेंडन्सीज पूर्ण होऊ शकत नाही." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "बांधणी-डिपेंडन्सीज क्रिया पूर्ण करण्यास असमर्थ " -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "प्रोग्राम गटाला तांत्रिक मदत दिली:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1320,7 +1325,7 @@ msgstr "" " apt.conf(5) पुस्तिका पाने पहा.\n" " ह्या APT ला सुपर काऊ पॉवर्स आहेत\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1558,9 +1563,13 @@ msgstr "%s च्या आवृत्तीशी पुनः लिहिल msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "%s वाचण्यास असमर्थ" @@ -1590,9 +1599,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "info आणि temp संचिका सारख्याच फाईलप्रणालीत असणे आवश्यक आहे" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "पॅकेज याद्या वाचत आहोत" @@ -1694,12 +1703,12 @@ msgstr "वैध नियंत्रण फाईल शोधण्यास msgid "Unparsable control file" msgstr "अनपार्सेबल नियंत्रण फाईल" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "%s सीडी-रॉम माहिती संच वाचण्यास असमर्थ" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1707,20 +1716,20 @@ msgstr "" "कृपया सी-डी रॉम APT कडून ओळखण्यासाठी apt-cdrom चा वापर करा.apt-get update हे " "नवीन सीडी राॅम अधिक मिळवण्यासाठी वापरता येणार नाही" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "चूकीची सी-डी रॉम" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "%s मधील सीडी-रॉम अनमाऊंट करण्यास असमर्थ, अजूनही ते वापरता असेल." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "डिस्क सापडत नाही" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "फाईल सापडली नाही" @@ -1738,34 +1747,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "अवैध यू आर एल, स्थानिक यू आर आय एस सुरू होऊ नये यापासून //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "लॉग इन करत आहे" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "पिअर नाव सांगण्यास/सापडण्यास असमर्थ" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "स्थानिक नाव सांगण्यास असमर्थ" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "सर्व्हर ने संबंध जोडण्यास नकार दिला व सांगितले: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "सर्व्हरने %s सांगितले,यूजर असमर्थ:" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "सर्व्हरने %s सांगितले, पास असमर्थ:" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1773,114 +1782,114 @@ msgstr "" "प्रॉक्सी सर्व्हर निर्देशित केला पण लॉगीन स्क्रिप्ट नाही, प्राप्त केलेले ::ftp:: प्रॉक्सीलॉगीन " "निरर्थक आहे." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "सर्व्हरने %s सांगितले, '%s' लॉग इन स्क्रिप्ट आज्ञावली असमर्थ:" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "सर्व्हरने %s सांगितले: टाईप असमर्थ:" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "वेळेअभावी संबंध जोडता येत नाही" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "सर्व्हरने संबंध जोडणी बंद केली" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "त्रुटी वाचा" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "प्रतिसाधाने बफर भरुन गेले." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "प्रोटोकॉल खराब झाले" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "लिहिण्यात त्रुटी" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "सॉकेट तयार करू शकत नाही" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "डेटा सॉकेट जोडू शकत नाही,जोडणी वेळेअभावी बंद केली" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "पॅसिव्ह सॉकेट जोडता येत नाही" -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "गेटऍड्रेसइनफो लिसनिंग सॉकेट घेण्यास असमर्थ होते" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "सॉकेट चिकटवता येत नाही" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "सॉकेट वर ऐकता येत नाही" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "सॉकेटचे नाव सांगता येत नाही" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "पोर्ट आज्ञा पाठवता येत नाही/पोर्ट आज्ञा पाठविण्यास असमर्थ" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "माहित नसलेला पत्ता फॅमिली %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "ई.पी.आर.टी. चुकले,सर्व्हरने %s सांगितले" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "डेटा सॉकेट जोडणी वेळेअभावी तुटली" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "जोडणी स्विकारण्यास असमर्थ" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "फाईल हॅश करण्यात त्रुटी" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "सर्व्हरने %s सांगितले, फाईल मिळवण्यास असमर्थ" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "डेटा सॉकेट वेळेअभावी तुटले" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "सर्व्हरने %s सांगितले, डेटा स्थानांतरण चुकले" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "प्रश्न" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "जारी करण्यास करण्यास असमर्थ" @@ -1990,93 +1999,93 @@ msgstr "%s साठी पाईप उघडता येत नाही" msgid "Read error from %s process" msgstr "%s क्रियेपासून चूक वाचा" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "शीर्षकासाठी थांबले आहे...." -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "%u अक्षरांवर एक शीर्षक ओळ मिळाली" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "वाईट शीर्षक ओळ" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP सर्व्हरने अवैध प्रत्त्युत्तर शीर्षक पाठविले" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP सर्व्हरने अवैध मजकूर-लांबी शीर्षक पाठविले " -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP सर्व्हरने अवैध मजकूर-विस्तार शीर्षक पाठविले" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "HTTP सर्व्हरने विस्तार तांत्रिक मदत जोडली" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "अपरिचित दिनांक प्रकार/स्वरूप " -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "चुकले/असमर्थ निवड करा" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "जोडणी वेळेअभावी तुटली" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "निर्गत फाईल मध्ये लिहिताना त्रुटी/चूक" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "फाईल मध्ये लिहिण्यात चूक/त्रुटी" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "फाईल मध्ये लिहिण्यात चूक/त्रुटी" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "सर्व्हर मधून वाचण्यात चूक. लांब शेवट आणि बंद झालेली जोडणी" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "सर्व्हर मधून वाचण्यात चूक" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "फाईल छोटी करणे असफल" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "चुकीचा शीर्षक डाटा" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "जोडणी अयशस्वी" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "अंतर्गत त्रुटी" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "रिकामी फाईल mmap करता येणार नाही" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "mmap चे %lu बाईटस् करता येणार नाहीत" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2223,13 +2232,13 @@ msgstr "%s अवैध क्रिया" msgid "Unable to stat the mount point %s" msgstr "%s माऊंट पॉईंट स्टॅट करण्यास असमर्थ" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "%s मध्ये बदलण्यास असमर्थ" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "सीडी-रॉम स्टॅट करण्यास असमर्थ" @@ -2258,51 +2267,50 @@ msgstr "%s कुलुप मिळवता येत नाही" msgid "Waited for %s but it wasn't there" msgstr "%s साठी थांबलो पण ते तेथे नव्हते" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "%s उपक्रियेला सेगमेंटेशन दोष प्राप्त झाला." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "%s उपक्रियेला सेगमेंटेशन दोष प्राप्त झाला." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "%s उपक्रियेने (%u) त्रुटी कोड दिलेला आहे" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "%s उपक्रिया अचानकपणे बाहेर पडली" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "%s फाईल उघडता येत नाही" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "वाचा, %lu अजूनही वाचण्यासाठी आहे पण आता काही उरली नाही" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "लिहा, %lu अजूनही लिहिण्यासाठी आहे पण लिहिता येत नाही" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "फाईल बंद करण्यात अडचण" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "फाईल अनलिंकिंग करण्यात अडचण" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "संचिकेची syncing समस्या" @@ -2395,16 +2403,16 @@ msgstr "कंॅडिडेट आवृत्त्या" msgid "Dependency generation" msgstr "अवलंबित/विसंबून असलेले उत्पादन " -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "स्थिती माहिती वाचत आहे" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "%s StateFile उघडणे असफल" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "%s तात्पुरत्या StateFile मध्ये लिहिणे असफल" @@ -2444,32 +2452,32 @@ msgstr "स्त्रोत सुची %s (absolute dist) मध्ये %l msgid "Malformed line %lu in source list %s (dist parse)" msgstr "स्त्रोत सुची %s (डीआयएसटी पार्स) मध्ये %lu वाईट/व्यंग रेषा" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "%s उघडत आहे" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "%s स्त्रोत सुचीमध्ये ओळ %u खूप लांब आहे." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "स्त्रोत सुची %s (प्रकार) मध्ये %u वाईट/व्यंग रेषा" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "%s स्त्रोत सुचीमध्ये %u रेषेवर '%s' प्रकार माहित नाही " -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "स्त्रोत सुची %s (विक्रेता आयडी) मध्ये %u वाईट/व्यंग रेषा " -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2492,7 +2500,7 @@ msgid "" msgstr "" "%s पॅकेज पुनः:अधिष्ठापित करण्याची गरज आहे, परंतु मला त्यासाठी ऑर्काइव्ह सापडू शकले नाही." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2500,11 +2508,11 @@ msgstr "" "दोष,पॅकेज समस्या निवारक::निवारण करतांना अडथळा निर्माण झाला, ह्याचे कारण स्थगित " "पॅकेजेस असू शकते." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "अडचणी दूर करण्यास असमर्थ, तुम्ही तुटलेले पॅकेज घेतलेले आहे." -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2524,12 +2532,12 @@ msgstr "ऑर्काइव्ह संचयिका %spartial गायब #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "%li ची %li(%s राहिलेले) संचिका पुन:प्राप्त करीत आहे" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "%li ची %li संचिका पुन:प्राप्त करीत आहे" @@ -2549,16 +2557,16 @@ msgstr "%s कार्यपध्दती योग्य रीतीने msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "कृपया '%s' लेबल असलेली डिस्क '%s' या ड्राइव्हमध्ये ठेवा आणि एन्टर कळ दाबा." -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "'%s' पॅकेजींग प्रणाली सहाय्यकारी नाही" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "योग्य असा पॅकेजिंग प्रणाली प्रकार निश्चित करण्यास असमर्थ " -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "%s स्टॅट करण्यात असमर्थ. " @@ -2575,137 +2583,136 @@ msgstr "पॅकेजच्या याद्या किंवा संच msgid "You may want to run apt-get update to correct these problems" msgstr "तुम्ही ह्या समस्यांचे निवारण करण्यासाठी apt-get update प्रोग्राम चालू करु शकता" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "पसंतीच्या संचिकेत अवैध माहितीसंच, पॅकेजला शीर्षक नाही " -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "%s पिनचा प्रकार समजलेला नाही" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "पिन करिता प्राधान्य/अग्रक्रम (किंवा शून्य)निर्देशीत केलेला नाही" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "अस्थायी स्मृतिकोष मध्ये विसंगत आवृतीकरण प्रणाली आहे" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "%s (नविन पॅकेज) प्रक्रिया करीत असतांना दोष आढळून आला" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "%s (वापरातील पॅकेज१) प्रक्रिया करीत असतांना दोष आढळून आला" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "%s (NewFileDesc1) वर प्रक्रिया सुरू असताना त्रुटी उद्भवली" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "%s प्रक्रिया करीत असतांना दोष आढळून आला(वापरातील पॅकेज२)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "%s(नविन संचिका आवृती१) प्रक्रिया करीत असतांना दोष आढळून आला" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "%s (नविन आवृत्ती १) प्रक्रिया करीत असतांना दोष आढळून आला" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "%s(वापरातील पॅकेज३) प्रक्रिया करीत असतांना दोष आढळून आला" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "%s(नविन आवृती२) प्रक्रिया करीत असतांना दोष आढळून आला" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "%s (NewFileDesc2) वर प्रक्रिया सुरू असताना त्रुटी उद्भवली" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही पॅकेज नांवांच्या संख्येची मर्यादा ओलांडली " "आहे." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" "अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही आवृत्त्या संख्येची मर्यादा ओलांडली आहे." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "अरेवा!, तुम्ही तर ह्या ऍप्टच्या कार्यक्षमतेपेक्षाही विवरण संख्येची मर्यादा ओलांडली आहे." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "अरेवा!, तुम्ही तर ह्या एपिटीच्या कार्यक्षमतेपेक्षाही अवलंबित/विसंबून असलेल्या संख्येची मर्यादा " "ओलांडली आहे." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "%s (पॅकेज शोधतांना) प्रक्रिया करीत असतांना दोष आढळून आला" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "%s (तरतूद/पुरवलेल्या संचिका जमा) प्रक्रिया करीत असतांना दोष आढळून आला" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "अवलंबित/विसंबून असणाऱ्या संचिकांची प्रक्रिया करीत असतांना पॅकेज %s %s सापडले नाही " -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "%s उगम पॅकेज यादी सुरू करता येत नाही" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "तरतूद/पुरवलेल्या संचिका संग्रहित करीत आहे" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "IO त्रुटी उगम निवडक संचयस्थानात संग्रहित होत आहे" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "पुनर्नामांकन अयशस्वी, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "एमडी५ बेरीज/MD5Sum जुळत नाही" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "हॅश बेरीज जुळत नाही" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "पुढील कळ ओळखचिन्हांसाठी सार्वजनिक कळ उपलब्ध नाही:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2714,7 +2721,7 @@ msgstr "" "मी %s पॅकेजकरीता संचिका शोधण्यास समर्थ नव्हतो. याचा अर्थ असाकी तुम्हाला हे पॅकेज स्वहस्ते " "स्थिर/निश्चित करण्याची गरज आहे(हरवलेल्या आर्चमुळे) " -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2723,7 +2730,7 @@ msgstr "" "मी %s पॅकेजकरीता संचिका शोधण्यास समर्थ नव्हतो. याचा अर्थ असाकी तुम्हालाहे पॅकेज स्वहस्ते " "स्थिर/निश्चित करण्याची गरज आहे." -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2731,19 +2738,17 @@ msgstr "" "पॅकेज यादीची/सुचीची संचिका दूषित/खराब झालेली आहे. संचिका नाव नाही: पॅकेजकरीता क्षेत्र/" "ठिकाण %s." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "आकार जुळतनाही" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "%s (1) पॅकेज फाईल पार्स करण्यात असमर्थ" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "लक्षात घ्या,%s ऐवजी %s ची निवड करत आहे \n" @@ -2757,7 +2762,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "विक्रेता गट %s मध्ये बोटाचे ठसे नाहीत" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2766,42 +2771,42 @@ msgstr "" "सिडी-रॉमचे माउंट स्थान %s वापरुन\n" "सिडी-रॉम माउंट होत आहे\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "ओळखत आहे.." -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "ग्रहण केलेले नामदर्शक: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "सिडी-रॉम अनमाउंट होत आहे...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "सिडी-रॉमचे माउंट स्थान %s वापरुन\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "सिडी-रॉम अनमाउंट करत आहे\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "डिस्क/चकती करिता प्रतिक्षा करीत आहे...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "सिडी-रॉम माउंट होत आहे...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "संचिकाच्या यादी/सूचीसाठी डिस्क/चकती बारकाईने तपासत आहे..\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2810,22 +2815,22 @@ msgstr "" "%zu पॅकेजेसची यादी/सूची, %zu स्त्रोताची यादी/सूची, %zu भाषांतर यादी/सूची आणि %zu " "स्वाक्षऱ्या/सिगनेचर्स सापडल्या\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "'%s' लेबल सापडले\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "ते स्विकारण्याजोगे/वैध नांव नाही, पुन्हा प्रयत्न करा.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2834,34 +2839,34 @@ msgstr "" "ह्या डिस्कला/चकतीला: म्हणतात\n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "पॅकेज सूचींच्या प्रती तयार करित आहे..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "नविन स्त्रोत सूची लिहित आहे\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "ह्या डिस्क/चकती करिता स्त्रोत सूचीच्या प्रवेशिका आहेत: \n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "%i माहितीसंच लिहिले.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i गहाळ संचिकाबरोबर %i माहिती संच लिहिले.\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "%i विजोड संचिकांबरोबर %i माहिती संच लिहिले\n" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "%i गहाळ संचिकाबरोबर आणि %i विजोड संचिकाबरोबर %i माहिती संच लिहिले\n" @@ -2948,7 +2953,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "संचयिका यादीला कुलुप लावण्यात असमर्थ" diff --git a/po/nb.po b/po/nb.po index 0ecafae9d..537a6f56d 100644 --- a/po/nb.po +++ b/po/nb.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+0200\n" "PO-Revision-Date: 2009-02-01 18:26+0100\n" "Last-Translator: Hans Fredrik Nordhaug <hans@nordhaug.priv.no>\n" "Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.ui.no>\n" @@ -28,7 +28,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Pakken %s versjon %s har et uinnfridd avhengighetsforhold:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -98,7 +98,7 @@ msgstr "Plass brukt av slark: " msgid "Total space accounted for: " msgstr "Samlet mengde redegjort plass: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Pakkefila %s er ikke oppdatert." @@ -157,14 +157,14 @@ msgstr " Versjonstabell:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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" -#: cmdline/apt-cache.cc:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -239,15 +239,15 @@ msgstr "" " -o=? Sett en vilkrlig 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:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "Oppgi et navn for disken, eksempelvis Debian 2.1r1 disk 1" -#: cmdline/apt-cdrom.cc:93 +#: 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:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Gjenta denne prosessen for resten av CD-ene i ditt sett." @@ -313,7 +313,7 @@ msgstr "" " -c=? Les denne innstillingsfila.\n" " -o=? Sett en vilkrlig innstilling, f.eks. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Kan ikke skrive til %s" @@ -657,7 +657,7 @@ msgstr "Klarte ikke msgid "Y" msgstr "J" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Kompileringsfeil i regulrt uttrykk - %s" @@ -758,121 +758,121 @@ msgstr "%lu msgid "%lu not fully installed or removed.\n" msgstr "%lu pakker ikke fullt installert eller fjernet.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Retter p avhengighetsforhold ..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " mislyktes." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Klarer ikke rette p avhengighetsforholdene" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Klarer ikke minimere oppgraderingsettet" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Utfrt" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "Du vil kanskje kjre apt-get -f install for rette p dette." -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Uinnfridde avhengighetsforhold - Prv -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ADVARSEL: Flgende pakker ble ikke autentisert!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Autentiseringsadvarsel overstyrt.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Installer disse pakkene uten verifikasjon [j/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Noen pakker ble ikke autentisert" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "Det oppsto problemer og -y ble brukt uten --force-yes" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Intern feil, InstallPackages ble kalt med delagte pakker!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "Pakker trenges fjernes, men funksjonen er sltt av." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Intern feil, sortering fullfrte ikke" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Klarer ikke lse nedlastingsmappa" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Kan ikke lese kildlista." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" "S rart ... Strrelsene stemmer ikke overens, send en e-post til " "apt@packages.debian.org" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "M hente %sB/%sB med arkiver.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "M hente %sB med arkiver.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "Klarte ikke bestemme ledig plass i %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "Dessverre, ikke nok ledig plass i %s" -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "Bare trivielle endringer ble angitt, men dette er ikke en triviell endring." -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Ja, gjr som jeg sier!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -883,28 +883,28 @@ msgstr "" "For fortsette skriv inn teksten %s\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Avbryter." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Vil du fortsette [Y/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Klarte ikke skaffe %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Noen av filene kunne ikke lastes ned" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Nedlasting fullfrt med innstillinga bare nedlasting" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -912,48 +912,48 @@ msgstr "" "Klarte ikke hente alle arkivene. Du kan prve med apt-get update eller --" "fix-missing." -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing og bytte av media stttes n ikke" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Klarer ikke rette p manglende pakker." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Avbryter istallasjonen." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Merk, velger %s istedenfor %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "Omgr %s - den er allerede installert eller ikke satt til oppgradering.\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Installert]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Du m velge en pakke som skal installeres." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -964,68 +964,73 @@ msgstr "" "Dette kan bety at pakken mangler, er utgtt, eller bare finnes \n" "tilgjengelig fra en annen kilde.\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Flgende pakker erstatter den imidlertid:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Pakken %s har ingen installasjonskandidat" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Det er ikke mulig installere %s p nytt - den kan ikke nedlastes.\n" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s er allerede nyeste versjon.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Utgave %s av %s ble ikke funnet" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Versjon %s av %s ble ikke funnet" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Utvalgt versjon %s (%s) for %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Oppdaterings-kommandoen tar ingen argumenter" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Kan ikke lse listemappa" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 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:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Flgende pakker ble automatisk installert og er ikke lenger pkrevet:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "Flgende pakker ble automatisk installert og er ikke lenger pkrevet:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Bruk apt-get autoremove for fjerne dem." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1043,43 +1048,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "Flgende informasjon kan vre til hjelp med lse problemet:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Intern feil, autofjerneren (AutoRemover) dela noe" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Intern feil - AllUpgrade dela noe" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Klarte ikke finne oppgave %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Klarte ikke finne pakken %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Merk, velger %s istedenfor det regulre uttrykket %s\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s satt til manuell installasjon.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "Du vil kanskje utfre apt-get -f install for rette p disse:" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1087,7 +1092,7 @@ msgstr "" "Uinnfridde avhengighetsforhold. Prv apt-get -f install uten pakker (eller " "angi en lsning)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1099,122 +1104,122 @@ msgstr "" "at visse kjernepakker enn ikke er laget eller flyttet ut av Incoming for\n" "distribusjonen." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "delagte pakker" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Flgende ekstra pakker vil bli installert." -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Foresltte pakker:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Anbefalte pakker" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Beregner oppgradering... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Mislyktes" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Utfrt" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Intern feil, problemlser dela noe" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "Du m angi minst en pakke du vil ha kildekoden til" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "Klarer ikke finne en kildekodepakke for %s" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Hopper over allerede nedlastet fil %s\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, 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:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Trenger skaffe %sB av %sB fra kildekodearkivet.\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Trenger skaffe %sB fra kildekodearkivet.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Skaffer kildekode %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Klarte ikke skaffe alle arkivene." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Omgr utpakking av allerede utpakket kilde i %s\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Utpakkingskommandoen %s mislyktes.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Sjekk om pakken dpkg-dev er installert.\n" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Byggekommandoen %s mislyktes.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Barneprosessen mislyktes" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "Du m angi minst en pakke du vil sjekke builddeps for" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Klarer ikke skaffe informasjon om bygge-avhengighetene for %s" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s har ingen avhengigheter.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, 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:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1223,32 +1228,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:2514 +#: cmdline/apt-get.cc:2551 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Klarte ikke tilfredsstille %s avhengighet for %s: den installerte pakken %" "s er for ny" -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Klarte ikke tilfredsstille %s avhengighet for %s: %s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Klarte ikke tilfredstille bygg-avhengighetene for %s." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Klarte ikke behandle forutsetningene for bygging" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Stttede moduler:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1333,7 +1338,7 @@ msgstr "" "for mer informasjon og flere innstillinger\n" " Denne APT har kraften til en Superku.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1572,9 +1577,13 @@ msgstr "Skriver over pakketreff uten versjon for %s" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Klarer ikke lese %s" @@ -1605,9 +1614,9 @@ msgstr "" "Infokatalogen og den midlertidige katalogen m vre p det samme filsystemet" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Leser pakkelister" @@ -1712,12 +1721,12 @@ msgstr "Fant ingen gyldig kontrollfil" msgid "Unparsable control file" msgstr "Kontrollfila kan ikke tolkes" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Klarer ikke lese CD-databasen %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1725,22 +1734,22 @@ msgstr "" "Bruk apt-cdrom for gjre denne CD-plata tilgjengelig for APT. Du kan ikke " "bruke apt-get update til legge til nye CD-plater." -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Feil CD-plate" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "" "Klarer ikke avmontere CD-plata i %s. Det kan hende plata fremdeles er i " "bruk." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Disk ikke funnet." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Fant ikke fila" @@ -1758,34 +1767,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "Ugyldig adresse. Lokale adresser kan ikke starte med //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Logger inn" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Klarte ikke fastsl navnet p motparten" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Klarte ikke fastsl det lokale navnet" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Tjeneren nektet oss kople til og sa: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER mislykkes, tjeneren sa: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS mislykkes, tjeneren sa: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1793,114 +1802,114 @@ msgstr "" "En mellomtjener er oppgitt, men ikke noe innloggingsskript. Feltet Acquire::" "ftp::ProxyLogin er tomt." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Kommandoen %s i innlogginsskriptet mislykkes, tjeneren sa: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE mislykkes, tjeneren sa: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Tidsavbrudd p forbindelsen" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Tjeneren lukket forbindelsen" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Lesefeil" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Et svar oversvmte bufferen." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Protokolldeleggelse" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Skrivefeil" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Klarte ikke opprette en sokkel" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Klarte ikke kople til datasokkelen, tidsavbrudd p forbindelsen" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Klarte ikke koble til en passiv sokkel." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo klarte ikke opprette en lyttesokkel" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Klarte ikke binde til sokkel" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Klarte ikke lytte til sokkel" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Klarte ikke avgjre sokkelnavnet" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Klarte ikke sende PORT-kommandoen" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Ukjent adressefamilie %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT mislykkes, tjeneren sa: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Tidsavbrudd p tilkoblingen til datasokkelen" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Klarte ikke godta tilkoblingen" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Problem ved oppretting av nkkel for fil" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Klarte ikke hente fila, tjeneren sa %s" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Tidsavbrudd p datasokkelen" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Dataoverfringen mislykkes, tjeneren sa %s" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Sprring" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Klarte ikke starte" @@ -2011,93 +2020,93 @@ msgstr "Klarte ikke msgid "Read error from %s process" msgstr "Lesefeil fra %s-prosessen" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Venter p hoder" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Fikk en enkel hodelinje over %u tegn" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "delagt hodelinje" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP-tjeneren sendte et ugyldig svarhode" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP-tjeneren sendte et ugyldig Content-Length-hode" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP-tjeneren sendte et ugyldig Content-Range-hode" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Denne HTTP-tjeneren har delagt sttte for omrde" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Ukjent datoformat" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Utvalget mislykkes" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Tidsavbrudd p forbindelsen" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Feil ved skriving til utfil" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Feil ved skriving til fil" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Feil ved skriving til fila" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "Feil ved lesing fra tjeneren. Forbindelsen ble lukket i andre enden" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Feil ved lesing fra tjeneren" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Klarte ikke forkorte fila %s" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "delagte hodedata" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Forbindelsen mislykkes" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Intern feil" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Kan ikke utfre mmap p en tom fil" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Kunne ikke lage mmap av %lu bytes" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2246,13 +2255,13 @@ msgstr "Ugyldig operasjon %s" msgid "Unable to stat the mount point %s" msgstr "Klarer ikke fastsette monteringspunktet %s" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Klarer ikke endre %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Klarer ikke f statusen p CD-spilleren" @@ -2281,51 +2290,50 @@ msgstr "F msgid "Waited for %s but it wasn't there" msgstr "Ventet p %s, men den ble ikke funnet" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Underprosessen %s mottok et minnefeilsignal." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Underprosessen %s mottok et minnefeilsignal." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Underprosessen %s ga en feilkode (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Underprosessen %s avsluttet uventet" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Kunne ikke pne fila %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "lese, har fremdeles %lu igjen lese, men ingen igjen" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "skrive, har fremdeles %lu igjen skrive, men klarte ikke " -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Problem ved lsing av fila" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Problem ved oppheving av lenke til fila" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Problem ved oppdatering av fila" @@ -2418,16 +2426,16 @@ msgstr "Versjons-kandidater" msgid "Dependency generation" msgstr "Oppretter avhengighetsforhold" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Leser tilstandsinformasjon" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Klarte ikke pne StateFile %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Klarte ikke skrive midlertidig StateFile %s" @@ -2467,32 +2475,32 @@ msgstr "Feil p msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Feil p %lu i kildelista %s (dist fortolking)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "pner %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Linje %u i kildelista %s er for lang" -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Feil p %u i kildelista %s (type)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typen %s er ukjent i linje %u i kildelista %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Feil p %u i kildelista %s (selgers id)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2515,7 +2523,7 @@ msgid "" msgstr "" "Pakka %s trenger installeres p nytt, men jeg finner ikke lageret for den." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2523,11 +2531,11 @@ msgstr "" "Feil, pkgProblemResolver::Resolve skapte et brudd, det kan skyldes pakker " "som holdes tilbake." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "Klarer ikke rette problemene, noen delagte pakker er holdt tilbake." -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2547,12 +2555,12 @@ msgstr "Arkivmappa %spartial mangler." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Henter fil %li av %li (%s gjenvrende)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Henter fil %li av %li" @@ -2572,16 +2580,16 @@ msgstr "Metoden %s startet ikke korrekt" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "Sett inn disken merket %s i lagringsenheten %s og trykk Enter." -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Pakkesystemet %s stttes ikke" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Klarer ikke bestemme en passende pakkesystemtype" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Klarer ikke finne informasjonom %s." @@ -2600,133 +2608,132 @@ msgid "You may want to run apt-get update to correct these problems" msgstr "" "Det kan hende du vil kjre apt-get update for rette p disse problemene" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "Ugyldig oppslag i foretrekksfila, manglende pakkehode" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Forsto ikke spikring av typen %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Ingen prioritet (eller null) spesifisert for pin" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Lageret har et uoverensstemmende versjonssystem" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Feil oppsto under behandling av %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Feil oppsto under behandling av %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Feil oppsto under behandling av %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Feil oppsto under behandling av %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Feil oppsto under behandling av %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Feil oppsto under behandling av %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Feil oppsto under behandling av %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Feil oppsto under behandling av %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Feil oppsto under behandling av %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "Jss, du har overgtt antallet pakkenavn denne APT klarer." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Jss, du har overgtt antallet versjoner denne APT klarer." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "Jss, du har overgtt antallet beskrivelser denne APT klarer." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Jss, du har overgtt antallet avhengighetsforhold denne APT klarer." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Feil oppsto under behandling av %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Feil oppsto under behandling av %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Fant ikke pakken %s %s ved behandling av filkrav" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Kunne ikke finne informasjon om %s - lista over kildekodepakker" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Samler inn filtilbud" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "IO-feil ved lagring av kildekode-lager" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "klarte ikke endre navnet, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "Feil MD5sum" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Hashsummen stemmer ikke" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "" "Det er ingen offentlig nkkel tilgjengelig for de flgende nkkel-ID-ene:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2735,7 +2742,7 @@ msgstr "" "Klarte ikke finne en fil for pakken %s. Det kan bety at du m ordne pakken " "selv (fordi arkitekturen mangler)." -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2744,25 +2751,23 @@ msgstr "" "Klarte ikke finne en fil for pakken %s. Det kan bety at du m ordne denne " "pakken selv." -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "Oversiktsfilene er delagte. Feltet Filename: mangler for pakken %s." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Feil strrelse" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Klarer ikke fortolke pakkefila %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Merk, velger %s istedenfor %s\n" @@ -2776,7 +2781,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Utgivers blokk %s inneholder ikke no fingeravtrykk" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2785,42 +2790,42 @@ msgstr "" "Bruker CD-ROM monteringspunkt %s\n" "Monterer CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Indentifiserer.." -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Lagret merkelapp: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "Avmonterer CD-ROM ...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Bruker CD-ROM monteringspunkt %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Avmonterer CD-ROM\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Venter p CD-en...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Monterer CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Leter gjennom CD for indeksfiler..\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2829,22 +2834,22 @@ msgstr "" "Fant %zu pakkeindekser, %zu kildeindekser, %zu oversettelsesindekser og %zu " "signaturer\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Fant merkelapp %s\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Det er ikke et gyldig navn, prv igjen.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2853,34 +2858,34 @@ msgstr "" "CD-en er kalt: \n" "%s\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Kopierer pakkelister..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Skriver ny kildeliste\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Kildelisteoppfringer for denne CD-en er:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Skrev %i poster.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Skrev %i poster med %i manglende filer.\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Skrev %i poster med %i feile filer.\n" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, 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" @@ -2967,7 +2972,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Kan ikke lse listemappa" diff --git a/po/ne.po b/po/ne.po index 8b49e7aef..816bc7df3 100644 --- a/po/ne.po +++ b/po/ne.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -22,7 +22,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "प्याकेज %s संस्करण %s संग एउटा नभेटिएको dep छ:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -94,7 +94,7 @@ msgstr "कूल शिथिल खाली ठाऊँ:" msgid "Total space accounted for: " msgstr "को लागि कूल खाली ठाऊँ लेखांकन:" -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "प्याकेज फाइल %s sync भन्दा बाहिर छ ।" @@ -152,14 +152,14 @@ msgstr " संस्करण तालिका:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -235,15 +235,15 @@ msgstr "" " -o=? एउटा स्वेच्छाचारी कनफिगरेसन फाइल सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n" "धेरै जानकारीकोप लागि apt-cache(8) र apt.conf(5) म्यानुल पृष्टहरू हेर्नुहोस् ।\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "कृपया यो डिस्कको लागि नाम उपलब्ध गराउनुहोस्, जस्तै 'Debian 2.1r1 Disk 1'" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "कृपया ड्राइभमा डिस्क घुसाउनुहोस् र इन्टर थिच्नुहोस्" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "तपाईँको सेटमा बाँकी सि डि हरुको लागि यो प्रक्रिया फेरी गर्नुहोस् । " @@ -308,7 +308,7 @@ msgstr "" " -c=? यो कनफिगरेसन फाइल पढ्नुहोस्\n" " -o=? एउटा स्वेच्छाचारी कनफिगरेसन विकल्प सेट गर्नुहोस्, जस्तै -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr " %s मा लेख्न असक्षम" @@ -652,7 +652,7 @@ msgstr " %s मा %s पुन:नामकरण असफल भयो" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "संकलन त्रुटि रिजेक्स गर्नुहोस् - %s" @@ -753,118 +753,118 @@ msgstr "%lu हटाउन र %lu स्तर वृद्धि गरिए msgid "%lu not fully installed or removed.\n" msgstr "%lu पूर्णरुपले स्थापना भएन र हटाइएन ।\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "निर्भरताहरू सुधार गरिदैछ..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr "असफल भयो ।" -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "निर्भरताहरू सुधार गर्न असक्षम भयो" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "स्तर वृद्धि सेटलाई न्यूनतम गर्न असक्षम भयो" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr "काम भयो" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "यी सुधार गर्न तपाईँले `apt-get -f install' चलाउन पर्छ ।" -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "नभेटिएका निर्भरताहरू । -f प्रयोग गरेर प्रयास गर्नुहोस् ।" -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "चेतावनी: निम्न प्याकलेजहरू प्रणाणीकरण हुन सक्दैन! " -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "प्रमाणिकरण चेतावनी अधिलेखन भयो ।\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "यी प्याकेजहरू रूजू बिना स्थापना गर्नुहुन्छ [y/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "केही प्याकेजहरू प्रमाणीकरण हुन सक्दैन" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "त्यहाँ समस्याहरू छन् र हुन्छलाई जोड नगरिकन -y को प्रयोग भयो" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "आन्तरिक त्रुटि, स्थापना प्याकेजहरुलाई भाँचिएको प्याकेज भनिन्थ्यो!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "प्याकेजहरू हट्न चाहदैछन् तर हटाई अक्षम भइरहेछ ।" -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "आन्तरिक त्रुटि, आदेश समाप्त भएको छैन" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "डाउनलोड डाइरेक्ट्री ताल्चा मार्न असक्षम" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "स्रोतहरुको सूचि पढ्न सकिएन ।" -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "कस्तो नमिलेको.. साइजहरू मेल खाएन, apt@packages.debian.org इमेल गर्नुहोस्" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "संग्रहहरुको %sB/%sB प्राप्त गर्न आवश्यक ।\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "संग्रहहरुको %sB प्राप्त गर्न आवश्यक ।\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "अनप्याक गरिसके पछि थप डिस्क खाली ठाउँको %sB प्रयोग हुनेछ ।\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "%sB अनप्याक गरिसके पछि डिस्क खाली ठाउँ खाली हुनेछ ।\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr " %s मा खाली ठाऊँ निर्धारण गर्न सकिएन" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "तपाईँ संग %s मा पर्याप्त खाली ठाऊँ छैन ।" -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "त्रिभियल मात्र निर्दिष्ट गरिएको छ तर यो त्रिभियल सञ्चालन होइन ।" -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "हो,मैले भने जस्तै गर्नुहोस्!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -875,28 +875,28 @@ msgstr "" "निरन्तरता दिन '%s' वाक्यांशमा टाइप गर्नुहोस् \n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "परित्याग गर्नुहोस् ।" -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "के तपाईँ निरन्तरता दिन चाहनुहुन्छ [Y/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s तान्न असफल भयो\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "केही फाइलहरू डाउनलोड गर्न असफल भयो" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "डाउनलोड समाप्त भयो र डाउनलोडमा मोड मात्रै छ" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -904,47 +904,47 @@ msgstr "" "केही संग्रहहरू तान्न असक्षम भयो,apt-get अद्यावधिक चलिरहेछ वा हराइरहेको --fix-संगै प्रयास " "गर्नुहुन्छ ?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "हराइरहेको --fix-र स्वाप भइरहेको मेडिया हाल समर्थित भइरहेको छैन" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "हराइरहेको प्याकेजहरू सुधार्न असक्षम भयो ।" -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "स्थापना परित्याग गरिदैछ ।" -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "द्रष्टब्य, %s को सट्टा %s चयन भइरहेछ\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "%s फड्किदैछ, यो पहिल्यै स्थापना भयो र स्तरवृद्धि सेट भएको छैन ।\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "प्याकेज %s स्थापना भएन, त्यसैले हटेन\n" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "प्याकेज %s ...द्वारा उपलब्ध गराइएको अवास्तविक प्याकेज हो:\n" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [स्थापना भयो]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "तपाईँले स्थापना गर्न स्पष्ट रुपमा एउटा चयन गर्नुहोस् ।" -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -955,69 +955,74 @@ msgstr "" "यसको मतलब प्याकेज हराइरहेको प्याकेज, बेकायम भयो\n" " अर्को स्रोतबाट मात्र उपलब्ध हुन्छ\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "जे भए पनि निम्न प्याकेजहरूले यसलाई बदल्छ:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "प्याकेज %s संग कुनै स्थापना उमेद्वार छैन" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr " %s को पुन: स्थापना सम्भव छैन, यो डाउनलोड हुन सक्दैन ।\n" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s पहिल्यै नयाँ संस्करण हो ।\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr " '%s' को लागि '%s' निष्काशन फेला पार्न सकिएन" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr " '%s' को लागि '%s' संस्करण फेला पार्न सकिएन" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "%s को लागि चयन भएको संस्करण %s (%s)\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "अद्यावधिक आदेशले कुनै तर्कहरू लिदैन" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "सूचि डाइरेक्ट्री ताल्चा मार्न असफल" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1033,44 +1038,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "निम्न सूचनाले अवस्थालाई हल गर्न मद्दत गर्नेछ: " -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "आन्तरिक त्रुटि,समस्या हलकर्ताले उत्तम गुण भाँच्यो " -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "आन्तरिक त्रुटि,सबै स्तरवृद्धिले उत्तम गुण नष्ट गर्दछ" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, fuzzy, c-format msgid "Couldn't find task %s" msgstr "प्याकेज फेला पार्न सकिएन %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "प्याकेज फेला पार्न सकिएन %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "द्रष्टब्य, रिजेक्स '%s' को लागि %s चयन गरिदैछ\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "तर %s स्थापना हुनुपर्यो" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "तपाईँ यसलाई सुधार गर्न `apt-get -f install' चलाउन चाहनुहुन्छ:" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1078,7 +1083,7 @@ msgstr "" "नभेटिएका निर्भरताहरू । प्याकेजहरू बिना 'apt-get -f install' प्रयास गर्नुहोस् ( वा " "समाधान निर्दिष्ट गर्नुहोस्) ।" -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1091,122 +1096,122 @@ msgstr "" " वितरण अहिले सम्म सिर्जना\n" " भएको छैन वा आवगमन विनानै सर्यो ।" -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "भाँचिएका प्याकेजहरू" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "निम्न अतिरिक्त प्याकेजहरू स्थापना हुनेछन्:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "सुझाव दिएका प्याकेजहरू:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "सिफारिस गरिएका प्याकेजहरू:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "स्तर वृद्धि गणना गरिदैछ..." -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "असफल भयो" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "काम भयो" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "आन्तरिक त्रुटि,समस्या हलकर्ताले उत्तम गुण भाँच्यो " -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "को लागि स्रोत तान्न कम्तिमा एउटा प्याकेज निर्दिष्ट गर्नुपर्छ" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "%s को लागि स्रोत प्याकेज फेला पार्न असफल भयो" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "पहिल्यै डाउनलोड भएका फाइलहरु फड्काइदैछ '%s'\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "तपाईँ संग %s मा पर्याप्त खाली ठाऊँ छैन" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "स्रोत संग्रहहरुको %sB/%sB प्राप्त गर्न आवश्यक छ ।\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "स्रोत संग्रहहरुको %sB प्राप्त गर्न आवश्यक छ ।\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "स्रोत फड्काउनुहोस् %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "केही संग्रह फड्काउन असफल भयो ।" -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr " %s मा पहिल्यै अनप्याक गरिएका स्रोतको अनप्याक फड्काइदैछ\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "अनप्याक आदेश '%s' असफल भयो ।\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "जाँच्नुहोस् यदि 'dpkg-dev' प्याकेज स्थापना भयो ।\n" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "निर्माण आदेश '%s' असफल भयो ।\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "शाखा प्रक्रिया असफल भयो" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "को लागि builddeps जाँच्न कम्तिमा एउटा प्याकेज निर्दष्ट गर्नुपर्छ" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s को लागि निर्माण-निर्भरता सूचना प्राप्त गर्न असक्षम भयो" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s कुनै निर्माणमा आधारित हुदैन ।\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, 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:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1215,30 +1220,30 @@ msgstr "" "%sको लागि %s निर्भरता सन्तुष्ट हुन सकेन किन भने प्याकेज %s को कुनै उपलब्ध संस्करणले संस्करण " "आवश्यकताहरुलाई सन्तुष्ट पार्न सकेन " -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2551 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "%s को लागि %s निर्भरता सन्तुष्ट पार्न असफल भयो: स्थापित प्याकेज %s अति नयाँ छ" -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%s को लागि %s निर्भरता सन्तुष्ट गर्न असफल: %s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s को लागि निर्माण निर्भरताहरू सन्तुष्ट गर्न सकिएन । " -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "निर्माण निर्भरताहरू प्रक्रिया गर्न असफल" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "समर्थित मोड्युलहरू:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1321,7 +1326,7 @@ msgstr "" "pages हेर्नुहोस् ।\n" " APT संग सुपर काउ शक्तिहरू छ ।\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1559,9 +1564,13 @@ msgstr " %s को लागि संस्करन बिना अधिल msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "%s पढ्न असफल भयो" @@ -1591,9 +1600,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "सूचना र टेम्प डाइरेक्ट्रीहरू एउटै फाइल प्रणालीमा हुनपर्छ" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "प्याकेज सूचिहरू पढिदैछ" @@ -1695,12 +1704,12 @@ msgstr "वैध नियन्त्रण फाइल स्थित ग msgid "Unparsable control file" msgstr "पद वर्णन गर्न नसकिने नियन्त्रण फाइल" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "सिडी रोम डेटाबेस पढ्न असक्षम %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1708,20 +1717,20 @@ msgstr "" "कृपया APT ले यो सिडी रोमलाई चिन्नको लागि apt-cdrom प्रयोग गर्नुहोस् । apt-get " "अद्यावधिक नयाँ सिडी रोमहरू थप्नको लागि प्रयोग गरिदैन" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "गलत सिडी रोम" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "%s मा सिडी रोम अनमाउन्ट गर्न असक्षम भयो, यो अहिले प्रयोगमा हुन सक्छ ।" -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "डिस्क फेला परेन ।" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "फाइल फेला परेन " @@ -1739,34 +1748,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "अवैध URl, स्थानिय URIS // संग सुरू हुन सक्दैन" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "लगइन भइरहेछ" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "समान नाम निर्धारण गर्न असक्षम भयो" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "स्थानिय नाम निर्धारण गर्न असक्षम भयो" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "सर्भरले जडान अस्वीकार गर्यो र भन्यो: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "प्रयोगकर्ता असफल भयो, सर्भरले भन्यो: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "पास असफल भयो, सर्भरले भन्यो: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1774,114 +1783,114 @@ msgstr "" "प्रोक्सी सर्भर निर्दिष्ट गरियो तर कुनै स्क्रिफ्ट लगइन भएन, Acquire::ftp::ProxyLogin " "खाली छ ।" -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "लगइन स्क्रिफ्ट आदेश '%s' असफल भयो, सर्भरले भन्यो: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "टाइप असफल भयो: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "जडान समय सकियो" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "सर्भरले जडान बन्द गर्यो" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "त्रुटि पढ्नुहोस्" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "एउटा प्रतिक्रियाले बफर अधिप्रवाह गर्यो" -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "प्रोटोकल दूषित" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "त्रुटि लेख्नुहोस्" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "एउटा सकेट सिर्जना गर्न सकेन" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "डेटा सकेट जडान गर्न सकिएन, जडान समय सकियो" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "निस्क्रिय सकेट जडान गर्न सकिएन" -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo सुन्ने सकेट प्राप्त गर्न असक्षम भयो" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "सकेट बाँध्न सकिएन" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "सकेटमा सुन्न सकिएन" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "सकेट नाम निर्धारण गर्न सकिएन" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "पोर्ट आदेश पठाउन असक्षम भयो" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "अज्ञात ठेगाना परिवार %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT असफल भयो, सर्भरले भन्यो: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "डेटा सकेटको जडान समय सकियो" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "जडान स्वीकार गर्न असक्षम भयो" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "समस्या द्रुतान्वेषण फाइल" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "फाइल तान्न असक्षम भयो, सर्भरले भन्यो '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "डेटा सकेट समय सकियो" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "डेटा स्थान्तरण असफल भयो, सर्भरले भन्यो '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "क्वेरी" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "आह्वान गर्न असक्षम भयो" @@ -1989,94 +1998,94 @@ msgstr "%s को लागि पाइप खोल्न सकिएन" msgid "Read error from %s process" msgstr "%s प्रक्रियाबाट त्रुटि पढ्नुहोस् " -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "हेडरहरुको लागि पर्खिदैछ" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr " %u chars माथि एकल हेडर लाइन प्राप्त गर्नुहोस्" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "खराब हेडर लाइन" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP सर्भरले अवैध जवाफ हेडर पठायो" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP सर्भरले अवैध सामग्री-लम्बाई हेडर पठायो" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP सर्भरले अवैध सामग्री-दायरा हेडर पठायो" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "HTTP सर्भर संग भाँचिएको दायरा समर्थन छ" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "अज्ञात मिति ढाँचा" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "असफल चयन गर्नुहोस्" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "जडान समय सकियो" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "निर्गात फाइलमा त्रुटि लेखिदैछ" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "फाइलमा त्रुटि लेखिदैछ" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "फाइलमा त्रुटि लेखिदैछ" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "सर्भरबाट त्रुटि पढिदैछ । दूर गन्तब्य बन्द जडान" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "सर्भरबाट त्रुटि पढिदैछ" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 #, fuzzy msgid "Failed to truncate file" msgstr "फाइल %s लेख्न असफल भयो" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "खराब हेडर डेटा" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "जडान असफल भयो" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "आन्तरिक त्रुटि" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "एउटा खाली फाइल mmap बनाउन सकिएन" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "%lu बाइटहरुको mmap बनाउन सकिएन" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2223,13 +2232,13 @@ msgstr "अवैध सञ्चालन %s" msgid "Unable to stat the mount point %s" msgstr "माउन्ट बिन्दु %s स्थिर गर्न असक्षम" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "%s मा परिवर्तन गर्न असक्षम" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "सिडी रोम स्थिर गर्न असफल भयो" @@ -2258,51 +2267,50 @@ msgstr "ताल्चा प्राप्त गर्न सकिएन %s msgid "Waited for %s but it wasn't there" msgstr " %s को लागि पर्खिरहेको तर यो त्यहाँ छैन" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "सहायक प्रक्रिया %s ले खण्डिकरण गल्ति प्राप्त भयो ।" -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "सहायक प्रक्रिया %s ले खण्डिकरण गल्ति प्राप्त भयो ।" -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "सहायक प्रक्रिया %s ले एउटा त्रुटि कोड फर्कायो (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "सहायक प्रक्रिया %s अनपेक्षित बन्द भयो" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "फाइल %s खोल्न सकिएन" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "पड्नुहोस्, अहिले सम्म %lu पढ्न छ तर कुनै बाँकी छैन" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "लेख्नुहोस्, अहिले सम्म %lu लेख्न छ तर सकिदैन " -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "फाइल बन्द गर्दा समस्या" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "फाइल अनलिङ्क गर्दा समस्या" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "फाइल गुप्तिकरण गर्दा समस्या" @@ -2395,17 +2403,17 @@ msgstr "उमेद्वार संस्करणहरू" msgid "Dependency generation" msgstr "निर्भरता सिर्जना" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 #, fuzzy msgid "Reading state information" msgstr "उपलब्ध सूचना गाँभिदैछ" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "%s खोल्न असफल" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "फाइल %s लेख्न असफल भयो" @@ -2445,32 +2453,32 @@ msgstr "वैरुप्य लाइन %lu स्रोत सूचिम msgid "Malformed line %lu in source list %s (dist parse)" msgstr "वैरुप्य लाइन %lu स्रोत सूचिमा %s (dist पद वर्णन )" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "%s खोलिदैछ" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "लाइन %u स्रोत सूचि %s मा अति लामो छ ।" -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "वैरुप्य लाइन %u स्रोत सूचिमा %s (प्रकार)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "स्रोत सूची %s भित्र %u लाइनमा टाइप '%s' ज्ञात छैन" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "वैरुप्य लाइन %u स्रोत सूचिमा %s (बिक्रता आइडी)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2492,7 +2500,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "प्याकेज %s पुन:स्थापना हुन चाहन्छ, तर यसको लागि मैले एउटा संग्रह फेला पार्न सकिन ।" -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2500,11 +2508,11 @@ msgstr "" "त्रुटि, pkgProblemResolver:: समाधानले विच्छेदन सिर्जना गर्दछ, यो भइरहेको प्याकेजहरुको " "कारणले गर्दा हो ।" -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "समस्याहरू सुधार्न असक्षम भयो, तपाईँले प्याकेजहरु भाँच्नुभयो ।" -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2524,12 +2532,12 @@ msgstr "आंशिक संग्रह डाइरेक्ट्री %s #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "%li को %li फाइल पुन:प्राप्त गरिदैछ (%s बाँकी छ)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "%li को %li फाइल पुन:प्राप्त गरिदैछ" @@ -2549,16 +2557,16 @@ msgstr "विधि %s सही रुपले सुरू हुन सक msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "कृपया डिस्क लेबुल: '%s' ड्राइभ '%s'मा घुसउनुहोस् र इन्टर थिच्नुहोस् । " -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "प्याकिङ्ग प्रणाली '%s' समर्थित छैन" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "उपयुक्त प्याकिङ्ग प्रणाली प्रकार निर्धारन गर्न असक्षम भयो" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "%s स्थिर गर्न असक्षम भयो ।" @@ -2575,134 +2583,133 @@ msgstr "प्याकेज सूचीहरू वा वस्तुस् msgid "You may want to run apt-get update to correct these problems" msgstr "यो समस्याहरू सुधार्न तपाईँ apt-get अद्यावधिक चलाउन चाहनुहुन्छ" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "प्राथमिकता फाइलमा अवैध रेकर्ड, कुनै प्याकेज हेडर छैन" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "पिन टाइप %s बुझ्न सकिएन " -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "पिनको लागि कुनै प्राथमिकता (वा शून्य) निर्दिष्ट छैन" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "क्यास संग एउटा नमिल्दो संस्करण प्रणाली छ" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ प्याकेज)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (प्याकेज १ प्रयोग गर्नुहोस्)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ फाइल संस्करण १)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (प्याकेज २ प्रयोग गर्नुहोस्)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ फाइल संस्करण १)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ संस्करण १)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (प्याकेज ३ प्रयोग गर्नुहोस्)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ संस्करण २)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (नयाँ फाइल संस्करण १)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "वाऊ, APT ले सक्षम गरेको प्याकेज नामहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "वाऊ, APT ले सक्षम गरेको संस्करणहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 #, fuzzy msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "वाऊ, APT ले सक्षम गरेको संस्करणहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "वाऊ, APT ले सक्षम गरेको निर्भरताहरुको नम्बरलाई तपाईँले उछिन्नुभयो । " -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (pkg फेला पार्नुहोस् )" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr " %s प्रक्रिया गर्दा त्रुटि देखा पर्यो (संकलन फाइलले उपलब्ध गर्दछ)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "फाइल निर्भरताहरू प्रक्रिया गर्दा प्याकेज %s %s फेला परेन" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "स्रोत प्याकेज सूची %s स्थिर गर्न सकिएन " -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "फाइल उपलब्धताहरू संकलन गरिदैछ" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "स्रोत क्यास बचत गर्दा IO त्रुटि" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "पुन:नामकरण असफल गरियो, %s (%s -> %s) ।" -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5Sum मेल भएन" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 #, fuzzy msgid "Hash Sum mismatch" msgstr "MD5Sum मेल भएन" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "निम्न कुञ्जी IDs को लागि कुनै सार्वजनिक कुञ्जी उपलब्ध छैन:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2711,7 +2718,7 @@ msgstr "" "%s प्याकेजको लागि मैले फाइल स्थित गर्न सकिन । यसको मतलब तपाईँले म्यानुल्ली यो प्याकेज " "निश्चित गर्नुहोस् । (arch हराएरहेको कारणले) " -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2720,25 +2727,23 @@ msgstr "" "%s प्याकेजको लागि मैले फाइल स्थित गर्न सकिन । यसको मतलब तपाईँले म्यानुल्ली यो प्याकेज " "निश्चित गर्नुहोस् ।" -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "प्याकेज अनुक्रमणिका फाइलहरू दूषित भए । प्याकेज %s को लागि कुनै फाइलनाम: फाँट छैन ।" -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "साइज मेल खाएन" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "प्याकेज फाइल पद वर्णन गर्न असक्षम %s (१)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "द्रष्टब्य, %s को सट्टा %s चयन भइरहेछ\n" @@ -2752,7 +2757,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "बिक्रता ब्ल्क %s ले कुनै औठाछाप समाविष्ट गर्दैन" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2761,65 +2766,65 @@ msgstr "" "सिडी रोम माउन्ट विन्दु प्रयोग गरिदैछ %s\n" "सिडी रोम माउन्ट गरिदैछ\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "परिचय गराइदैछ.." -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "लेबुल भण्डारण गर्नुहोस्:%s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 #, fuzzy msgid "Unmounting CD-ROM...\n" msgstr "सिडी रोम अनमाउन्ट गरिदैछ..." -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "सिडी रोम माउन्ट विन्दु प्रयोग गरिदैछ %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "सिडी रोम अनमाउन्ट गरिदैछ\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "डिस्को लागि पर्खिदै...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "सिडी रोम माउन्ट गरिदै...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "अनुक्रमणिका फाइलहरुको लागि डिस्क स्क्यान गरिदैछ...\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, fuzzy, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" "zu signatures\n" msgstr " %i प्याकेज अनुक्रमणिकाहरू, %i स्रोत अनुक्रमणिका र %i हस्ताक्षरहरू फेला परे\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, fuzzy, c-format msgid "Found label '%s'\n" msgstr "लेबुल भण्डारण गर्नुहोस्:%s \n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "त्यो वैध नाम होइन, फेरी प्रयास गर्नुहोस् ।\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2828,34 +2833,34 @@ msgstr "" "यो डिस्कको नाम:\n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "प्यकेज सूचिहरू प्रतिलिपी गरिदैछ..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "नयाँ स्रोत सूचि लेखिदैछ\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "यो डिस्कको लागि स्रोत सूचि प्रविष्टिहरू:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "%i रेकर्डहरू लेखियो ।\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "हराइरहेको फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "मेल नखाएका फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "हराइरहेको फाइल %i हरू र मेल नखाएका फाइल %i हरू संगै %i रेकर्डहरू लेख्नुहोस् ।\n" @@ -2942,7 +2947,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "सूचि डाइरेक्ट्री ताल्चा मार्न असफल" diff --git a/po/nl.po b/po/nl.po index 1155852f6..be9a7a3c8 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+0200\n" "PO-Revision-Date: 2008-05-05 18:39+0200\n" "Last-Translator: Bart Cornelis <cobaco@skolelinux.no>\n" "Language-Team: debian-l10n-dutch <debian-l10n-dutch@lists.debian.org>\n" @@ -22,7 +22,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Pakket %s versie %s heeft een niet-voldane vereiste:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -92,7 +92,7 @@ msgstr "Totale onbenutte ruimte: " msgid "Total space accounted for: " msgstr "Totale hoeveelheid verantwoorde ruimte: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Pakketbestand %s is niet meer gesynchroniseerd." @@ -150,14 +150,14 @@ msgstr " Versietabel:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -233,16 +233,16 @@ msgstr "" "\n" "Zie de apt-cache(8) en apt.conf(5) handleidingen voor meer informatie.\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "" "Gelieve een naam voor deze schijf op te geven, zoals 'Debian 2.1r1 Schijf 1'" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Gelieve een schijf in het station te plaatsen en op 'enter' te drukken" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Dit proces dient herhaald te worden voor alle CD's in uw set." @@ -309,7 +309,7 @@ msgstr "" " -c=? Lees dit configuratiebestand.\n" " -o=? Stel een willekeurige optie in, b.v. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Kan niet naar %s schrijven" @@ -657,7 +657,7 @@ msgstr "Hernoemen van %s naar %s is mislukt" msgid "Y" msgstr "J" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Regex-compilatiefout - %s" @@ -758,121 +758,121 @@ msgstr "%lu te verwijderen en %lu niet opgewaardeerd.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu pakketten niet volledig geïnstalleerd of verwijderd.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Vereisten worden gecorrigeerd..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " mislukt." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Kan vereisten niet corrigeren" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Kon de verzameling op te waarderen pakketten niet minimaliseren" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Klaar" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Er zijn vereisten waaraan niet voldaan is. Probeer -f te gebruiken." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "" "WAARSCHUWING: De volgende pakketten kunnen niet geauthentificeerd worden:" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Authentificatiewaarschuwing is genegeerd.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Wilt u deze pakketten installeren zonder verificatie [j/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Sommige pakketten konden niet geauthentificeerd worden" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Interne fout, InstallPackages is aangeroepen met defecte pakketten!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "Pakketten moeten verwijderd worden maar verwijderen is uitgeschakeld." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Interne fout, rangschikken is niet voltooid" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Kon de ophaalmap niet vergrendelen" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "De lijst van bronnen kon niet gelezen worden." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 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:842 +#: cmdline/apt-get.cc:841 #, 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:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Er moeten %sB aan archieven opgehaald worden.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kon de hoeveelheid vrije schijfruimte op %s niet bepalen" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "U heeft onvoldoende vrije schijfruimte op %s." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Ja, doe wat ik zeg!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -883,28 +883,28 @@ msgstr "" "Als u wilt doorgaan, dient u de zin '%s' in te typen.\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Afbreken." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Wilt u doorgaan [J/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ophalen van %s %s is mislukt\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Ophalen van sommige bestanden is mislukt" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Ophalen klaar en alleen-ophalen-modus staat aan" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -912,49 +912,49 @@ msgstr "" "Kon sommige archieven niet ophalen, misschien kunt u 'apt-get update' of --" "fix-missing proberen?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 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:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Geen oplossing voor de missende pakketten gevonden." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Installatie wordt afgebroken." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, 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:1066 +#: cmdline/apt-get.cc:1068 #, 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:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Geïnstalleerd]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "U dient er één expliciet te selecteren voor installatie." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -965,59 +965,59 @@ 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:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Echter, de volgende pakketten vervangen dit:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Pakket %s heeft geen installeerbare kandidaat" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s is reeds de nieuwste versie.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Release '%s' voor '%s' is niet gevonden" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Versie '%s' voor '%s' is niet gevonden" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Versie %s (%s) geselecteerd voor %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "De 'update'-opdracht aanvaard geen argumenten" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Kon de lijst-map niet vergrendelen" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 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:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1025,11 +1025,18 @@ msgstr "" "De volgende pakketten zijn automatisch geïnstalleerd en zijn niet langer " "nodig:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"De volgende pakketten zijn automatisch geïnstalleerd en zijn niet langer " +"nodig:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "U kunt deze verwijderen via 'apt-get autoremove'." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1047,45 +1054,45 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "De volgende informatie helpt u mogelijk verder:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Interne fout, AutoRemover heeft dingen stukgemaakt" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Interne fout, AllUpgrade heeft dingen stukgemaakt" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Kon taak %s niet vinden" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Kon pakket %s niet vinden" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, 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:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s is ingesteld voor handmatige installatie.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1093,7 +1100,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:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1104,119 +1111,119 @@ 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:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Niet-werkende pakketten:" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "De volgende extra pakketten zullen geïnstalleerd worden:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Voorgestelde pakketten:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Aanbevolen pakketten:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Opwaardering wordt doorgerekend... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Mislukt" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Klaar" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Interne fout, probleemoplosser heeft dingen stukgemaakt" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "Kan geen bronpakket vinden voor %s" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Reeds opgehaald bestand '%s' wordt overgeslagen\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, 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:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Moet %sB/%sB aan bronarchieven ophalen.\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Moet %sB aan bronarchieven ophalen.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Ophalen bron %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Ophalen van sommige archieven is mislukt." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Uitpakopdracht '%s' is mislukt.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, 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:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Bouwopdracht '%s' is mislukt.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Dochterproces is mislukt" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 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:2353 +#: cmdline/apt-get.cc:2390 #, 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:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s heeft geen bouwvereisten.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1225,7 +1232,7 @@ msgstr "" "De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " "onvindbaar is" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1234,32 +1241,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:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, 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:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Bouwvereisten voor %s konden niet voldaan worden." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Verwerken van de bouwvereisten is mislukt" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Ondersteunde modules:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1348,7 +1355,7 @@ msgstr "" "voor meer informatie en opties.\n" " Deze APT heeft Super Koekrachten.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1592,9 +1599,13 @@ msgstr "Pakket-overeenkomst wordt overschreven met 'no version' voor %s" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Kan %s niet lezen" @@ -1625,9 +1636,9 @@ msgstr "" "De 'info'- en de 'temp'-mappen dienen op hetzelfde bestandsysteem te staan" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Pakketlijsten worden ingelezen" @@ -1731,12 +1742,12 @@ msgstr "Lokaliseren van een geldig 'control'-bestand is mislukt" msgid "Unparsable control file" msgstr "Niet-ontleedbaar 'control'-bestand" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Kan de cd databank %s niet lezen" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1744,21 +1755,21 @@ msgstr "" "Om deze APT deze CD te laten herkennen kunt u best apt-cdrom gebruiken. 'apt-" "get update' is niet in staat om nieuwe CDs toe te voegen" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Verkeerde CD" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "" "Kan de CD in %s niet loskoppelen, mogelijk wordt die nog steeds gebruikt." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Schijf niet gevonden" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Bestand niet gevonden" @@ -1776,34 +1787,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "Ongeldige URI, lokale URIs mogen niet beginnen met //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Bezig met aanmelden" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Kan de 'peer'-naam niet bepalen" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Kan de lokale naam niet bepalen" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Onze verbinding is door de server geweigerd met bericht: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER mislukt; bericht van server: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS mislukt; bericht van server: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1811,114 +1822,114 @@ msgstr "" "Er was een proxy-server opgegeven, maar geen aanmeldscript, Acquire::ftp::" "ProxyLogin is leeg." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Aanmeldscriptopdracht '%s' is mislukt; bericht van server: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE mislukt; bericht van server: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Verbinding is verlopen" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Verbinding is verbroken door de server" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Leesfout" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Een reactie deed de buffer overlopen" -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Protocolcorruptie" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Schrijffout" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Kon geen socket aanmaken" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Kon de datasocket niet verbinden, de verbinding verliep" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Kon de passieve socket niet verbinden." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo kon geen luistersocket verkrijgen" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Kon geen socket binden" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Kon niet op de socket niet luisteren" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Kon de socketnaam niet bepalen" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Kan PORT-commando niet verzenden" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Onbekende adresfamilie %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT is mislukt; bericht van server: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Datasocket verbinding is verlopen" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Kan de verbinding niet aanvaarden" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Probleem bij het hashen van het bestand" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Kan bestand niet ophalen; bericht van server: %s" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Datasocket verliep" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Data transfer is mislukt, server zei: %s" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Zoekopdracht" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Aanroepen mislukt van " @@ -2034,97 +2045,97 @@ msgstr "Kon geen pijp openen voor %s" msgid "Read error from %s process" msgstr "Leesfout door proces %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Wachtend op de kopteksten" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Enkele koptekstregel ontvangen met meer dan %u karakters" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Foute koptekstregel" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "Er is door de HTTP server een ongeldige 'reply'-koptekst verstuurd" -#: methods/http.cc:588 +#: methods/http.cc:593 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:603 +#: methods/http.cc:608 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:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "De bereik-ondersteuning van deze HTTP-server werkt niet" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Onbekend datumformaat" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Selectie is mislukt" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Verbinding verliep" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Fout bij het schrijven naar het uitvoerbestand" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Fout bij het schrijven naar bestand" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Fout bij het schrijven naar het bestand" -#: methods/http.cc:883 +#: methods/http.cc:888 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:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Fout bij het lezen van de server" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 #, fuzzy msgid "Failed to truncate file" msgstr "Wegschrijven van bestand %s is mislukt" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Foute koptekstdata" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Verbinding mislukt" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Interne fout" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Kan een leeg bestand niet mmappen" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Kon van %lu bytes geen mmap maken" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2275,13 +2286,13 @@ 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:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Kan %s niet veranderen" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Het opvragen van de CD-status is mislukt" @@ -2313,51 +2324,50 @@ msgstr "Kon vergrendeling %s niet verkrijgen" msgid "Waited for %s but it wasn't there" msgstr "Er is gewacht op %s, maar die kwam niet" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Subproces %s ontving een segmentatiefout." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Subproces %s ontving een segmentatiefout." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Subproces %s gaf de foutcode %u terug" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Subproces %s sloot onverwacht af" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Kon het bestand %s niet openen" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Probleem bij het afsluiten van het bestand" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Probleem bij het ontlinken van het bestand" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Probleem bij het synchroniseren van het bestand" @@ -2450,16 +2460,16 @@ msgstr "Kandidaat-versies" msgid "Dependency generation" msgstr "Generatie vereisten" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "De status informatie wordt gelezen" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Openen van StateFile %s is mislukt" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Wegschrijven van tijdelijke StateFile %s is mislukt" @@ -2499,32 +2509,32 @@ msgstr "Misvormde regel %lu in bronlijst %s (absolute dist)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Misvormde regel %lu in bronlijst %s (dist parse)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "%s wordt geopend" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Regel %u van de bronlijst %s is te lang." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Misvormde regel %u in bronlijst %s (type)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Type '%s' op regel %u in bronlijst %s is onbekend" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Misvormde regel %u in bronlijst %s (verkopers-ID)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2549,7 +2559,7 @@ msgstr "" "Pakket %s moet opnieuw geïnstalleerd worden, maar er kan geen archief voor " "gevonden worden." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2557,11 +2567,11 @@ msgstr "" "Fout, pkgProblemResolver::Resolve maakte scheidingen aan, dit kan " "veroorzaakt worden door vastgehouden pakketten." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "Kan problemen niet verhelpen, u houdt defecte pakketten vast." -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2581,12 +2591,12 @@ msgstr "Archiefmap %spartial is afwezig." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, 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:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Bestand %li van %li wordt opgehaald" @@ -2608,16 +2618,16 @@ msgstr "" "Gelieve de schijf met label '%s' in het station '%s' te plaatsen en op " "'enter' te drukken." -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Pakketbeheersysteem '%s' wordt niet ondersteund" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Kan geen geschikt pakketsysteemtype bepalen" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Kan de status van %s niet opvragen." @@ -2638,137 +2648,136 @@ 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:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "Ongeldige record in het voorkeurenbestand, geen 'Package'-koptekst" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Pintype %s wordt niet begrepen" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Er is geen prioriteit (of nul) opgegeven voor deze pin" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Cache heeft een niet-compatibel versienummeringssysteem" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Fout tijdens verwerken van %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Fout tijdens verwerken van %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Fout tijdens verwerken van %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Fout tijdens verwerken van %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Fout tijdens verwerken van %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Fout tijdens verwerken van %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Fout tijdens verwerken van %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Fout tijdens verwerken van %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Fout tijdens verwerken van %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "Wauw, u heeft meer pakketten dan deze APT aan kan." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Wauw, u heeft meer versies dan deze APT aan kan." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" "Wauw, u heeft het maximum aantal beschrijvingen dat deze APT aan kan " "overschreden." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Wauw, u heeft meer afhankelijkheden dan deze APT aan kan." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Fout tijdens verwerken van %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Fout tijdens verwerken van %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Pakket %s %s werd niet gevonden bij het verwerken van de " "bestandsafhankelijkheden" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Kon de status van de bronpakketlijst %s niet opvragen" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Voorziene bestanden worden verzameld" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "Invoer/Uitvoer-fout tijdens wegschrijven bronpakket-cache" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "herbenoeming is mislukt, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5-som komt niet overeen" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Hash-som komt niet overeen" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "" "Er zijn geen publieke sleutels beschikbaar voor de volgende sleutel-IDs:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2777,7 +2786,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:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2786,7 +2795,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:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2794,19 +2803,17 @@ msgstr "" "De pakketindex-bestanden zijn beschadigd. Er is geen 'Filename:'-veld voor " "pakket %s." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Grootte komt niet overeen" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Kon pakketbestand %s niet ontleden (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Let op, %s wordt geselecteerd in plaats van %s\n" @@ -2820,7 +2827,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Verkopersblok %s bevat geen vingerafdruk" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2829,42 +2836,42 @@ msgstr "" "Er wordt gebruik gemaakt van CD-aankoppelpunt %s\n" "CD wordt aangekoppeld\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Identificatie..." -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Opgeslagen label: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "CD wordt afgekoppeld...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Er wordt gebruik gemaakt van CD-aankoppelpunt %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "CD wordt losgekoppeld\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Er wordt gewacht op de schijf...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "CD wordt aangekoppeld...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Er wordt gescant voor indexbestanden...\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2873,22 +2880,22 @@ msgstr "" "Er zijn %zu pakket-indexen, %zu bron-indexen, %zu vertalingsindexen, en %zu " "handtekeningen gevonden\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Label '%s' gevonden\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Dat is een ongeldige naam, gelieve opnieuw te proberen.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2897,34 +2904,34 @@ msgstr "" "De schijf heet:\n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Pakketlijsten worden gekopieerd..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Nieuwe bronlijst wordt weggeschreven\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Bronlijst-ingangen voor de schijf zijn:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "%i records weggeschreven.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "%i records weggeschreven met %i missende bestanden.\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -3015,7 +3022,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Kon de lijst-map niet vergrendelen" diff --git a/po/nn.po b/po/nn.po index 9c8fe2f11..14bc2a87b 100644 --- a/po/nn.po +++ b/po/nn.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_nn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -24,7 +24,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Pakken %s versjon %s har eit krav som ikkje er oppfylt:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -96,7 +96,7 @@ msgstr "Slingringsmon: " msgid "Total space accounted for: " msgstr "Brukt plass i alt: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Pakkefila %s er ute av takt." @@ -154,14 +154,14 @@ msgstr " Versjonstabell:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -236,11 +236,11 @@ msgstr "" " -o=? Set ei vilkrleg innstilling, t.d. -o dir::cache=/tmp.\n" "Du finn meir informasjon p manualsidene apt-cache(8) og apt.conf(5).\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 #, fuzzy msgid "Please insert a Disc in the drive and press enter" msgstr "" @@ -248,7 +248,7 @@ msgstr "" " %s\n" "i stasjonen %s og trykk Enter.\n" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "" @@ -313,7 +313,7 @@ msgstr "" " -c=? Les denne innstillingsfila.\n" " -o=? Set ei vilkrleg innstilling, t.d. -o dir::cache=/tmp.\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Klarte ikkje skriva til %s" @@ -654,7 +654,7 @@ msgstr "Klarte ikkje endra namnet p msgid "Y" msgstr "J" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Regex-kompileringsfeil - %s" @@ -756,120 +756,120 @@ msgstr "%lu skal fjernast og %lu skal ikkje oppgraderast.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu ikkje fullstendig installerte eller fjerna.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Rettar p krav ..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " mislukkast." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Klarte ikkje retta p krav" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Klarte ikkje minimera oppgraderingsmengda" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Ferdig" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "Du vil kanskje prva retta p desse ved kyra apt-get -f install." -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Nokre krav er ikkje oppfylte. Prv med -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "TVARING: Klarer ikkje autentisere desse pakkane." -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Installer desse pakkane utan verifikasjon [j/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Nokre pakkar kunne ikkje bli autentisert" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "Nokre pakkar m fjernast, men fjerning er sltt av." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 #, fuzzy msgid "Internal error, Ordering didn't finish" msgstr "Intern feil ved tilleggjing av avleiing" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Klarte ikkje lsa nedlastingskatalogen" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Kjeldelista kan ikkje lesast." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "M henta %sB/%sB med arkiv.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "M henta %sB med arkiv.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, fuzzy, c-format msgid "Couldn't determine free space in %s" msgstr "Du har ikkje nok ledig plass i %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, 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:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Ja, gjer som eg seier!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, fuzzy, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -880,28 +880,28 @@ msgstr "" "For halda fram, m du skriva nyaktig %s.\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Avbryt." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Vil du halda fram [J/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Klarte ikkje henta %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Klarte ikkje henta nokre av filene" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Nedlastinga er ferdig i nedlastingsmodus" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -909,49 +909,49 @@ msgstr "" "Klarte ikkje henta nokre av arkiva. Du kan prva med apt-get update eller --" "fix-missing." -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing og byte av medium er ikkje sttta for tida" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Klarte ikkje retta opp manglande pakkar." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Avbryt installasjon." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Merk, vel %s i staden for %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "Hoppar over %s, for den er installert fr fr og ikkje sett til " "oppgradering.\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Installert]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Du m velja ein som skal installerast." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -962,69 +962,74 @@ msgstr "" "av ein annan pakke. Dette tyder at pakket manglar, er gjort overfldig\n" "eller er berre tilgjengeleg fr ei anna kjelde\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Dei flgjande pakkane kan brukast i staden:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Det finst ingen installasjonskandidat for pakken %s" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "Den nyaste versjonen av %s er installert fr fr.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Fann ikkje utgva %s av %s" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Fann ikkje versjonen %s av %s" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Vald versjon %s (%s) for %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Oppdateringskommandoen tek ingen argument" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Klarte ikkje lsa listekatalogen" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Dei flgjande NYE pakkane vil verta installerte:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "Dei flgjande NYE pakkane vil verta installerte:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1040,44 +1045,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "Flgjande informasjon kan hjelpa med lysa situasjonen:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Intern feil. AllUpgrade ydelagde noko" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Intern feil. AllUpgrade ydelagde noko" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, fuzzy, c-format msgid "Couldn't find task %s" msgstr "Fann ikkje pakken %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Fann ikkje pakken %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Merk, vel %s i staden for regex %s\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "men %s skal installerast" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "Du vil kanskje prva retta p desse ved kyra apt-get -f install." -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1085,7 +1090,7 @@ msgstr "" "Nokre krav er ikkje oppfylte. Du kan prva apt-get -f install (eller velja " "ei lysing)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1097,123 +1102,123 @@ 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:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "ydelagde pakkar" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Dei flgjande tilleggspakkane vil verta installerte:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Fresltte pakkar:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Tilrdde pakkar" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Reknar ut oppgradering ... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Mislukkast" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Ferdig" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 #, fuzzy msgid "Internal error, problem resolver broke stuff" msgstr "Intern feil. AllUpgrade ydelagde noko" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "Finn ingen kjeldepakke for %s" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, fuzzy, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Hoppar over utpakking av kjeldekode som er utpakka fr fr i %s\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, 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:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "M henta %sB/%sB med kjeldekodearkiv.\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "M henta %sB med kjeldekodearkiv.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Hent kjeldekode %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Klarte ikkje henta nokre av arkiva." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Hoppar over utpakking av kjeldekode som er utpakka fr fr i %s\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Utpakkingskommandoen %s mislukkast.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Byggjekommandoen %s mislukkast.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Barneprosessen mislukkast" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 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:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Klarte ikkje henta byggjekrav for %s" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s har ingen byggjekrav.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, 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:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1222,31 +1227,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:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Klarte ikkje oppfylla kravet %s for %s: %s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Byggjekrav for %s kunne ikkje tilfredstillast." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Klarte ikkje behandla byggjekrava" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Sttta modular:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1330,7 +1335,7 @@ msgstr "" "til apt-get(8), sources.list(5) og apt.conf(5).\n" " APT har superku-krefter.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1566,9 +1571,13 @@ msgstr "Skriv over pakketreff utan versjon for %s" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Klarte ikkje lesa %s" @@ -1599,9 +1608,9 @@ msgstr "" "Infokatalogen og den mellombelse katalogen m vera p det same filsystemet" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Les pakkelister" @@ -1705,12 +1714,12 @@ msgstr "Fann ikkje noka gyldig kontrollfil" msgid "Unparsable control file" msgstr "Kontrollfila kan ikkje tolkast" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Klarte ikkje lesa CD-ROM-databasen %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1718,22 +1727,22 @@ msgstr "" "Bruk apt-cdrom for gjera denne CD-plata tilgjengeleg for APT. Du kan " "ikkje bruka apt-get update til leggja til nye CD-plater." -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Feil CD-plate" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "" "Klarte ikkje montera CD-plata i %s. Det kan henda plata framleis er i bruk." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 #, fuzzy msgid "Disk not found." msgstr "Fann ikkje fila" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Fann ikkje fila" @@ -1751,34 +1760,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "Ugyldig URI. Lokale URI-ar kan ikkje starta med //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Loggar inn" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Klarte ikkje avgjera namnet p motparten" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Klarte ikkje avgjera det lokale namnet" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Tenaren nekta oss kopla til, og sa: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER mislukkast, tenaren sa: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS mislukkast, tenaren sa: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1786,114 +1795,114 @@ msgstr "" "Ein mellomtenar er oppgitt, men ikkje noko innloggingsskript. Feltet " "Acquire::ftp::ProxyLogin er tomt." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Kommandoen %s i innlogginsskriptet mislukkast, tenaren sa: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE mislukkast, tenaren sa: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Tidsavbrot p samband" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Tenaren lukka sambandet" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Lesefeil" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Eit svar flaumde over bufferen." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Protokollydeleggjing" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Skrivefeil" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Klarte ikkje oppretta sokkel" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Klarte ikkje kopla til datasokkel, tidsavbrot p sambandet" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Klarte ikkje kopla til passiv sokkel." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo klarte ikkje oppretta ein lyttesokkel" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Klarte ikkje binda til sokkel" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Klarte ikkje lytta til sokkel" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Klarte ikkje avgjera sokkelnamnet" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Klarte ikkje senda PORT-kommandoen" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Ukjend adressefamilie %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT mislukkast, tenaren sa: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Tidsavbrot p tilkopling til datasokkel" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Klarte ikkje godta tilkoplinga" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Problem ved oppretting av nkkel for fil" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Klarte ikkje henta fila, tenaren sa %s" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Tidsavbrot p datasokkelen" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Dataoverfringa mislukkast, tenaren sa %s" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Sprjing" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Klarte ikkje starta " @@ -2002,94 +2011,94 @@ msgstr "Klarte ikkje opna r msgid "Read error from %s process" msgstr "Lesefeil fr %s-prosessen" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Ventar p hovud" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Fekk ei enkel hovudlinje over %u teikn" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "ydelagd hovudlinje" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP-tenaren sende eit ugyldig svarhovud" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP-tenaren sende eit ugyldig Content-Length-hovud" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP-tenaren sende eit ugyldig Content-Range-hovud" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Denne HTTP-tenaren har ydelagd sttte for omrde" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Ukjend datoformat" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Utvalet mislukkast" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Tidsavbrot p sambandet" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Feil ved skriving til utfil" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Feil ved skriving til fil" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Feil ved skriving til fila" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "Feil ved lesing fr tenaren. Sambandet vart lukka i andre enden" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Feil ved lesing fr tenaren" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 #, fuzzy msgid "Failed to truncate file" msgstr "Klarte ikkje skriva fila %s" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "ydelagde hovuddata" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Sambandet mislukkast" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Intern feil" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Kan ikkje utfra mmap p ei tom fil" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Klarte ikkje laga mmap av %lu byte" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2236,13 +2245,13 @@ 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:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Klarte ikkje byta til %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Klarte ikkje f status til CD-ROM" @@ -2271,51 +2280,50 @@ msgstr "Klarte ikkje l msgid "Waited for %s but it wasn't there" msgstr "Venta p %s, men den fanst ikkje" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Underprosessen %s mottok ein segmenteringsfeil." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Underprosessen %s mottok ein segmenteringsfeil." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Underprosessen %s returnerte ein feilkode (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Underprosessen %s avslutta uventa" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Klarte ikkje opna fila %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Problem ved lsing av fila" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Problem ved oppheving av lenkje til fila" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Problem ved synkronisering av fila" @@ -2408,17 +2416,17 @@ msgstr "Kandidatversjonar" msgid "Dependency generation" msgstr "Genererer kravforhold" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 #, fuzzy msgid "Reading state information" msgstr "Flettar informasjon om tilgjengelege pakkar" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "Klarte ikkje opna %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "Klarte ikkje skriva fila %s" @@ -2458,32 +2466,32 @@ msgstr "Misforma linje %lu i kjeldelista %s (absolutt dist)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Misforma linje %lu i kjeldelista %s (dist-tolking)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Opnar %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Linja %u i kjeldelista %s er for lang." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Misforma linje %u i kjeldelista %s (type)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, fuzzy, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typen %s er ukjend i linja %u i kjeldelista %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Misforma linje %u i kjeldelista %s (utgjevar-ID)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2506,7 +2514,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:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2514,12 +2522,12 @@ msgstr "" "Feil, pkgProblemResolver::Resolve har laga brot. Dette kan skuldast pakkar " "som er haldne tilbake." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 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:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2539,12 +2547,12 @@ msgstr "Arkivkatalogen %spartial manglar." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, fuzzy, c-format msgid "Retrieving file %li of %li" msgstr "Les filliste" @@ -2567,16 +2575,16 @@ msgstr "" " %s\n" "i stasjonen %s og trykk Enter.\n" -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Pakkesystemet %s er ikkje sttta" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Klarte ikkje avgjera ein eigna pakkesystemtype" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Klarte ikkje f status p %s." @@ -2594,134 +2602,133 @@ msgid "You may want to run apt-get update to correct these problems" msgstr "" "Du vil kanskje prva retta p desse problema ved kyra apt-get update." -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "Ugyldig oppslag i innstillingsfila, manglar pakkehovud" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Skjnar ikkje spikringstypen %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Ingen prioritet (eller null) oppgitt for spiker" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Mellomlageret brukar eit inkompatibelt versjonssystem" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Feil ved behandling av %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Feil ved behandling av %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Feil ved behandling av %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Feil ved behandling av %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Feil ved behandling av %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Feil ved behandling av %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Feil ved behandling av %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Feil ved behandling av %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Feil ved behandling av %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "Jss, du har overgtt talet p pakkenamn som APT kan handtera." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Jss, du har overgtt talet p versjonar som APT kan handtera." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 #, fuzzy msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "Jss, du har overgtt talet p versjonar som APT kan handtera." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Jss, du har overgtt talet p krav som APT kan handtera." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Feil ved behandling av %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Feil ved behandling av %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Fann ikkje pakken %s %s ved behandling av filkrav" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Klarte ikkje f status p kjeldepakkelista %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Samlar inn filtilbod" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "IU-feil ved lagring av kjeldelager" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "endring av namn mislukkast, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "Feil MD5-sum" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 #, fuzzy msgid "Hash Sum mismatch" msgstr "Feil MD5-sum" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2730,7 +2737,7 @@ msgstr "" "Fann ikkje fila for pakken %s. Det kan henda du m fiksa denne pakken sjlv " "(fordi arkitekturen manglar)." -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2738,26 +2745,24 @@ msgid "" msgstr "" "Fann ikkje fila for pakken %s. Det kan henda du m fiksa denne pakken sjlv." -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, 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:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Feil storleik" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Klarte ikkje tolka pakkefila %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Merk, vel %s i staden for %s\n" @@ -2771,7 +2776,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Utgjevarblokka %s inneheld ingen fingeravtrykk" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2780,65 +2785,65 @@ msgstr "" "Brukar monteringspunktet %s for CD-ROM\n" "Monterer CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Identifiserer ... " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Lagra etikett: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 #, fuzzy msgid "Unmounting CD-ROM...\n" msgstr "Avmonterer CD-ROM ..." -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Brukar monteringspunktet %s for CD-ROM\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Avmonterer CD-ROM\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Ventar p disk ...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Monterer CD-ROM ...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Leitar etter indeksfiler p disken ...\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, fuzzy, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" "zu signatures\n" msgstr "Fann %i pakkeindeksar, %i kjeldeindeksar og %i signaturar\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, fuzzy, c-format msgid "Found label '%s'\n" msgstr "Lagra etikett: %s \n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Det er ikkje eit gyldig namn, prv igjen.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2847,34 +2852,34 @@ msgstr "" "Disken vert kalla: \n" "%s\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Kopierer pakkelister ..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Skriv ny kjeldeliste\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Kjeldelisteoppfringar for denne disken er:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Skreiv %i postar.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Skreiv %i postar med %i manglande filer.\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, 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" @@ -2961,7 +2966,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Klarte ikkje lsa listekatalogen" diff --git a/po/pl.po b/po/pl.po index 1942c9db0..3f2d91676 100644 --- a/po/pl.po +++ b/po/pl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+0200\n" "PO-Revision-Date: 2008-11-13 17:10+0100\n" "Last-Translator: Wiktor Wandachowicz <siryes@gmail.com>\n" "Language-Team: Polish <debian-l10n-polish@lists.debian.org>\n" @@ -24,7 +24,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Pakiet %s w wersji %s ma niespełnione zależności:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -94,7 +94,7 @@ msgstr "Sumaryczny rozmiar niewykorzystanego miejsca: " msgid "Total space accounted for: " msgstr "Całkowity rozmiar: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Plik pakietu %s jest przestarzały." @@ -154,14 +154,14 @@ msgstr " Tabela wersji:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -237,15 +237,15 @@ msgstr "" "Więcej informacji można znaleźć na stronach podręcznika apt-cache(8)\n" "oraz apt.conf(5).\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "Proszę wprowadzić nazwę dla tej płyty, np. \"Debian 2.1r1 Disk 1\"" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Proszę włożyć dysk do napędu i nacisnąć enter" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Należy powtórzyć ten proces dla reszty płyt." @@ -310,7 +310,7 @@ msgstr "" " -c=? Czyta wskazany plik konfiguracyjny.\n" " -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Nie udało się pisać do %s" @@ -656,7 +656,7 @@ msgstr "Nie udało się zmienić nazwy %s na %s" msgid "Y" msgstr "T" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Błąd kompilacji wyrażenia regularnego - %s" @@ -757,120 +757,120 @@ msgstr "%lu usuwanych i %lu nieaktualizowanych.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu nie w pełni zainstalowanych lub usuniętych.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Naprawianie zależności..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " nie udało się." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Nie udało się naprawić zależności" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Nie udało się zminimalizować zbioru aktualizacji" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Gotowe" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Niespełnione zależności. Proszę spróbować użyć -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "UWAGA: Następujące pakiety nie mogą zostać zweryfikowane!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Ostrzeżenie uwierzytelniania zignorowano.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Zainstalować te pakiety bez weryfikacji [t/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Niektóre pakiety nie mogły zostać zweryfikowane" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Błąd wewnętrzny, InstallPackages użyto z uszkodzonymi pakietami!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 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:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Błąd wewnętrzny, sortowanie niezakończone" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Nie udało się zablokować katalogu pobierania" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Nie udało się odczytać list źródeł." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 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:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Konieczne pobranie %sB/%sB archiwów.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Konieczne pobranie %sB archiwów.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, 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:874 +#: cmdline/apt-get.cc:876 #, 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:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Tak, rób jak mówię!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -881,28 +881,28 @@ msgstr "" "Aby kontynuować wpisz zdanie \"%s\"\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Przerwane." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Kontynuować [T/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Nie udało się pobrać %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Nie udało się pobrać niektórych plików" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Ukończono pobieranie w trybie samego pobierania" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -910,48 +910,48 @@ 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:1016 +#: cmdline/apt-get.cc:1018 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:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Nie udało się poprawić brakujących pakietów." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Przerywanie instalacji" -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Uwaga, wybieranie %s zamiast %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, 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:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Zainstalowany]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Należy jednoznacznie wybrać jeden z nich do instalacji." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -962,59 +962,59 @@ 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:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Jednak następujące pakiety go zastępują:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Pakiet %s nie ma kandydata do instalacji" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s jest już w najnowszej wersji.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Wydanie \"%s\" dla \"%s\" nie zostało znalezione" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Wersja \"%s\" dla \"%s\" nie została znaleziona" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Wybrano wersję %s (%s) dla %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Polecenie update nie wymaga żadnych argumentów" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Nie udało się zablokować katalogu list" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 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:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1022,11 +1022,18 @@ msgstr "" "Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej " "wymagane:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej " +"wymagane:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Aby je usunąć należy użyć \"apt-get autoremove\"." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1044,43 +1051,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 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:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Błąd wewnętrzny, AutoRemover wszystko popsuł" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Błąd wewnętrzny, AllUpgrade wszystko popsuło" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Nie udało się odnaleźć zadania %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Nie udało się odnaleźć pakietu %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Uwaga, wybieranie %s za wyrażenie \"%s\"\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s zaznaczony jako zainstalowany ręcznie.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1088,7 +1095,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:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1100,120 +1107,120 @@ msgstr "" "w której niektóre pakiety nie zostały jeszcze utworzone lub przeniesione\n" "z katalogu Incoming (\"Przychodzące\")." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Pakiety są uszkodzone" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Zostaną zainstalowane następujące dodatkowe pakiety:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Sugerowane pakiety:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Polecane pakiety:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Obliczanie aktualizacji..." -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Nie udało się" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Gotowe" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Błąd wewnętrzny, rozwiązywanie problemów wszystko popsuło" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, 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:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Pomijanie już pobranego pliku \"%s\"\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, 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:2192 +#: cmdline/apt-get.cc:2229 #, 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:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Konieczne pobranie %sB archiwów źródeł.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Pobierz źródło %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Nie udało się pobrać niektórych archiwów." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Polecenie rozpakowania \"%s\" zawiodło.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, 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:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Polecenie budowania \"%s\" zawiodło.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Proces potomny zawiódł" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 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 na czas budowania" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" "Nie udało się pobrać informacji o zależnościach na czas budowania dla %s" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s nie ma zależności czasu budowania.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1222,7 +1229,7 @@ msgstr "" "Zależność %s od %s nie może zostać spełniona, ponieważ nie znaleziono " "pakietu %s" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1231,32 +1238,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:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, 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:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Nie udało się spełnić zależności na czas budowania od %s." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Nie udało się przetworzyć zależności na czas budowania" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Obsługiwane moduły:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1342,7 +1349,7 @@ msgstr "" "apt-get(8), sources.list(5) i apt.conf(5).\n" " Ten APT ma moce Super Krowy.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1582,9 +1589,13 @@ msgstr "Dopasowanie dla %s nadpisującego pakietu bez wersji" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Nie można czytać %s" @@ -1614,9 +1625,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "Pliki info i katalog tymczasowy muszą być na tym samym systemie plików" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Czytanie list pakietów" @@ -1721,12 +1732,12 @@ msgstr "Nie udało się odnaleźć poprawnego pliku control" msgid "Unparsable control file" msgstr "Plik kontrolny nie może zostać poprawnie zinterpretowany" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Nie można odczytać bazy danych CD-ROM-ów %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1734,20 +1745,20 @@ msgstr "" "Proszę użyć programu apt-cdrom, aby APT mógł rozpoznać tę płytę CD. Nowych " "płyt nie można dodawać przy pomocy polecenia apt-get update" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Niewłaściwa płyta CD" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Nie udało się odmontować CD-ROM-u w %s, być może wciąż jest używany." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Nie odnaleziono dysku." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Nie odnaleziono pliku" @@ -1765,34 +1776,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "Nieprawidłowe URI, lokalne URI nie mogą zaczynać się od //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Logowanie się" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Nie można określić nazwy zdalnego systemu" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Nie udało się określić nazwy lokalnego systemu" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Serwer odrzucił połączenie, otrzymana odpowiedź: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "Polecenie USER nie powiodło się, odpowiedź serwera: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "Polecenie PASS nie powiodło się, odpowiedź serwera: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1800,116 +1811,116 @@ msgstr "" "Określono serwer pośredniczący, ale nie określono skryptu rejestrowania, " "Acquire::ftp::ProxyLogin jest puste." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "" "Polecenie skryptu rejestrowania \"%s\" nie powiodło się, odpowiedź serwera: %" "s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "Polecenie TYPE nie powiodło się, odpowiedź serwera: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Przekroczenie czasu połączenia" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Serwer zamknął połączenie" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Błąd odczytu" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Odpowiedź przepełniła bufor." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Naruszenie zasad protokołu" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Błąd zapisu" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Nie udało się utworzyć gniazda" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Nie udało się połączyć gniazda danych, przekroczenie czasu połączenia" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Nie udało się połączyć pasywnego gniazda." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo nie było w stanie uzyskać nasłuchującego gniazda" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Nie udało się przyłączyć gniazda" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Nie udało się nasłuchiwać na gnieździe" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Nie udało się określić nazwy gniazda" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Nie można wysłać polecenia PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Nieznana rodzina adresów %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "Polecenie EPRT nie powiodło się, odpowiedź serwera: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Przekroczony czas połączenia gniazda danych" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Nie udało się przyjąć połączenia" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Nie udało się obliczyć skrótu pliku" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Nie można pobrać pliku, odpowiedź serwera: %s" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Przekroczony czas oczekiwania na dane" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Nie udało się przesłać danych, odpowiedź serwera: %s" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Info" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Nie można wywołać " @@ -2023,93 +2034,93 @@ msgstr "Nie udało się otworzyć potoku dla %s" msgid "Read error from %s process" msgstr "Błąd odczytu z procesu %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Oczekiwanie na nagłówki" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Otrzymano pojedynczą linię nagłówka o długości ponad %u znaków" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Nieprawidłowa linia nagłówka" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek odpowiedzi" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek Content-Length" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Serwer HTTP przysłał nieprawidłowy nagłówek Content-Range" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Ten serwer HTTP nieprawidłowo obsługuje zakresy (ranges)" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Nieznany format daty" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Operacja select nie powiodła się" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Przekroczenie czasu połączenia" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Błąd przy pisaniu do pliku wyjściowego" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Błąd przy pisaniu do pliku" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Błąd przy pisaniu do pliku" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "Błąd czytania z serwera: Zdalna strona zamknęła połączenie" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Błąd czytania z serwera" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Nie udało się uciąć zawartości pliku %s" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Błędne dane nagłówka" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Połączenie nie udało się" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Błąd wewnętrzny" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Nie można wykonać mmap na pustym pliku" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Nie udało się wykonać mmap %lu bajtów" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2257,13 +2268,13 @@ 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:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Nie udało się przejść do %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Nie udało się wykonać operacji stat na CDROM-ie" @@ -2292,51 +2303,50 @@ msgstr "Nie udało się uzyskać blokady %s" msgid "Waited for %s but it wasn't there" msgstr "Oczekiwano na proces %s, ale nie było go" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Podproces %s spowodował naruszenie segmentacji." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Podproces %s spowodował naruszenie segmentacji." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, 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:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Podproces %s zakończył się niespodziewanie" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Nie udało się otworzyć pliku %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Problem przy zamykaniu pliku" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Problem przy usuwaniu pliku" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Problem przy zapisywaniu pliku na dysk" @@ -2429,16 +2439,16 @@ msgstr "Kandydujące wersje" msgid "Dependency generation" msgstr "Generowanie zależności" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Odczyt informacji o stanie" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Nie udało się otworzyć pliku stanu %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Nie udało się zapisać tymczasowego pliku stanu %s" @@ -2478,32 +2488,32 @@ msgstr "Nieprawidłowa linia %lu w liście źródeł %s (bezwzględna dystrybucj msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Nieprawidłowa linia %lu w liście źródeł %s (analiza dystrybucji)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Otwieranie %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Linia %u w liście źródeł %s jest zbyt długa." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Nieprawidłowa linia %u w liście źródeł %s (typ)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typ \"%s\" jest nieznany w linii %u listy źródeł %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Nieprawidłowa linia %u w liście źródeł %s (identyfikator producenta)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2527,7 +2537,7 @@ msgid "" msgstr "" "Pakiet %s ma zostać przeinstalowany, ale nie można znaleźć jego archiwum." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2535,11 +2545,11 @@ msgstr "" "Błąd, pkgProblemResolver::Resolve zwrócił błąd, może to być spowodowane " "zatrzymanymi pakietami." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 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:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2559,12 +2569,12 @@ msgstr "Brakuje katalogu archiwów %spartial." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Pobieranie pliku %li z %li (%s pozostało)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Pobieranie pliku %li z %li" @@ -2584,16 +2594,16 @@ 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:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "System pakietów \"%s\" nie jest obsługiwany" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Nie udało się określić odpowiedniego typu systemu pakietów" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Nie udało się wykonać operacji stat na pliku %s." @@ -2610,135 +2620,134 @@ 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:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "Nieprawidłowe informacje w pliku ustawień, brak nagłówka Package" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Nierozpoznany typ przypinania %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Brak (lub zerowy) priorytet przypięcia" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Magazyn podręczny ma niezgodny system wersji" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Wystąpił błąd podczas przetwarzania %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Wystąpił błąd podczas przetwarzania %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Wystąpił błąd podczas przetwarzania %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Wystąpił błąd podczas przetwarzania %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Wystąpił błąd podczas przetwarzania %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Wystąpił błąd podczas przetwarzania %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Wystąpił błąd podczas przetwarzania %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Wystąpił błąd podczas przetwarzania %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Wystąpił błąd podczas przetwarzania %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Och, przekroczono liczbę pakietów, którą ten APT jest w stanie obsłużyć." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Och, przekroczono liczbę wersji, którą ten APT jest w stanie obsłużyć." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "Och, przekroczono liczbę opisów, którą ten APT jest w stanie obsłużyć." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Och, przekroczono liczbę zależności, którą ten APT jest w stanie obsłużyć." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Wystąpił błąd podczas przetwarzania %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Wystąpił błąd podczas przetwarzania %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Pakiet %s %s nie został odnaleziony podczas przetwarzania zależności plików" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nie udało się wykonać operacji stat na liście pakietów źródłowych %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Zbieranie zapewnień plików" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "Błąd wejścia/wyjścia przy zapisywaniu podręcznego magazynu źródeł" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "nie udało się zmienić nazwy, %s (%s -> %s)" -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "Błędna suma MD5" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Błędna suma kontrolna" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "Dla następujących identyfikatorów kluczy brakuje klucza publicznego:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2747,7 +2756,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:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2756,26 +2765,24 @@ 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:1331 +#: apt-pkg/acquire-item.cc:1316 #, 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:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Błędny rozmiar" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Nie udało się zanalizować pliku pakietu %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Uwaga, wybieranie %s zamiast %s\n" @@ -2789,7 +2796,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Blok producenta %s nie zawiera odcisku" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2798,42 +2805,42 @@ msgstr "" "Użycie %s jako punktu montowania CD-ROMu\n" "Montowanie CD-ROMu\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Identyfikacja.. " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Etykieta: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "Odmontowanie CD-ROMu...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Użycie %s jako punktu montowania CD-ROMu\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Odmontowanie CD-ROMu\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Oczekiwanie na płytę...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Montowanie CD-ROMu...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Skanowanie płyty w poszukiwaniu plików indeksu..\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2842,22 +2849,22 @@ msgstr "" "Znaleziono %zu indeksów pakietów, %zu indeksów źródłowych, %zu indeksów " "tłumaczeń i %zu podpisów\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Znaleziono etykietę \"%s\"\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "To nie jest prawidłowa nazwa, spróbuj ponownie.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2866,34 +2873,34 @@ msgstr "" "Płyta nosi nazwę: \n" "\"%s\"\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Kopiowanie list pakietów..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Zapisywanie nowej listy źródeł\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Źródła dla tej płyty to:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Zapisano %i rekordów.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, 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:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, 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" @@ -2982,7 +2989,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Nie udało się zablokować katalogu list" diff --git a/po/pt.po b/po/pt.po index b0a2bff99..1add74f32 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+0200\n" "PO-Revision-Date: 2008-09-09 20:54+0100\n" "Last-Translator: Miguel Figueiredo <elmig@debianpt.org>\n" "Language-Team: Portuguese <traduz@debianpt.org>\n" @@ -21,7 +21,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "O pacote %s versão %s tem uma dependência não satisfeita:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -91,7 +91,7 @@ msgstr "Espaço total desperdiçado: " msgid "Total space accounted for: " msgstr "Espaço total contabilizado: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "O ficheiro do pacote %s está dessincronizado." @@ -150,14 +150,14 @@ msgstr " Tabela de Versão:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -232,16 +232,16 @@ msgstr "" "tmp\n" "Para mais informações veja as páginas do manual apt-cache(8) e apt.conf(5).\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "" "Por favor forneça um nome para este Disco, tal como 'Debian 2.1r1 Disco 1'" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Por favor insira um Disco no leitor e pressione enter" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Repita este processo para o resto dos CDs no seu conjunto." @@ -308,7 +308,7 @@ msgstr "" " -o=? Definir uma opção arbitrária de configuração, p.e.: -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Não conseguiu escrever para %s" @@ -652,7 +652,7 @@ msgstr "Falhou renomear %s para %s" msgid "Y" msgstr "S" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Erro de compilação de regex - %s" @@ -753,120 +753,120 @@ msgstr "%lu a remover e %lu não actualizados.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu pacotes não totalmente instalados ou removidos.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "A corrigir dependências..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " falhou." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Não foi possível corrigir dependências" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Não foi possível minimizar o conjunto de actualizações" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Feito" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Dependências não satisfeitas. Tente utilizar -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVISO: Os seguintes pacotes não podem ser autenticados!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Aviso de autenticação ultrapassado.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Instalar estes pacotes sem verificação [y/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Alguns pacotes não puderam ser autenticados" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Erro Interno, InstallPackages foi chamado com pacotes estragados!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "Pacotes precisam de ser removidos mas Remove está desabilitado." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Erro Interno, Ordering não terminou" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Impossível criar acesso exclusivo ao directório de downloads" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "A lista de fontes não pôde ser lida." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 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:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "É necessário obter %sB/%sB de arquivos.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "É necessário obter %sB de arquivos.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, 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:874 +#: cmdline/apt-get.cc:876 #, 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:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Sim, faça como eu digo!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -877,28 +877,28 @@ msgstr "" "Para continuar escreva a frase '%s'\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Abortado." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Deseja continuar [Y/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Falhou obter %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Falhou o download de alguns ficheiros" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Download completo e em modo de fazer apenas o download" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -906,47 +906,47 @@ msgstr "" "Não foi possível obter alguns arquivos, tente talvez correr apt-get update " "ou tente com --fix-missing?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 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:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Não foi possível corrigir os pacotes em falta." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "A abortar a instalação." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Note, a seleccionar %s em vez de %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, 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:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Instalado]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Você deve seleccionar explicitamente um para instalar." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -957,60 +957,60 @@ 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:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "No entanto, os seguintes pacotes substituem-no:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "O pacote %s não tem candidato para instalação" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s já está na versão mais recente.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Não foi encontrado o Release '%s' para '%s'" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Não foi encontrada a versão '%s' para '%s'" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Versão seleccionada %s (%s) para %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "O comando update não leva argumentos" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Impossível criar acesso exclusivo ao directório de listas" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 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:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1018,11 +1018,18 @@ msgstr "" "Os seguintes pacotes foram instalados automaticamente e já não são " "necessários:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"Os seguintes pacotes foram instalados automaticamente e já não são " +"necessários:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Utilize 'apt-get autoremove' para os remover." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1040,43 +1047,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 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:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Erro Interno, o AutoRemover estragou coisas" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Erro Interno, AllUpgrade estragou algo" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Não foi possível encontrar a tarefa %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Impossível encontrar o pacote %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, 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:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s está definido para ser instalado manualmente.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1084,7 +1091,7 @@ msgstr "" "Dependências não satisfeitas. Tente `apt-get -f install' sem nenhum pacote " "(ou especifique uma solução)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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,119 +1103,119 @@ msgstr "" "distribuição unstable em que alguns pacotes pedidos ainda não foram \n" "criados ou foram movidos do Incoming." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Pacotes estragados" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Os seguintes pacotes extra serão instalados:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Pacotes sugeridos:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Pacotes recomendados:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "A calcular a actualização... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Falhou" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Pronto" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Erro Interno, o solucionador de problemas estragou coisas" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, 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:2158 +#: cmdline/apt-get.cc:2192 #, 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:2186 +#: cmdline/apt-get.cc:2223 #, 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:2192 +#: cmdline/apt-get.cc:2229 #, 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:2195 +#: cmdline/apt-get.cc:2232 #, 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:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Obter código fonte %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Falhou obter alguns arquivos." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "O comando de descompactação '%s' falhou.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, 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:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "O comando de compilação '%s' falhou.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "O processo filho falhou" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 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:2353 +#: cmdline/apt-get.cc:2390 #, 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:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s não tem dependências de compilação.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1217,7 +1224,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:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1226,32 +1233,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:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, 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:2555 +#: cmdline/apt-get.cc:2594 #, 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:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Falhou processar as dependências de compilação" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Módulos Suportados:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1338,7 +1345,7 @@ msgstr "" "sources.list(5) e apt.conf(5)\n" " Este APT tem Poderes de Super Vaca.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1580,9 +1587,13 @@ msgstr "Substituir o pacote correspondente sem versão para %s" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Não foi possível ler %s" @@ -1613,9 +1624,9 @@ msgstr "" "Os directórios info e temp precisam estar no mesmo sistema de ficheiros" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "A ler as listas de pacotes" @@ -1718,12 +1729,12 @@ msgstr "Falha em localizar um ficheiro de controle válido" msgid "Unparsable control file" msgstr "Ficheiro de controle não interpretável" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Não foi capaz de ler a base de dados de cdrom %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1731,20 +1742,20 @@ msgstr "" "Por favor utilize o apt-cdrom para fazer com que este CD seja reconhecido " "pelo APT. apt-get update não pode ser utilizado para adicionar novos CDs" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "CD errado" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Impossível desmontar o CD-ROM em %s, pode ainda estar a ser utilizado." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Disco não encontrado." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Ficheiro não encontrado" @@ -1762,34 +1773,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "URI inválido, URIs locais não devem começar por //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "A identificar-se no sistema" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Não foi possível determinar o nome do posto" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Não foi possível determinar o nome local" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "O servidor recusou a ligação e respondeu: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER falhou, o servidor respondeu: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS falhou, o servidor respondeu: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1797,114 +1808,114 @@ msgstr "" "Foi especificado um servidor de proxy mas não um script de login, Acquire::" "ftp::ProxyLogin está vazio." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "O comando de script de login '%s' falhou, o servidor respondeu: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE falhou, o servidor respondeu: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Foi atingido o tempo limite de ligação" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "O servidor fechou a ligação" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Erro de leitura" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Uma resposta sobrecarregou o buffer" -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Corrupção de protocolo" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Erro de escrita" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Não foi possível criar um socket" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Não foi possível ligar socket de dados, a ligação expirou" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Não foi possível ligar socket passivo." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo não foi capaz de obter um socket de escuta" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Não foi possível fazer o bind a um socket" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Não foi possível executar listen no socket" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Não foi possível determinar o nome do socket" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Não foi possível enviar o comando PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Família de endereços %u desconhecida (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT falhou, o servidor respondeu: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Ligação de socket de dados expirou" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Impossível aceitar ligação" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Problema ao calcular o hash do ficheiro" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Não foi possível obter o ficheiro, o servidor respondeu '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Expirou o tempo do socket de dados" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "A transferência de dados falhou, o servidor respondeu '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Pesquisa" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Não foi possível invocar " @@ -2019,93 +2030,93 @@ msgstr "Não foi possível abrir pipe para %s" msgid "Read error from %s process" msgstr "Erro de leitura do processo %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "A aguardar por cabeçalhos" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Recebi uma única linha de cabeçalho acima de %u caracteres" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Linha de cabeçalho errada" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "O servidor HTTP enviou um cabeçalho de resposta inválido" -#: methods/http.cc:588 +#: methods/http.cc:593 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:603 +#: methods/http.cc:608 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:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Este servidor HTTP possui suporte de range errado" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Formato de data desconhecido" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "A selecção falhou" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "O tempo da ligação expirou" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Erro ao escrever para o ficheiro de saída" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Erro ao escrever para ficheiro" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Erro ao escrever para o ficheiro" -#: methods/http.cc:883 +#: methods/http.cc:888 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:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Erro ao ler do servidor" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Falhou truncar o ficheiro" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Dados de cabeçalho errados" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "A ligação falhou" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Erro interno" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Não é possível fazer mmap a um ficheiro vazio" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Não foi possível fazer mmap de %lu bytes" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2253,13 +2264,13 @@ 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:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Impossível mudar para %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Impossível executar stat ao cdrom" @@ -2291,51 +2302,50 @@ msgstr "Não foi possível obter acesso exclusivo a %s" msgid "Waited for %s but it wasn't there" msgstr "Esperou por %s mas não estava lá" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, 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:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "O sub-processo %s recebeu uma falha de segmentação." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, 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:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "O sub-processo %s terminou inesperadamente" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Não foi possível abrir ficheiro o %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Problema ao fechar o ficheiro" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Problema ao remover o link ao ficheiro" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Problema sincronizando o ficheiro" @@ -2428,16 +2438,16 @@ msgstr "Versões candidatas" msgid "Dependency generation" msgstr "Geração de dependências" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "A ler a informação de estado" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Falhou abrir o StateFile %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Falha escrever ficheiro temporário StateFile %s" @@ -2477,32 +2487,32 @@ msgstr "Linha malformada %lu na lista de fontes %s (distribuição absoluta)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Linha malformada %lu na lista de fontes %s (dist parse)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "A abrir %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Linha %u é demasiado longa na lista de fontes %s." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Linha malformada %u na lista de fontes %s (tipo)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "O tipo '%s' não é conhecido na linha %u na lista de fontes %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Linha malformada %u na lista de fontes %s (id de fornecedor)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2527,7 +2537,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:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2535,13 +2545,13 @@ msgstr "" "Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por " "pacotes mantidos (hold)." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 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:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2561,12 +2571,12 @@ msgstr "Falta o directório de repositório %spartial." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "A obter o ficheiro %li de %li (%s restantes)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "A obter o ficheiro %li de %li" @@ -2587,17 +2597,17 @@ 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:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Sistema de empacotamento '%s' não é suportado" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "" "Não foi possível determinar um tipo de sistema de empacotamento adequado" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Não foi possível fazer stat %s." @@ -2616,140 +2626,139 @@ 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:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "Registro inválido no ficheiro de preferências, sem cabeçalho Package" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, 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:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Nenhuma prioridade (ou zero) especificada para marcação (pin)" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "A cache possui um sistema de versões incompatível" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Ocorreu um erro ao processar %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Ocorreu um erro ao processar %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Ocorreu um erro ao processar %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Ocorreu um erro ao processar %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Ocorreu um erro ao processar %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Ocorreu um erro ao processar %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Ocorreu um erro ao processar %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Ocorreu um erro ao processar %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Ocorreu um erro ao processar %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Uau, você excedeu o número de nomes de pacotes que este APT é capaz de " "suportar." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" "Uau, você excedeu o número de versões que este APT é capaz de suportar." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" "Uau, você excedeu o número de descrições que este APT é capaz de suportar." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Uau, você excedeu o número de dependências que este APT é capaz de suportar." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Ocorreu um erro ao processar %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Ocorreu um erro ao processar %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "O pacote %s %s não foi encontrado ao processar as dependências de ficheiros" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Não foi possível executar stat à lista de pacotes de código fonte %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "A obter File Provides" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "Erro de I/O ao gravar a cache de código fonte" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "falhou renomear, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5Sum não coincide" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Código de verificação hash não coincide" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "" "Não existe qualquer chave pública disponível para as seguintes IDs de " "chave:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2759,7 +2768,7 @@ msgstr "" "significar que você precisa corrigir manualmente este pacote. (devido a " "arquitectura em falta)" -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2768,7 +2777,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:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2776,19 +2785,17 @@ msgstr "" "Os arquivos de índice de pacotes estão corrompidos. Nenhum campo Filename: " "para o pacote %s." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Tamanho incorrecto" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Não foi possível fazer parse ao ficheiro do pacote %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Note, a seleccionar %s em vez de %s\n" @@ -2802,7 +2809,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "O bloco de fabricante %s não contém a impressão digital" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2811,42 +2818,42 @@ msgstr "" "Utilizando o ponto de montagem do CD-ROM %s\n" "A montar o CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "A identificar.. " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Label Guardada: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "A desmontar o CD-ROM...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "A utilizar o ponto de montagem do CD-ROM %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "A desmontar o CD-ROM\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "A aguardar pelo disco...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "A montar o CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "A pesquisar os ficheiros de índice do disco..\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2855,22 +2862,22 @@ msgstr "" "Foram encontrados %zu índices de pacotes, %zu índices de código-fonte, %zu " "índices de tradução e %zu assinaturas\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Encontrada a etiqueta '%s'\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Isso não é um nome válido, tente novamente.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2879,34 +2886,34 @@ msgstr "" "Este disco tem o nome: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "A copiar listas de pacotes..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "A escrever lista de novas source\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 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:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Escreveu %i registos.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, 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:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -2997,7 +3004,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Impossível criar acesso exclusivo ao directório de listas" diff --git a/po/pt_BR.po b/po/pt_BR.po index de34c9d81..618af0b59 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: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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." @@ -22,7 +22,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "O pacote %s versão %s tem uma dependência desencontrada:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -92,7 +92,7 @@ msgstr "Total de espaço frouxo: " msgid "Total space accounted for: " msgstr "Total de espaço contabilizado para: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "O arquivo de pacote %s está fora de sincronia." @@ -152,14 +152,14 @@ msgstr " Tabela de versão:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -235,16 +235,16 @@ msgstr "" "tmp\n" "Veja as páginas de manual apt-cache(8) e apt.conf(5) para mais informações.\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "" "Por favor, forneça um nome para este Disco, algo como 'Debian 2.1r1 Disco 1'" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Por favor, insira um Disco na unidade e pressione enter" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Repita este processo para o restante dos CDs em seu conjunto." @@ -312,7 +312,7 @@ msgstr "" " -o=? Define uma opção de configuração arbitrária, e.g.: -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Impossível escrever para %s" @@ -657,7 +657,7 @@ msgstr "Falhou ao renomear %s para %s" msgid "Y" msgstr "S" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Erro de compilação de regex - %s" @@ -759,121 +759,121 @@ msgstr "%lu a serem removidos e %lu não atualizados.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu pacotes não totalmente instalados ou removidos.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Corrigindo dependências..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " falhou." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Impossível corrigir dependências" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Impossível minimizar o conjunto de atualizações" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Pronto" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Dependências desencontradas. Tente usar -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVISO: Os pacotes a seguir não podem ser autenticados!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Aviso de autenticação sobreposto.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Instalar estes pacotes sem verificação [s/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Alguns pacotes não puderam ser autenticados" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Erro interno, InstallPackages foi chamado com pacotes quebrados!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 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:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Erro interno, Ordenação não finalizou" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Impossível criar trava no diretório de download" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "A lista de fontes não pode ser lida." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 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:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "É preciso baixar %sB/%sB de arquivos.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "É preciso baixar %sB de arquivos.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, 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:874 +#: cmdline/apt-get.cc:876 #, 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:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Sim, faça o que eu digo!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -884,28 +884,28 @@ msgstr "" "Para continuar digite a frase '%s'\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Abortar." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Você quer continuar [S/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Falhou ao buscar %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Alguns arquivos falharam ao baixar" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Baixar completo e no modo somente baixar (\"download only\")" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -913,47 +913,47 @@ msgstr "" "Impossível buscar alguns arquivos, talvez executar apt-get update ou tentar " "com --fix-missing?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 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:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Impossível corrigir pacotes faltantes." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Abortando instalação." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Nota, selecionando %s ao invés de %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, 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:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Instalado]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Você deveria selecionar explicitamente um para instalar." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -964,58 +964,58 @@ 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:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "No entanto, os pacotes a seguir o substituem:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "O pacote %s não tem candidato para instalação" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s já é a versão mais nova.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Release '%s' para '%s' não foi encontrada" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Versão '%s' para '%s' não foi encontrada" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Versão selecionada %s (%s) para %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "O comando update não leva argumentos" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Impossível criar trava no diretório de listas" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 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:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1023,11 +1023,18 @@ msgstr "" "Os seguintes pacotes foram automaticamente instalados e não são mais " "requeridos:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"Os seguintes pacotes foram automaticamente instalados e não são mais " +"requeridos:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Use 'apt-get autoremove' para removê-los." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1045,43 +1052,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 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:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Erro Interno, o AutoRemover quebrou coisas" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Erro interno, AllUpgrade quebrou coisas" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Impossível achar tarefa %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Impossível achar pacote %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Nota, selecionando %s para expressão regular '%s'\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s configurado para instalar manualmente.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1089,7 +1096,7 @@ msgstr "" "Dependências desencontradas. Tente 'apt-get -f install' sem nenhum pacote " "(ou especifique uma solução)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1101,117 +1108,117 @@ msgstr "" "distribuição instável, que alguns pacotes requeridos não foram\n" "criados ainda ou foram retirados da \"Incoming\"." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Pacotes quebrados" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Os pacotes extra a seguir serão instalados:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Pacotes sugeridos:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Pacotes recomendados:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Calculando atualização... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Falhou" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Pronto" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Erro interno, o solucionador de problemas quebrou coisas" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "Impossível encontrar um pacote fonte para %s" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Pulando arquivo já baixado '%s'\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, 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:2192 +#: cmdline/apt-get.cc:2229 #, 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:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Preciso obter %sB de arquivos fonte.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Obter fonte %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Falhou ao buscar alguns arquivos." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Comando de desempacotamento '%s' falhou.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, 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:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Comando de construção '%s' falhou.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Processo filho falhou" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 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:2353 +#: cmdline/apt-get.cc:2390 #, 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:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s não tem dependências de construção.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1220,7 +1227,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:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1229,32 +1236,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:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, 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:2555 +#: cmdline/apt-get.cc:2594 #, 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:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Falhou ao processar as dependências de construção" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Módulos para os quais há suporte:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1340,7 +1347,7 @@ msgstr "" "para mais informações e opções.\n" " Este APT tem Poderes de Super Vaca.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1583,9 +1590,13 @@ msgstr "Sobrescrita de pacote não combina com nenhuma versão para %s" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Impossível ler %s" @@ -1615,9 +1626,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "Os diretórios info e temp precisam estar no mesmo sistema de arquivos" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Lendo listas de pacotes" @@ -1721,12 +1732,12 @@ msgstr "Falhou ao localizar um arquivo de controle válido" msgid "Unparsable control file" msgstr "Arquivo de controle não interpretável" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Impossível ler o banco de dados de cdrom %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1734,20 +1745,20 @@ msgstr "" "Por favor, use o apt-cdrom para fazer com que este CD-ROM seja reconhecido " "pelo APT. O apt-get update não pode ser usado para adicionar novos CD-ROMs" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "CD-ROM errado" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Impossível desmontar o CD-ROM em %s, o mesmo ainda pode estar em uso." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Disco não encontrado." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Arquivo não encontrado" @@ -1765,34 +1776,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "URI inválida, URIs locais não devem iniciar com //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Efetuando login" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Impossível determinar o nome do ponto" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Impossível determinar o nome local" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "O servidor recusou a conexão e disse: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER falhou, servidor disse: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS falhou, servidor disse: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1800,114 +1811,114 @@ msgstr "" "Um servidor proxy foi especificado mas não um script de login, Acquire::ftp::" "ProxyLogin está vazio." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Comando de script de login '%s' falhou, servidor disse: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE falhou, servidor disse: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Conexão expirou" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Servidor fechou a conexão" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Erro de leitura" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Uma resposta sobrecarregou o buffer" -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Corrupção de protocolo" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Erro de escrita" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Não foi possível criar um socket" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Não foi possível conectar um socket de dados, conexão expirou" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Não foi possível conectar um socket passivo." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo não foi capaz de obter um socket de escuta" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Não foi possível fazer \"bind\" de um socket" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Não foi possível ouvir no socket" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Não foi possível determinar o nome do socket" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Impossível enviar o comando PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Família de endereços %u desconhecida (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT falhou, servidor disse: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Conexão do socket de dados expirou" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Impossível aceitar conexão" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Problema criando o hash do arquivo" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Impossível obter arquivo, servidor disse '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Socket de dados expirou" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Transferência de dados falhou, servidor disse '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Pesquisa" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Impossível invocar " @@ -2022,93 +2033,93 @@ msgstr "Não foi possível abrir \"pipe\" para %s" msgid "Read error from %s process" msgstr "Erro de leitura do processo %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Aguardando por cabeçalhos" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Recebi uma única linha de cabeçalho acima de %u caracteres" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Linha de cabeçalho ruim" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "O servidor HTTP enviou um cabeçalho de resposta inválido" -#: methods/http.cc:588 +#: methods/http.cc:593 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:603 +#: methods/http.cc:608 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:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Este servidor HTTP possui suporte a \"range\" quebrado" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Formato de data desconhecido" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Seleção falhou" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Conexão expirou" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Erro escrevendo para arquivo de saída" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Erro escrevendo para arquivo" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Erro escrevendo para o arquivo" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "Erro lendo do servidor. Ponto remoto fechou a conexão" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Erro lendo do servidor" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Falhou ao truncar arquivo" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Dados de cabeçalho ruins" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Conexão falhou" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Erro interno" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Não foi possível fazer \"mmap\" de um arquivo vazio" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Não foi possível fazer \"mmap\" de %lu bytes" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2257,13 +2268,13 @@ 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:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Impossível mudar para %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Impossível executar \"stat\" no cdrom" @@ -2292,51 +2303,50 @@ msgstr "Não foi possível obter trava %s" msgid "Waited for %s but it wasn't there" msgstr "Esperado %s mas este não estava lá" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, 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:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Sub-processo %s recebeu uma falha de segmentação." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, 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:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Sub-processo %s finalizou inesperadamente" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Não foi possível abrir arquivo %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Problema fechando o arquivo" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Problema removendo o arquivo" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Problema sincronizando o arquivo" @@ -2429,16 +2439,16 @@ msgstr "Versões candidatas" msgid "Dependency generation" msgstr "Geração de dependência" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Lendo informação de estado" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Falha ao abrir Arquivo de Estado (\"StateFile\") %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Falha ao escrever Arquivo de Estado (\"StateFile\") temporário %s" @@ -2479,32 +2489,32 @@ msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" "Linha mal formada %lu no arquivo de fontes %s (análise de distribuição)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Abrindo %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Linha %u muito longa na lista de fontes %s." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Linha mal formada %u no arquivo de fontes %s (tipo)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Tipo '%s' não é conhecido na linha %u na lista de fontes %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Linha mal formada %u na lista de fontes %s (id de fornecedor)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2529,7 +2539,7 @@ msgstr "" "O pacote %s precisa ser reinstalado, mas não foi possível encontrar um " "arquivo para o mesmo." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2537,11 +2547,11 @@ msgstr "" "Erro, pkgProblemResolver::Resolve gerou falhas, isto pode ser causado por " "pacotes mantidos (hold)." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "Impossível corrigir problemas, você manteve (hold) pacotes quebrados." -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2561,12 +2571,12 @@ msgstr "Diretório de arquivos %spartial está faltando." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Obtendo o arquivo %li de %li (%s restantes)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Obtendo arquivo %li de %li" @@ -2587,16 +2597,16 @@ 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:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Sistema de empacotamento '%s' não é suportado" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Impossível determinar um tipo de sistema de empacotamento aplicável." -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Impossível executar \"stat\" %s." @@ -2615,138 +2625,137 @@ 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:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" 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:351 +#: apt-pkg/policy.cc:369 #, 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:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Nenhuma prioridade (ou zero) especificada para \"pin\"" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "O cache possui um sistema de versões incompatível" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Um erro ocorreu processando %s (NovoPacote)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Um erro ocorreu processando %s (UsePacote1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Um erro ocorreu processando %s (NovoArquivoDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Um erro ocorreu processando %s (UsePacote2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Um erro ocorreu processando %s (NovoArquivoVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Um erro ocorreu processando %s (NovaVersão1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Um erro ocorreu processando %s (UsePacote3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Um erro ocorreu processando %s (NovaVersão2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Um erro ocorreu processando %s (NovoArquivoDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Uau, você excedeu o número de nomes de pacotes que este APT é capaz de " "suportar." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" "Uau, você excedeu o número de versões que este APT é capaz de suportar." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" "Uau, você excedeu o número de descrições que este APT é capaz de suportar." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Uau, você excedeu o número de dependências que este APT é capaz de suportar." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Um erro ocorreu processando %s (EncontrarPacote)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Um erro ocorreu processando %s (ColetarArquivoProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Pacote %s %s não foi encontrado enquanto processando dependências de arquivo" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Não foi possível executar \"stat\" na lista de pacotes fonte %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Coletando Arquivo \"Provides\"" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "Erro de E/S ao gravar cache fonte" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "renomeação falhou, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5Sum incorreto" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Hash Sum incorreto" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "Não existem chaves públicas para os seguintes IDs de chaves:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2756,7 +2765,7 @@ msgstr "" "que você precisa consertar manualmente este pacote. (devido a arquitetura " "não especificada)." -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2765,7 +2774,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:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2773,19 +2782,17 @@ msgstr "" "Os arquivos de índice de pacotes estão corrompidos. Nenhum campo \"Filename:" "\" para o pacote %s." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Tamanho incorreto" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Impossível analisar arquivo de pacote %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Nota, selecionando %s ao invés de %s\n" @@ -2799,7 +2806,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Bloco fornecedor %s não contém impressão digital (\"fingerprint\")" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2808,42 +2815,42 @@ msgstr "" "Usando ponto de montagem de CD-ROM %s\n" "Montando CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Identificando.. " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Rótulo armazenado: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "Desmontando CD-ROM...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Usando ponto de montagem de CD-ROM %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Desmontando CD-ROM\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Aguardando por disco...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Montando CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Procurando por arquivos de índice no disco..\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2852,22 +2859,22 @@ msgstr "" "Encontrado(s) %zu índice(s) de pacote(s), %zu índice(s) de fonte(s), %zu " "índice(s) de traduções e %zu assinatura(s)\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Rótulo encontrado: '%s'\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Este não é um nome válido, tente novamente.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2876,34 +2883,34 @@ msgstr "" "Esse disco é chamado: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Copiando lista de pacotes..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Gravando nova lista de fontes\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 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:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Gravados %i registros.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Gravados %i registros com %i arquivos faltando.\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -2992,7 +2999,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Impossível criar trava no diretório de listas" diff --git a/po/ro.po b/po/ro.po index 3010dd293..6b23f1a81 100644 --- a/po/ro.po +++ b/po/ro.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ro\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -24,7 +24,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Pachetul %s versiunea %s are o dependență neîndeplinită:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -94,7 +94,7 @@ msgstr "Total spațiu intern: " msgid "Total space accounted for: " msgstr "Total spațiu contorizat pentru: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Fișierul pachetului %s este desincronizat." @@ -153,14 +153,14 @@ msgstr " Tabela de versiuni:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -234,15 +234,15 @@ msgstr "" " -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n" "Vedeți manualele apt-cache(8) și apt.conf(5) pentru mai multe informații.\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "Furnizați un nume pentru acest disc, de exemplu „Debian 2.1r1 Disk 1”" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Introduceți un disc în unitate și apăsați Enter" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Repetați această procedură pentru restul CD-urilor din set." @@ -308,7 +308,7 @@ msgstr "" " -c=? Citește acest fișier de configurare\n" " -o=? Ajustează o opțiune de configurare arbitrară, ex. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Nu s-a putut scrie în %s" @@ -659,7 +659,7 @@ msgstr "Eșec la redenumirea lui %s în %s" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Eroare de compilare expresie regulată - %s" @@ -760,120 +760,120 @@ msgstr "%lu de șters și %lu neînnoite.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu instalate sau șterse incomplet.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Corectez dependențele..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " eșec." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Nu s-au putut corecta dependențele" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Nu s-a putut micșora mulțimea pachetelor de înnoit" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Terminat" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Dependențe neîndeplinite. Încercați să folosiți -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVERTISMENT: Următoarele pachete nu pot fi autentificate!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Avertisment de autentificare înlocuit.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Instalați aceste pachete fără verificare [y/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Unele pachete n-au putut fi autentificate" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Eroare internă, InstallPackages a fost apelat cu pachete deteriorate!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "Pachete trebuiesc șterse dar ștergerea este dezactivată." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Eroare internă, Ordering nu s-a terminat" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Nu s-a putut bloca directorul de descărcare" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Lista surselor nu poate fi citită." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 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:842 +#: cmdline/apt-get.cc:841 #, 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:845 +#: cmdline/apt-get.cc:844 #, 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:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "N-am putut determina spațiul disponibil în %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, 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:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Da, fă cum îți spun!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -884,28 +884,28 @@ msgstr "" "Pentru a continua tastați fraza '%s'\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Renunțare." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Vreți să continuați [Y/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Eșec la aducerea lui %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Descărcarea unor fișiere a eșuat" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Descărcare completă și în modul doar descărcare" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -913,47 +913,47 @@ 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:1016 +#: cmdline/apt-get.cc:1018 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:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Nu pot corecta pachetele lipsă." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Abandonez instalarea." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Notă, se selectează %s în locul lui %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, 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:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Instalat]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Ar trebui să alegeți în mod explicit unul pentru instalare." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -964,69 +964,74 @@ 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:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Oricum următoarele pachete îl înlocuiesc:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Pachetul %s nu are nici un candidat la instalare" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s este deja la cea mai nouă versiune.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Release '%s' pentru '%s' n-a fost găsită" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Versiunea '%s' pentru '%s' n-a fost găsită" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Versiune selectată %s (%s) pentru %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Comanda de actualizare nu are argumente" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Nu pot încuia directorul cu lista" # XXX: orice sugestie este bine-venită -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 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:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Următoarele pachete au fost instalate automat și nu mai sunt necesare:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "Următoarele pachete au fost instalate automat și nu mai sunt necesare:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Folosiți 'apt-get autoremove' pentru a le șterge." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1045,43 +1050,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 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:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Eroare internă, AutoRemover a deteriorat diverse chestiuni" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Eroare internă, înnoire totală a defectat diverse chestiuni" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Nu s-a putut găsi sarcina %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Nu pot găsi pachetul %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Notă, selectare %s pentru expresie regulată '%s'\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s este marcat ca fiind instalat manual.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1089,7 +1094,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:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1102,118 +1107,118 @@ msgstr "" "pachete\n" "cerute n-au fost create încă sau au fost mutate din Incoming." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Pachete deteriorate" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Următoarele extra pachete vor fi instalate:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Pachete sugerate:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Pachete recomandate:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Calculez înnoirea... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Eșec" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Terminat" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "" "Eroare internă, rezolvatorul de probleme a deteriorat diverse chestiuni" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, 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:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Sar peste fișierul deja descărcat '%s'\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, 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:2192 +#: cmdline/apt-get.cc:2229 #, 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:2195 +#: cmdline/apt-get.cc:2232 #, 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:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Aducere sursa %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Eșec la aducerea unor arhive." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Comanda de despachetare '%s' eșuată.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, 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:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Comanda de construire '%s' eșuată.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Procesul copil a eșuat" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 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:2353 +#: cmdline/apt-get.cc:2390 #, 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:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s nu are dependențe înglobate.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1222,7 +1227,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:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1231,32 +1236,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:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, 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:2555 +#: cmdline/apt-get.cc:2594 #, 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:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Eșec la prelucrarea dependențelor de compilare" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Module suportate:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1343,7 +1348,7 @@ msgstr "" "pentru mai multe informații și opțiuni.\n" " Acest APT are puterile unei Super Vaci.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1586,9 +1591,13 @@ msgstr "Pachet suprascris fără nici o versiune pentru %s" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Nu s-a putut citi %s" @@ -1618,9 +1627,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "Directoarele info și temp trebuie să fie în același sistem de fișiere" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Citire liste de pachete" @@ -1728,12 +1737,12 @@ msgstr "Eșec la localizare a unui fișier de control valid" msgid "Unparsable control file" msgstr "Fișier de control neanalizabil" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Nu s-a putut citi baza de date de CD %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1741,20 +1750,20 @@ msgstr "" "Folosiți apt-cdrom pentru a-l face pe APT să recunoască acest CD. „apt-get " "update” nu poate fi folosit pentru adăugarea de noi CD-uri" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "CD-ROM necorespunzător" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Nu se poate demonta CD-ul din %s, poate este încă utilizat." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Disc negăsit." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Fișier negăsit" @@ -1772,34 +1781,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "URI invalid, URI-uile locale trebuie să nu înceapă cu //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Se autentifică" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Nu se poate detecta numele perechii" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Nu s-a putut detecta numele local" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Serverul a refuzat conexiunea și a spus: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "„USER” a eșuat, serverul a spus: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "„PASS” a eșuat, serverul a spus: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1807,116 +1816,116 @@ msgstr "" "Un server proxy a fost precizat, dar nu există nici un script de conectare, " "Acquire::ftp::ProxyLogin este gol." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Scriptul „%s” cu comenzile de conectare a eșuat, serverul a spus: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "„TYPE” a eșuat, serverul a spus: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Timpul de conectare a expirat" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Serverul a închis conexiunea" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Eroare de citire" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Un răspuns a depășit zona de tampon." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Protocol corupt" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Eroare de scriere" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Nu s-a putut crea un socket" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "" "Nu s-a putut realiza conectarea la socket-ul de date, timpul de conectare a " "expirat" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Nu s-a putut realiza conectarea la un socket pasiv" -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "„getaddrinfo” n-a reușit să obțină un socket de ascultare" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Nu s-a putut realiza asocierea la un socket" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Nu s-a putut asculta pe socket" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Nu s-a putut detecta numele socket-ului" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Nu s-a putut trimite comanda PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Familie de adrese necunoscută %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "„EPRT” a eșuat, serverul a spus: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Timpul de conectare la socket-ul de date expirat" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Nu s-a putut accepta conexiune" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Problemă la calcularea dispersiei pentru fișierul" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Nu s-a putut aduce fișierul, serverul a spus „%s”" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Timp expirat pentru socket-ul de date" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Transferul de date a eșuat, serverul a spus: '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Interogare" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Nu s-a putut invoca" @@ -2031,94 +2040,94 @@ msgstr "Nu s-a putut deschide conexiunea pentru %s" msgid "Read error from %s process" msgstr "Eroare de citire din procesul %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "În așteptarea antetelor" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "S-a primit o singură linie de antet de peste %u caractere" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Linie de antet necorespunzătoare" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "Serverul HTTP a trimis un antet de răspuns necorespunzător" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Serverul HTTP a trimis un antet Content-Length necorespunzător" -#: methods/http.cc:603 +#: methods/http.cc:608 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:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Acest server HTTP are un suport defect de intervale" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Format dată necunoscut" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Selecția a eșuat" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Timp de conectare expirat" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Eroare la scrierea fișierului de rezultat" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Eroare la scrierea în fișier" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Eroare la scrierea în fișierul" -#: methods/http.cc:883 +#: methods/http.cc:888 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:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Eroare la citirea de la server" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Eșec la trunchierea fișierului" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Antet de date necorespunzător" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Conectare eșuată" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Eroare internă" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Nu s-a putut executa „mmap” cu un fișier gol" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Nu s-a putut face mmap cu %lu octeți" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2267,13 +2276,13 @@ 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:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Nu pot schimba la %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Eșec la „stat” pentru CD" @@ -2302,51 +2311,50 @@ msgstr "Nu pot determina blocajul %s" msgid "Waited for %s but it wasn't there" msgstr "Așteptat %s, dar n-a fost acolo" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Subprocesul %s a primit o eroare de segmentare." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Subprocesul %s a primit o eroare de segmentare." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, 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:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Subprocesul %s s-a terminat brusc" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Nu s-a putut deschide fișierul %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Problemă la închiderea fișierului" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Problemă la dezlegarea fișierului" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Problemă în timpul sincronizării fișierului" @@ -2439,16 +2447,16 @@ msgstr "Versiuni candidat" msgid "Dependency generation" msgstr "Generare dependențe" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Se citesc informațiile de stare" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Eșec la deschiderea fișierului de stare %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Eșec la scrierea fișierului temporar de stare %s" @@ -2488,32 +2496,32 @@ msgstr "Linie greșită %lu în lista sursă %s (dist. absolută)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Linie greșită %lu în lista sursă %s (analiza dist.)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Deschidere %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Linia %u prea lungă în lista sursă %s." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Linie greșită %u în lista sursă %s (tip)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Tipul '%s' nu este cunoscut în linia %u din lista sursă %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Linie greșită %u în lista sursă %s (identificator vânzător)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2537,7 +2545,7 @@ msgid "" msgstr "" "Pachetul %s are nevoie să fie reinstalat, dar nu pot găsi o arhivă pentru el." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2545,11 +2553,11 @@ msgstr "" "Eroare, pkgProblemResolver::Resolve a generat întreruperi, aceasta poate fi " "cauzată de pachete ținute." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "Nu pot corecta problema, ați ținut pachete deteriorate." -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2569,12 +2577,12 @@ msgstr "Directorul de arhive %spartial lipsește." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, 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:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Se descarcă fișierul %li din %li" @@ -2595,16 +2603,16 @@ 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:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Sistemul de pachete '%s' nu este suportat" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Nu s-a putut determina un tip de sistem de împachetare potrivit" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Nu pot determina starea %s." @@ -2624,140 +2632,139 @@ 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:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" 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:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Nu s-a înțeles tipul de pin %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Fără prioritate (sau zero) specificată pentru pin" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Cache are un versioning system incompatibil" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Eroare apărută în timpul procesării %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Eroare apărută în timpul procesării %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "A apărut o eroare în timpul procesării lui %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Eroare apărută în timpul procesării %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Eroare apărută în timpul procesării %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Eroare apărută în timpul procesării %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Eroare apărută în timpul procesării %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Eroare apărută în timpul procesării %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "A apărut o eroare în timpul procesării lui %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Mamăăă, ați depășit numărul de nume de pachete de care este capabil acest " "APT." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" "Mamăăă, ați depășit numărul de versiuni de care este capabil acest APT." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" "Mamăăă, ați depășit numărul de descrieri de care este capabil acest APT." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Mamăăă, ați depășit numărul de dependențe de care este capabil acest APT." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Eroare apărută în timpul procesării %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Eroare apărută în timpul procesării %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Nu s-a găsit pachetul %s %s în timpul procesării dependențelor de fișiere" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nu pot determina starea listei surse de pachete %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Colectare furnizori fișier" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "Eroare IO în timpul salvării sursei cache" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "redenumire eșuată, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "Nepotrivire MD5Sum" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Nepotrivire la suma de căutare" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "" "Nu există nici o cheie publică disponibilă pentru următoarele " "identificatoare de chei:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2766,7 +2773,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:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2775,7 +2782,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:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2783,19 +2790,17 @@ msgstr "" "Fișierele index de pachete sunt deteriorate. Fără câmpul 'nume fișier:' la " "pachetul %s." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Nepotrivire dimensiune" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Nu s-a putut analiza fișierul pachet %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Notă, se selectează %s în locul lui %s\n" @@ -2809,7 +2814,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Blocul vânzător %s nu conține amprentă" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2818,43 +2823,43 @@ msgstr "" "Utilizare puct de montare CD-ROM %s\n" "Montare CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Identificare.. " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Etichetă memorată: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "Se demontează CD-ul...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Utilizare punct de montare CD-ROM %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Demontare CD-ROM\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Aștept discul...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Montez CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Scanez discul de fișierele index..\n" # DEVELOPERS: please consider using somehow plural forms -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2863,22 +2868,22 @@ msgstr "" "Au fost găsite %zu indexuri de pachete, %zu indexuri de surse, %zu indexuri " "de traduceri și %zu semnături\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "A fost găsită eticheta „%s”\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Acesta nu este un nume valid, mai încercați.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2887,34 +2892,34 @@ msgstr "" "Acest disc este numit: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Copiez listele de pachete.." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Scriere noua listă sursă\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Intrările listei surselor pentru acest disc sunt:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "S-au scris %i înregistrări.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, 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:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -3003,7 +3008,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Nu pot încuia directorul cu lista" diff --git a/po/ru.po b/po/ru.po index b3e4bb13f..a9ab75d82 100644 --- a/po/ru.po +++ b/po/ru.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+0200\n" "PO-Revision-Date: 2009-05-03 22:01+0400\n" "Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n" "Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n" @@ -31,7 +31,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Пакет %s версии %s имеет неудовлетворённую зависимость:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -101,7 +101,7 @@ msgstr "Пустого места в кэше: " msgid "Total space accounted for: " msgstr "Полное учтённое пространство: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Список пакетов %s рассинхронизирован." @@ -159,14 +159,14 @@ msgstr " Таблица версий:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -238,15 +238,15 @@ msgstr "" " -o=? Задать значение произвольной настройке, например, -o dir::cache=/tmp\n" "Подробности в справочных страницах apt-cache(8) и apt.conf(5).\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "Задайте имя для этого диска, например 'Debian 2.1r1 Disk 1'" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Вставьте диск в устройство и нажмите ввод" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Повторите этот процесс для всех имеющихся CD." @@ -311,7 +311,7 @@ msgstr "" " -c=? Читать указанный файл настройки\n" " -o=? Задать значение произвольной настройке, например, -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Невозможно записать в %s" @@ -662,7 +662,7 @@ msgstr "Не удалось переименовать %s в %s" msgid "Y" msgstr "д" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Ошибка компиляции регулярного выражения - %s" @@ -764,128 +764,128 @@ msgstr "для удаления отмечено %lu пакетов, и %lu па msgid "%lu not fully installed or removed.\n" msgstr "не установлено до конца или удалено %lu пакетов.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Исправление зависимостей..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " не удалось." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Невозможно скорректировать зависимости" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Невозможно минимизировать набор обновлений" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Готово" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "" "Возможно, для исправления этих ошибок вы захотите воспользоваться `apt-get -" "f install'." -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Неудовлетворённые зависимости. Попытайтесь использовать -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "ВНИМАНИЕ: Следующие пакеты невозможно аутентифицировать!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Предупреждение об аутентификации не принято в внимание.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Установить эти пакеты без проверки [y/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Некоторые пакеты невозможно аутентифицировать" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "Существуют проблемы, а параметр -y указан без --force-yes" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" "Внутренняя ошибка, InstallPackages была вызвана с неработоспособными " "пакетами!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "Пакеты необходимо удалить, но удаление запрещено." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Внутренняя ошибка, Ordering не завершилась" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Невозможно заблокировать каталог, куда складываются скачиваемые файлы" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Не читается перечень источников." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "Странно.. Несовпадение размеров, напишите на apt@packages.debian.org" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Необходимо скачать %sB/%sB архивов.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Необходимо скачать %sБ архивов.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "" "После данной операции, объём занятого дискового пространства возрастёт на %" "sB.\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "" "После данной операции, объём занятого дискового пространства уменьшится на %" "sB.\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "Не удалось определить количество свободного места в %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "Недостаточно свободного места в %s." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "Запрошено выполнение только тривиальных операций, но это не тривиальная " "операция." -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Да, делать, как я скажу!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -896,28 +896,28 @@ msgstr "" "Чтобы продолжить, введите фразу: '%s'\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Аварийное завершение." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Хотите продолжить [Д/н]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Не удалось получить %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Некоторые файлы скачать не удалось" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Указан режим \"только скачивание\", и скачивание завершено" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -925,47 +925,47 @@ msgstr "" "Невозможно получить некоторые архивы, вероятно надо запустить apt-get update " "или попытаться повторить запуск с ключом --fix-missing" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing и смена носителя в данный момент не поддерживаются" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Невозможно исправить ситуацию с пропущенными пакетами." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Аварийное завершение установки." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Заметьте, вместо %2$s выбирается %1$s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "Пропускается %s - пакет уже установлен и нет команды upgrade.\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Пакет %s не установлен, поэтому не может быть удалён\n" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Пакет %s - виртуальный, его функции предоставляются пакетами:\n" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Установлен]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Вы должны явно указать, какой именно вы хотите установить." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -976,68 +976,73 @@ msgstr "" "Это может означать, что пакет отсутствует, устарел, или доступен из " "источников, не упомянутых в sources.list\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Однако следующие пакеты могут его заменить:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Для пакета %s не найдены кандидаты на установку" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Переустановка %s невозможна, он не скачивается.\n" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "Уже установлена самая новая версия %s.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Релиз '%s' для '%s' не найден" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Версия '%s' для '%s' не найдена" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Выбрана версия %s (%s) для %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "Нет пакета с исходным кодом '%s', вместо него берётся '%s'\n" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Команде update не нужны аргументы" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Невозможно заблокировать каталог со списками пакетов" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Не предполагалось удалять stuff, невозможно запустить AutoRemover" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Следующие пакеты устанавливались автоматически и больше не требуются:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "Следующие пакеты устанавливались автоматически и больше не требуются:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Для их удаления используйте 'apt-get autoremove'." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1055,45 +1060,45 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "Следующая информация, возможно, поможет вам:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Внутренняя ошибка, AutoRemover всё поломал" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Внутренняя ошибка, AllUpgrade всё поломал" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Не удалось найти задачу %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Не удалось найти пакет %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Заметьте, выбирается %s из-за регулярного выражения %s\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s установлен вручную.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" "Возможно, для исправления этих ошибок вы захотите воспользоваться `apt-get -" "f install':" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1101,7 +1106,7 @@ msgstr "" "Неудовлетворённые зависимости. Попытайтесь выполнить 'apt-get -f install', " "не указывая имени пакета, (или найдите другое решение)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1112,118 +1117,118 @@ msgstr "" "или же используете нестабильную версию дистрибутива, где запрошенные вами\n" "пакеты ещё не созданы или были удалены из Incoming." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Сломанные пакеты" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Будут установлены следующие дополнительные пакеты:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Предлагаемые пакеты:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Рекомендуемые пакеты:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Расчёт обновлений... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Неудачно" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Готово" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Внутренняя ошибка, решатель проблем всё поломал" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "" "Укажите как минимум один пакет, исходный код которого необходимо получить" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "Невозможно найти пакет с исходным кодом для %s" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Пропускаем уже скачанный файл '%s'\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "Недостаточно места в %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Необходимо получить %sб/%sб архивов исходного кода.\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Необходимо получить %sб архивов исходного кода.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Получение исходного кода %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Некоторые архивы не удалось получить." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Пропускается распаковка уже распакованного исходного кода в %s\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Команда распаковки '%s' завершилась неудачно.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Проверьте, установлен ли пакет 'dpkg-dev'.\n" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Команда сборки '%s' завершилась неудачно.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Порождённый процесс завершился неудачно" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "" "Для проверки зависимостей для сборки необходимо указать как минимум один " "пакет" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Невозможно получить информацию о зависимостях для сборки %s" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s не имеет зависимостей для сборки.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1232,7 +1237,7 @@ msgstr "" "Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не " "найден" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1241,74 +1246,33 @@ msgstr "" "Зависимость типа %s для %s не может быть удовлетворена, поскольку ни одна из " "версий пакета %s не удовлетворяет требованиям" -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2551 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Не удалось удовлетворить зависимость типа %s для пакета %s: Установленный " "пакет %s новее, чем надо" -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Невозможно удовлетворить зависимость типа %s для пакета %s: %s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Зависимости для сборки %s не могут быть удовлетворены." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Обработка зависимостей для сборки завершилась неудачно" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Поддерживаемые модули:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy -#| msgid "" -#| "Usage: apt-get [options] command\n" -#| " apt-get [options] install|remove pkg1 [pkg2 ...]\n" -#| " apt-get [options] source pkg1 [pkg2 ...]\n" -#| "\n" -#| "apt-get is a simple command line interface for downloading and\n" -#| "installing packages. The most frequently used commands are update\n" -#| "and install.\n" -#| "\n" -#| "Commands:\n" -#| " update - Retrieve new lists of packages\n" -#| " upgrade - Perform an upgrade\n" -#| " install - Install new packages (pkg is libc6 not libc6.deb)\n" -#| " remove - Remove packages\n" -#| " autoremove - Remove automatically all unused packages\n" -#| " purge - Remove packages and config files\n" -#| " source - Download source archives\n" -#| " build-dep - Configure build-dependencies for source packages\n" -#| " dist-upgrade - Distribution upgrade, see apt-get(8)\n" -#| " dselect-upgrade - Follow dselect selections\n" -#| " clean - Erase downloaded archive files\n" -#| " autoclean - Erase old downloaded archive files\n" -#| " check - Verify that there are no broken dependencies\n" -#| "\n" -#| "Options:\n" -#| " -h This help text.\n" -#| " -q Loggable output - no progress indicator\n" -#| " -qq No output except for errors\n" -#| " -d Download only - do NOT install or unpack archives\n" -#| " -s No-act. Perform ordering simulation\n" -#| " -y Assume Yes to all queries and do not prompt\n" -#| " -f Attempt to correct a system with broken dependencies in place\n" -#| " -m Attempt to continue if archives are unlocatable\n" -#| " -u Show a list of upgraded packages as well\n" -#| " -b Build the source package after fetching it\n" -#| " -V Show verbose version numbers\n" -#| " -c=? Read this configuration file\n" -#| " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -#| "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -#| "pages for more information and options.\n" -#| " This APT has Super Cow Powers.\n" msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1396,7 +1360,7 @@ msgstr "" "содержат подробную информацию и описание параметров.\n" " В APT есть коровья СУПЕРСИЛА.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1636,9 +1600,13 @@ msgstr "Файлы заменяются содержимым пакета %s б msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Невозможно прочитать %s" @@ -1668,9 +1636,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "Каталоги info и temp должны находиться на одной файловой системе" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Чтение списков пакетов" @@ -1774,12 +1742,12 @@ msgstr "Не удалось найти правильный control-файл" msgid "Unparsable control file" msgstr "Не удалось прочесть содержимое control-файла" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Невозможно прочесть базу %s с CD" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1787,20 +1755,20 @@ msgstr "" "Пожалуйста, используйте apt-cdrom, чтобы APT смог распознать данный CD. apt-" "get update не используется для добавления нового CD" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Ошибочный CD" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Невозможно размонтировать CD-ROM в %s, возможно он ещё используется." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Диск не найден." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Файл не найден" @@ -1818,34 +1786,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "Неправильный URI, локальный URI не должен начинаться с //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Вход в систему" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Невозможно определить имя удалённого сервера" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Невозможно определить локальное имя" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Сервер разорвал соединение и сообщил: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "Команда USER не выполнена, сервер сообщил: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "Команда PASS не выполнена, сервер сообщил: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1853,118 +1821,118 @@ msgstr "" "Proxy-сервер указан, однако нет сценария входа в систему, Acquire::ftp::" "ProxyLogin пуст." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "" "Команда '%s' сценария входа в систему завершилась неудачно, сервер сообщил: %" "s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "Команда TYPE не выполнена, сервер сообщил: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Допустимое время ожидания для соединения истекло" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Сервер прервал соединение" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Ошибка чтения" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Ответ переполнил буфер." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Искажение протокола" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Ошибка записи" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Не удалось создать сокет" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "" "Не удалось присоединиться к сокету данных, время на установление соединения " "истекло" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Невозможно присоединить пассивный сокет" -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "Вызов getaddrinfo не смог получить сокет" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Невозможно присоединиться к сокету" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Не удалось принимать соединения на сокете" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Не удалось определить имя сокета" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Невозможно послать команду PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Неизвестное семейство адресов %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "Команда EPRT не выполнена, сервер сообщил: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Время установления соединения для сокета данных истекло" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Невозможно принять соединение" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Проблема при хешировании файла" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Невозможно получить файл, сервер сообщил: '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Время ожидания соединения для сокета данных истекло" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Передача данных завершилась неудачно, сервер сообщил: '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Запрос" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Невозможно вызвать " @@ -2079,93 +2047,93 @@ msgstr "Не удалось открыть канал для %s" msgid "Read error from %s process" msgstr "Ошибка чтения из процесса %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Ожидание заголовков" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Получен заголовок длиннее %u символов" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Неверный заголовок" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "Http-сервер послал неверный заголовок" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Http сервер послал неверный заголовок Content-Length" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Http-сервер послал неверный заголовок Content-Range" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Этот HTTP-сервер не поддерживает скачивание фрагментов файлов" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Неизвестный формат данных" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Ошибка в select" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Время ожидания для соединения истекло" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Ошибка записи в выходной файл" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Ошибка записи в файл" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Ошибка записи в файл" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "Ошибка чтения, удалённый сервер прервал соединение" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Ошибка чтения с сервера" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Не удалось обрезать файл" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Неверный заголовок данных" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Соединение разорвано" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Внутренняя ошибка" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Невозможно отобразить в память пустой файл" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Невозможно отобразить в память %lu байт" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2316,13 +2284,13 @@ msgstr "Неверная операция %s" msgid "Unable to stat the mount point %s" msgstr "Невозможно прочитать атрибуты точки монтирования %s" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Невозможно сменить текущий каталог на %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Невозможно получить атрибуты cdrom" @@ -2355,54 +2323,53 @@ msgstr "Не удалось получить доступ к файлу блок msgid "Waited for %s but it wasn't there" msgstr "Ожидалось завершение процесса %s, но он не был запущен" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "" "Нарушение защиты памяти (segmentation fault) в порождённом процессе %s." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "" "Нарушение защиты памяти (segmentation fault) в порождённом процессе %s." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Порождённый процесс %s вернул код ошибки (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Порождённый процесс %s неожиданно завершился" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Не удалось открыть файл %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "" "ошибка при чтении. собирались прочесть ещё %lu байт, но ничего больше нет" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "ошибка при записи, собирались записать ещё %lu байт, но не смогли" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Проблема закрытия файла" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Ошибка при удалении файла" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Проблема при синхронизации файловых буферов с диском" @@ -2495,16 +2462,16 @@ msgstr "Версии-кандидаты" msgid "Dependency generation" msgstr "Генерирование зависимостей" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Чтение информации о состоянии" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Не удалось открыть StateFile %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Не удалось записать временный StateFile %s" @@ -2545,32 +2512,32 @@ msgstr "Искажённая строка %lu в списке источнико msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Искажённая строка %lu в списке источников %s (dist parse)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Открытие %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Строка %u в списке источников %s слишком длинна." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Искажённая строка %u в списке источников %s (тип)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Неизвестный тип '%s' в строке %u в списке источников %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Искажённая строка %u в списке источников %s (vendor id)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2595,7 +2562,7 @@ msgid "" msgstr "" "Пакет %s нуждается в переустановке, но найти архив для него не удалось." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2603,11 +2570,11 @@ msgstr "" "Ошибка, pkgProblemResolver::Resolve сгенерировал повреждённые пакеты. Это " "может быть вызвано отложенными (held) пакетами." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "Невозможно исправить ошибки, у вас отложены (held) битые пакеты." -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2627,12 +2594,12 @@ msgstr "Архивный каталог %spartial отсутствует." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Скачивается файл %li из %li (осталось %s)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Скачивается файл %li из %li" @@ -2652,16 +2619,16 @@ msgstr "Метод %s запустился не корректно" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "Вставьте диск с меткой '%s' в устройство '%s' и нажмите ввод." -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Менеджер пакетов '%s' не поддерживается" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Невозможно определить подходящий тип менеджера пакетов" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Невозможно получить атрибуты %s." @@ -2678,133 +2645,132 @@ msgstr "Списки пакетов или status-файл не могут бы msgid "You may want to run apt-get update to correct these problems" msgstr "Вы можете запустить 'apt-get update' для исправления этих ошибок" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "Неверная запись в файле preferences: отсутствует заголовок Package" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Неизвестный тип фиксации %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Для фиксации не указан приоритет (или указан нулевой)" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Кэш имеет несовместимую систему версий" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Произошла ошибка во время обработки %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Произошла ошибка во время обработки %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Произошла ошибка во время обработки %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Произошла ошибка во время обработки %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Произошла ошибка во время обработки %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Произошла ошибка во время обработки %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Произошла ошибка во время обработки %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Произошла ошибка во время обработки %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Произошла ошибка во время обработки %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "Превышено допустимое количество имён пакетов." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Превышено допустимое количество версий." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" "Вах, превышено допустимое количество описаний, с которым может работать APT." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Превышено допустимое количество зависимостей." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Произошла ошибка во время обработки %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Произошла ошибка во время обработки %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Во время обработки файла зависимостей не найден пакет %s %s" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Не удалось получить атрибуты списка пакетов исходного кода %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Сбор информации о Provides" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "Ошибка ввода/вывода при попытке сохранить кэш источников" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "переименовать не удалось, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5Sum не совпадает" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Хеш сумма не совпадает" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "Недоступен открытый ключ для следующих ID ключей:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2813,7 +2779,7 @@ msgstr "" "Не удалось обнаружить файл пакета %s. Это может означать, что вам придётся " "вручную исправить этот пакет (возможно, пропущен arch)" -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2822,25 +2788,23 @@ msgstr "" "Не удалось обнаружить файл пакета %s. Это может означать, что вам придётся " "вручную исправить этот пакет." -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "Некорректный перечень пакетов. Нет поля Filename: для пакета %s." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Не совпадает размер" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Невозможно разобрать содержимое пакета %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Заметьте, вместо %2$s выбирается %1$s\n" @@ -2854,7 +2818,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Блок поставщика %s не содержит отпечатка (fingerprint)" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2863,42 +2827,42 @@ msgstr "" "В качестве точки монтирования CD-ROM используется %s\n" "Монтируется CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Идентификация.. " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Найдена метка: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "Размонтирование CD-ROM...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Использование %s в качестве точки монтирования CD-ROM\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Размонтирование CD-ROM\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Ожидание операции работы с диском...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Монтирование CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Поиск на диске индексных файлов..\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2907,22 +2871,22 @@ msgstr "" "Найдено индексов: %zu для пакетов, %zu для источников, %zu для переводов и %" "zu для сигнатур\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Найдена метка %s\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Это неправильное имя, попробуйте ещё раз.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2931,34 +2895,34 @@ msgstr "" "Название диска: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Копирование списков пакетов..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Запись нового списка источников\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Записи в списке источников для этого диска:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Сохранено %i записей.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Сохранено %i записей с %i отсутствующими файлами.\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Сохранено %i записей с %i несовпадающими файлами\n" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -3049,7 +3013,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Невозможно заблокировать каталог со списками пакетов" diff --git a/po/sk.po b/po/sk.po index e0cbcb2bc..dafa3859c 100644 --- a/po/sk.po +++ b/po/sk.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+0200\n" "PO-Revision-Date: 2009-07-21 12:45+0100\n" "Last-Translator: Ivan Masár <helix84@centrum.sk>\n" "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n" @@ -25,7 +25,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Balík %s verzie %s má nesplnené závislosti:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -95,7 +95,7 @@ msgstr "Celkom jalového miesta: " msgid "Total space accounted for: " msgstr "Celkom priradeného miesta: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Súbor balíkov %s je neaktuálny." @@ -153,14 +153,14 @@ msgstr " Tabuľka verzií:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -234,15 +234,15 @@ msgstr "" " -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" "Viac informácií nájdete v manuálových stránkach apt-cache(8) a apt.conf(5).\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "Zadajte názov tohto disku, napríklad „Debian 2.1r1 Disk 1“" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Vložte disk do mechaniky a stlačte Enter" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Zopakujte tento postup pre všetky CD v sade diskov." @@ -307,7 +307,7 @@ msgstr "" " -c=? Načíta tento konfiguračný súbor\n" " -o=? Nastaví ľubovoľnú voľbu, napr. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Do %s sa nedá zapisovať" @@ -650,7 +650,7 @@ msgstr "Premenovanie %s na %s zlyhalo" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Chyba pri preklade regulárneho výrazu - %s" @@ -751,120 +751,120 @@ msgstr "%lu na odstránenie a %lu neaktualizovaných.\n" 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:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Opravujú sa závislosti..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " zlyhalo." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Závislosti sa nedajú opraviť" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Sada na aktualizáciu sa nedá minimalizovať" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Hotovo" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "Opravu môžete spustiť pomocu „apt-get -f install“." -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Nesplnené závislosti. Skúste použiť -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "UPOZORNENIE: Pri nasledovných balíkoch sa nedá overiť vierohodnosť!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Upozornenie o vierohodnosti bolo potlačené.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Nainštalovať tieto nekontrolované balíky [y/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Nedala sa zistiť vierohodnosť niektorých balíkov" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 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:785 +#: cmdline/apt-get.cc:784 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:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Vnútorná chyba, Triedenie sa neukončilo" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Adresár pre sťahovanie sa nedá zamknúť" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Nedá sa načítať zoznam zdrojov." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 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:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Je potrebné stiahnuť %sB/%sB archívov.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Je potrebné stiahnuť %sB archívov.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, 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:874 +#: cmdline/apt-get.cc:876 #, 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:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Áno, urob to, čo vravím!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -875,28 +875,28 @@ msgstr "" "Ak chcete pokračovať, opíšte frázu „%s“\n" " ?]" -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Prerušené." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Chcete pokračovať [Y/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Zlyhalo stiahnutie %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Niektoré súbory sa nedajú stiahnuť" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Sťahovanie ukončené v režime „iba stiahnuť“" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -904,47 +904,47 @@ msgstr "" "Niektoré archívy sa nedajú stiahnuť. Skúste spustiť apt-get update alebo --" "fix-missing" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 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:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Chýbajúce balíky sa nedajú opraviť." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Inštalácia sa prerušuje." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Poznámka: %s sa vyberá namiesto %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, 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:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr "[Inštalovaný]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Mali by ste explicitne vybrať jeden na inštaláciu." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -954,69 +954,75 @@ 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:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Avšak nahrádzajú ho nasledovné balíky:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Balík %s nemá kandidáta na inštaláciu" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s je už najnovšej verzie.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Nebolo nájdené vydanie „%s“ pre „%s“" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Nebola nájdená verzia „%s“ pre „%s“" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Zvolená verzia %s (%s) pre %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "Zdrojový balík „%s“ neexistuje, namiesto neho sa použije „%s“\n" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Príkaz update neprijíma žiadne argumenty" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Adresár zoznamov sa nedá zamknúť" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 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:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" "Nasledovné balíky boli nainštalované automaticky a už viac nie sú potrebné:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"Nasledovné balíky boli nainštalované automaticky a už viac nie sú potrebné:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Na ich odstránenie použite „apt-get autoremove“." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1034,43 +1040,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 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:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Vnútorná chyba, AutoRemover niečo pokazil" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Vnútorná chyba, AllUpgrade pokazil veci" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Nebolo možné nájsť úlohu %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Balík %s sa nedá nájsť" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, 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:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s je nastavený na manuálnu inštaláciu.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "Na opravu nasledovných môžete spustiť „apt-get -f install“:" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1078,7 +1084,7 @@ msgstr "" "Nesplnené závislosti. Skúste spustiť „apt-get -f install“ bez balíkov (alebo " "navrhnite riešenie)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1090,124 +1096,124 @@ msgstr "" "požadované balíky ešte neboli vytvorené alebo presunuté z fronty\n" "Novoprichádzajúcich (Incoming) balíkov." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Poškodené balíky" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Nainštalujú sa nasledovné extra balíky:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Navrhované balíky:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Odporúčané balíky:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Prepočítava sa aktualizácia... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Chyba" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Hotovo" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Vnútorná chyba, „problem resolver“ niečo pokazil" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, 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:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Preskakuje sa už stiahnutý súbor „%s“\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, 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:2192 +#: cmdline/apt-get.cc:2229 #, 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:2195 +#: cmdline/apt-get.cc:2232 #, 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:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Stiahnuť zdroj %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Zlyhalo stiahnutie niektorých archívov." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Príkaz na rozbalenie „%s“ zlyhal.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, 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:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Príkaz na zostavenie „%s“ zlyhal.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Proces potomka zlyhal" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 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:2353 +#: cmdline/apt-get.cc:2390 #, 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:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s nemá žiadne závislosti na zostavenie.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, 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:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1216,31 +1222,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:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Zlyhalo splnenie %s závislosti pre %s: %s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Závislosti na zostavenie %s sa nedajú splniť." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Spracovanie závislostí na zostavenie zlyhalo" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Podporované moduly:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1324,7 +1330,7 @@ msgstr "" "a apt.conf(5).\n" " Tento APT má schopnosti posvätnej kravy.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1565,9 +1571,13 @@ msgstr "Prepísať zodpovedajúci balík bez udania verzie pre %s" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Nedá sa načítať %s" @@ -1597,9 +1607,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "Adresáre info a temp musia byť na tom istom súborovom systéme" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Načítavajú sa zoznamy balíkov" @@ -1702,12 +1712,12 @@ msgstr "Nedá sa nájsť platný riadiaci súbor" msgid "Unparsable control file" msgstr "Nespracovateľný riadiaci súbor" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Nedá sa čítať databáza na CD-ROM %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1715,20 +1725,20 @@ msgstr "" "Pre pridanie CD do APT použije apt-cdrom. apt-get update sa nedá využiť na " "pridávanie nových CD." -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Chybné CD" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Nedá sa odpojiť CD-ROM v %s - možno sa ešte používa." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Disk sa nenašiel." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Súbor sa nenašiel" @@ -1746,34 +1756,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "Neplatné URI, lokálne URI nesmie začínať s //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Prihlasovanie" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Nedá sa zistiť názov druhej strany" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Nedá sa zistiť lokálny názov" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Server zamietol naše spojenie s chybou: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "Zlyhalo zadanie používateľa, server odpovedal: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "Zlyhalo zadanie hesla, server odpovedal: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1781,114 +1791,114 @@ msgstr "" "Bol zadaný proxy server, ale nie prihlasovací skript. Acquire::ftp::" "ProxyLogin je prázdny." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Príkaz „%s“ prihlasovacieho skriptu zlyhal, server odpovedal: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "Zlyhalo zadanie typu, server odpovedal: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Uplynul čas spojenia" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Server ukončil spojenie" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Chyba pri čítaní" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Odpoveď preplnila zásobník." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Narušenie protokolu" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Chyba pri zápise" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Nedá sa vytvoriť socket" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Nedá sa pripojiť dátový socket, uplynul čas spojenia" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Nedá sa pripojiť pasívny socket." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo nezískal počúvajúci socket" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Nedá sa nadviazať socket" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Na sockete sa nedá počúvať" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Názov socketu sa nedá zistiť" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Príkaz PORT sa nedá odoslať" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Neznáma rodina adries %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "Zlyhalo zadanie EPRT, server odpovedal: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Uplynulo spojenie dátového socketu" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Spojenie sa nedá prijať" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Problém s hašovaním súboru" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Súbor sa nedá stiahnuť, server odpovedal „%s“" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Uplynula doba dátového socketu" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Prenos dát zlyhal, server odpovedal „%s“" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Dotaz" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Nedá sa vyvolať " @@ -2000,93 +2010,93 @@ msgstr "Nedá sa otvoriť rúra pre %s" msgid "Read error from %s process" msgstr "Chyba pri čítaní z procesu %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Čaká sa na hlavičky" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Získal sa jeden riadok hlavičky cez %u znakov" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Chybná hlavička" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP server poslal neplatnú hlavičku odpovede" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP server poslal neplatnú hlavičku Content-Length" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP server poslal neplatnú hlavičku Content-Range" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Tento HTTP server má poškodenú podporu rozsahov" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Neznámy formát dátumu" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Výber zlyhal" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Uplynul čas spojenia" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Chyba zápisu do výstupného súboru" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Chyba zápisu do súboru" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Chyba zápisu do tohto súboru" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "Chyba pri čítaní zo servera. Druhá strana ukončila spojenie" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Chyba pri čítaní zo servera" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Nepodarilo sa skrátiť súbor" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Zlé dátové záhlavie" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Spojenie zlyhalo" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Vnútorná chyba" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Nedá sa vykonať mmap prázdneho súboru" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Nedá sa urobiť mmap %lu bajtov" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2236,13 +2246,13 @@ 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:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Nedá sa prejsť do %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Nedá sa vykonať stat() CD-ROM" @@ -2271,51 +2281,50 @@ msgstr "Zámok %s sa nedá získať" msgid "Waited for %s but it wasn't there" msgstr "Čakalo sa na %s, ale nebolo to tam" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Podproces %s obdržal chybu segmentácie." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Podproces %s obdržal chybu segmentácie." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, 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:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Podproces %s neočakávane skončil" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Nedá sa otvoriť súbor %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Problém pri zatváraní súboru" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Problém pri odstraňovaní súboru" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Problém pri synchronizovaní súboru" @@ -2408,16 +2417,16 @@ msgstr "Kandidátske verzie" msgid "Dependency generation" msgstr "Generovanie závislostí" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Načítavajú sa stavové informácie" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Nie je možné otvoriť StateFile %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Nie je možné zapísať dočasný StateFile %s" @@ -2457,32 +2466,32 @@ msgstr "Skomolený riadok %lu v zozname zdrojov %s (absolútny dist)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Skomolený riadok %lu v zozname zdrojov %s (spracovanie dist)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Otvára sa %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Riadok %u v zozname zdrojov %s je príliš dlhý." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Skomolený riadok %u v zozname zdrojov %s (typ)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typ „%s“ je neznámy na riadku %u v zozname zdrojov %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Skomolený riadok %u v zozname zdrojov %s (id výrobcu)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2504,7 +2513,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:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2512,11 +2521,11 @@ msgstr "" "Chyba, pkgProblemResolver::Resolve vytvára poruchy, čo môže být spôsobené " "pridržanými balíkmi." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 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:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2536,12 +2545,12 @@ msgstr "Archívny adresár %spartial chýba." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, 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:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Sťahuje sa %li. súbor z %li" @@ -2561,16 +2570,16 @@ 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:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Systém balíkov „%s“ nie je podporovaný" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Nedá sa určiť vhodný typ systému balíkov" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Nie je možné vykonať stat %s." @@ -2587,134 +2596,133 @@ 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:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "Neplatný záznam v súbore „preferences“, žiadne záhlavie balíka" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Nezrozumiteľné pridržanie typu %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Nebola zadaná žiadna (alebo nulová) priorita na pridržanie" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Vyrovnávacia pamäť má nezlučiteľný systém na správu verzií" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Chyba pri spracovávaní %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Chyba pri spracovávaní %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Chyba pri spracovávaní %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Chyba pri spracovávaní %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Chyba pri spracovávaní %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Chyba pri spracovávaní %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Chyba pri spracovávaní %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Chyba pri spracovávaní %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Vyskytla sa chyba pri spracovávaní %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Fíha, prekročili ste počet názvov balíkov, ktoré toto APT zvládne spracovať." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Fíha, prekročili ste počet verzií, ktoré toto APT zvládne spracovať." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "Fíha, prekročili ste počet popisov, ktoré toto APT zvládne spracovať." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" "Fíha, prekročili ste počet závislostí, ktoré toto APT zvládne spracovať." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Chyba pri spracovávaní %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Chyba pri spracovávaní %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Pri spracovaní závislostí nebol nájdený balík %s %s" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nedá sa vyhodnotiť zoznam zdrojových balíkov %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Collecting File poskytuje" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "V/V chyba pri ukladaní zdrojovej vyrovnávacej pamäti" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "premenovanie zlyhalo, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "Nezhoda kontrolných MD5 súčtov" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Nezhoda kontrolných haš súčtov" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "Nie sú dostupné žiadne verejné kľúče ku kľúčom s nasledovnými ID:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2723,7 +2731,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:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2732,25 +2740,23 @@ 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:1331 +#: apt-pkg/acquire-item.cc:1316 #, 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:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Veľkosti sa nezhodujú" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Súbor %s sa nedá spracovať (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Poznámka: %s sa vyberá namiesto %s\n" @@ -2764,7 +2770,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Blok výrobcu %s neobsahuje otlačok (fingerprint)" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2773,42 +2779,42 @@ msgstr "" "Použije sa CD-ROM prípojný bod %s\n" "Pripája sa CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Identifikuje sa.." -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Uložená menovka: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "CD-ROM sa odpája...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Použije sa prípojný bod CD-ROM %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "CD-ROM sa odpája\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Čaká sa na disk...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Pripája sa CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Na disku sa hľadajú indexové súbory..\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2817,22 +2823,22 @@ msgstr "" "Nájdených %zu indexov balíkov, %zu indexov zdrojových balíkov, %zu indexov " "prekladov a %zu signatúr\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Nájdená menovka: „%s“\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Neplatný názov, skúste znova.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2841,34 +2847,34 @@ msgstr "" "Názov tohto disku je: \n" "„%s“\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Kopírujú sa zoznamy balíkov..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Zapisuje sa nový zoznam zdrojov\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Položky zoznamu zdrojov pre tento disk sú:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Zapísaných %i záznamov.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, 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:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, 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" @@ -2957,7 +2963,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Adresár zoznamov sa nedá zamknúť" diff --git a/po/sl.po b/po/sl.po index 23cf96f50..649614259 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -18,7 +18,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Paket %s razliica %s ima nereene odvisnosti:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -90,7 +90,7 @@ msgstr "Celotna ohlapna velikost: " msgid "Total space accounted for: " msgstr "Celotna velikost, izraunana za: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Paketna datoteka %s ni usklajena." @@ -148,14 +148,14 @@ msgstr " Tabela razli msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -230,11 +230,11 @@ msgstr "" " -o=? Nastavi poljubno nastavitveno monost, npr. -o dir::cache=/tmp\n" "Za ve informacij si oglejte strani man apt-cache(8) in apt.conf(5).\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 #, fuzzy msgid "Please insert a Disc in the drive and press enter" msgstr "" @@ -242,7 +242,7 @@ msgstr "" " '%s'\n" "v enoto '%s' in pritisnite enter\n" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "" @@ -307,7 +307,7 @@ msgstr "" " -c=? Prebere podano datoteko z nastavitvami\n" " -o=? Nastavi poljubno nastavitveno monost, npr. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Ni mogoe pisati na %s" @@ -649,7 +649,7 @@ msgstr "Ni mogo msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Napaka pri prevajanju regex - %s" @@ -751,119 +751,119 @@ msgstr "%lu bo odstranjenih in %lu ne nadgrajenih.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu ne popolnoma nameenih ali odstranjenih.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Popravljanje odvisnosti ..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " spodletelo." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Ni mogoe popraviti odvisnosti" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Ni mogoe pomanjati zbirke za nadgradnjo" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Opravljeno" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Nereene odvisnosti. Poskusite uporabiti -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "POZORO: Naslednjih paketov ni bilo mogoe avtenticirati!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Namestim te pakete brez prevejanje [y/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Nisem uspel avtenticirati nekaterih paketkov" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "Prilo je do teav in -y je bil uporabljen brez --force-yes" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "Odstraniti je potrebno pakete, a je Odstranjevanje onemogoeno." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 #, fuzzy msgid "Internal error, Ordering didn't finish" msgstr "Notranja napaka pri dodajanju odklona" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Ni mogoe zakleniti imenika za prenose" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Seznama virov ni mogoe brati." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Potrebno je dobiti %sB/%sB arhivov.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Potrebno je dobiti %sB arhivov.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Po odpakiranju bo sproenega %sB prostora na disku.\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, fuzzy, c-format msgid "Couldn't determine free space in %s" msgstr "Nimate dovolj prostora na %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "V %s je premalo prostora." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Izbrana je monost Samo preprosto, a to opravilo ni preprosto." -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Da, naredi tako kot pravim!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, fuzzy, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -874,28 +874,28 @@ msgstr "" "Za nadaljevanje vnesite frazo '%s'\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Prekini." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Ali elite nadaljevati [Y/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ni mogoe dobiti %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Prenos nekaterih datotek ni uspel" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Prenos dokonan in uporabljen nain samo prenos" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -903,47 +903,47 @@ msgstr "" "Nekaterih arhivov ni mogoe dobiti. Poskusite uporabiti apt-get update ali --" "fix-missing." -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing in izmenjava medija trenutno nista podprta" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Ni mogoe popraviti manjkajoih paketov." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Prekinjanje namestitve." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Opomba: izbran %s namesto %s \n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "%s preskoen, ker je e nameen in ne potrebuje nadgradnje.\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Paket %s ni nameen, zato ni odstranjen\n" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Nameeno]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Sami izberite paket, ki ga elite namestiti." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -954,69 +954,74 @@ msgstr "" "To ponavadi pomeni, da paket manjka, je zastaran ali\n" "pa je na voljo samo iz drugega vira.\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Kakorkoli, naslednji paketi ga nadomestijo:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Paket %s nima kandidata za namestitev" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Ponovna namestitev %s ni mona, ker ni moen prenos.\n" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "Najnoveja razliica %s je e nameena.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Izdaje '%s' za '%s' ni mogoe najti" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Razliice '%s' za '%s' ni mogoe najti" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Izbrana razliica %s (%s) za %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Ukaz update ne potrebuje argumentov" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Imenika seznamov ni mogoe zakleniti" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Naslednji NOVI paketi bodo nameeni:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "Naslednji NOVI paketi bodo nameeni:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1032,44 +1037,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "Naslednji podatki vam bodo morda pomagali reiti teavo:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Notranja napaka zaradi AllUpgrade." -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Notranja napaka zaradi AllUpgrade." -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, fuzzy, c-format msgid "Couldn't find task %s" msgstr "Ni mogoe najti paketa %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Ni mogoe najti paketa %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Opomba: izbran %s namesto regex '%s'\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "vendar bo paket %s nameen" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1077,7 +1082,7 @@ msgstr "" "Nereene odvisnosti. Poskusite 'apt-get -f install' brez paketov (ali " "podajte reitev)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1088,126 +1093,126 @@ msgstr "" "nemogo poloaj, e uporabljate nestabilno izdajo pa, da nekateri zahtevani " "paketi e niso ustvarjeni ali preneeni iz Prihajajoe." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Pokvarjeni paketi" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Naslednji dodatni paketi bodo nameeni:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Predlagani paketi:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Priporoeni paketi:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Preraunavanje nadgradnje ... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Spodletelo" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Opravljeno" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 #, fuzzy msgid "Internal error, problem resolver broke stuff" msgstr "Notranja napaka zaradi AllUpgrade." -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "Izvornega paketa za %s ni mogoe najti" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, fuzzy, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Odpakiranje e odpakiranih izvornih paketov v %s preskoeno\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "Nimate dovolj prostora na %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, 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:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Potrebno je dobiti %sB izvornih arhivov.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Dobi vir %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Nekaterih arhivov ni mogoe dobiti." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Odpakiranje e odpakiranih izvornih paketov v %s preskoeno\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Ukaz odpakiranja '%s' ni uspel.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Ukaz gradnje '%s' ni uspel.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Otroki proces ni uspel" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 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:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Ni mogoe dobiti informacij o odvisnostih za gradnjo za %s" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s nima odvisnosti za gradnjo.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "%s odvisnosti za %s ni mogoe zadostiti, ker ni mogoe najti paketa %s" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1216,31 +1221,31 @@ msgstr "" "%s odvisnosti za %s ni mogoe zadostiti, ker nobena razliica paketa %s ne " "more zadostiti zahtevi po razliici" -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2551 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Ni mogoe zadostiti %s odvisnosti za %s. Nameen paket %s je preve nov" -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Ni mogoe zadostiti %s odvisnosti za %s. %s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Odvisnostim za gradnjo %s ni mogoe zadostiti." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Obdelava odvisnosti za gradnjo ni uspela" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Podprti moduli:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1323,7 +1328,7 @@ msgstr "" "sources.list(5) in apt.conf(5).\n" " APT ima mo Super Krave.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1562,9 +1567,13 @@ msgstr "Prepi msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Ni mogoe brati %s" @@ -1594,9 +1603,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "Podatki in zaasni imeniki morajo biti v istem datotenem sistemu" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Branje seznama paketov" @@ -1698,12 +1707,12 @@ msgstr "Ni mogo msgid "Unparsable control file" msgstr "Nadzorne datoteke ni mogoe razleniti" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Ni mogoe brati zbirke %s na CD-ROM-u" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1711,21 +1720,21 @@ msgstr "" "Uporabite apt-cdrom, e elite, da APT prepozna CD. apt-get update ne more " "sam dodati novih CD-jev" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Napaen C" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Ni mogoe odklopiti CD-ROM-a v %s, ker je morda e v uporabi." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 #, fuzzy msgid "Disk not found." msgstr "Datoteke ni mogoe najti" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Datoteke ni mogoe najti" @@ -1743,34 +1752,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "Napaen URI. Lokalni URI-ji se morajo zaeti z /" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Prijavljam se" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Ni mogoe ugotoviti imena gostitelja" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Ni mogoe ugotoviti lokalnega imena" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Strenik je zavrnil nao povezavo in sporoil: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER ni uspel, strenik je odgovoril: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS ni uspel, strenik je odgovoril: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1778,114 +1787,114 @@ msgstr "" "Naveden je bil proxy-strenik, ne pa tudi prijavna skripta. Acquire::ftp::" "ProxyLogin je prazen." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Ukaz prijavne skripte '%s' ni uspel, strenik je odgovoril: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE ni uspel, strenik je odgovoril: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Povezava potekla" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Strenik je zaprl povezavo" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Napaka pri branju" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Odgovor je prekorail vmesnik." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Okvara protokola" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Napaka pri pisanju" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Ni mogoe ustvariti vtinice" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Ni mogoe priklopiti podatkovne vtinice. Povezava potekla." -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Ni mogoe priklopiti pasivne vtinice." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo ni mogel dobiti posluajoe vtinice" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Ni mogoe povezati vtinice" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Ni mogoe posluati na vtinici" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Ni mogoe ugotoviti imena vtinice" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Ni mogoe poslati ukaza PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Neznan naslov druine %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT ni uspel, strenik je odgovoril: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Povezava podatkovne vtinice potekla" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Ni mogoe sprejeti povezave" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Teava pri razprevanju datoteke" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Ni mogoe dobiti datoteke, strenik je odgovoril '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Podatkovna vtinica je potekla" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Prenos podatkov ni uspel, strenik je odgovoril '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Poizvedba" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Ni mogoe zagnati " @@ -1994,94 +2003,94 @@ msgstr "Ni mogo msgid "Read error from %s process" msgstr "Napaka pri branju iz procesa %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "akanje na glave" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Dobljena je ena vrstica glave preko %u znakov" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Napana vrstica glave" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "Strenik HTTP je poslal napano glavo odgovora" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Strenik HTTP je poslal glavo z napano dolino vsebine" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Strenik HTTP je poslal glavo z napanim obsegom vsebine" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Ta strenik HTTP ima pokvarjen obseg podpore" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Neznana oblika datuma" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Izbira ni uspela" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "as za povezavo se je iztekel" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Napaka pri pisanju v izhodno datoteko" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Napaka pri pisanju v datoteko" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Napaka pri pisanju v datoteko" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "Napaka pri branju oddaljene in zaprte povezave s strenika " -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Napaka pri branju s strenika" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 #, fuzzy msgid "Failed to truncate file" msgstr "Napaka pri pisanju datoteke %s" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Napani podatki glave" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Povezava ni uspela" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Notranja napaka" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "mmap prazne datoteke ni mogo" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Ni mogoe narediti mmap %lu bajtov" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2229,13 +2238,13 @@ msgstr "Napa msgid "Unable to stat the mount point %s" msgstr "Ni mogoe doloiti priklopne toke %s" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Ni mogoe spremeniti v %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Ni mogoe doloiti CD-ROM-a" @@ -2264,51 +2273,50 @@ msgstr "Ni mogo msgid "Waited for %s but it wasn't there" msgstr "akal, a %s ni bil tam" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Napaka pri razlenjenosti podprocesa %s." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Napaka pri razlenjenosti podprocesa %s." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Podproces %s je vrnil kodo napake (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Podproces %s se je nepriakovano zakljuil" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Ne morem odpreti datoteke %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "piem, e vedno %lu za pisanje, a ni mogoe" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Teava pri zapiranju datoteke" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Teava pri odvezovanju datoteke" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Teava pri usklajevanju datoteke" @@ -2401,17 +2409,17 @@ msgstr "Razli msgid "Dependency generation" msgstr "Ustvarjanje odvisnosti" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 #, fuzzy msgid "Reading state information" msgstr "Spajanje informacij na voljo" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "Ni mogoe odprti %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "Napaka pri pisanju datoteke %s" @@ -2451,32 +2459,32 @@ msgstr "Napa msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Napana vrstica %lu v seznamu virov %s (razlenitev distribucije)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Odpiram %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Vrstica %u v seznamu virov %s je predolga." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Napana vrstica %u v seznamu virov %s (vrsta)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, fuzzy, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Vrsta '%s' v vrstici %u v seznamu virov %s ni znana" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Napana vrstica %u v seznamu virov %s (ID ponudnika)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2499,7 +2507,7 @@ msgid "" msgstr "" "Paket %s mora biti ponovno nameen, vendar ne morem najti arhiva zanj." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2507,11 +2515,11 @@ msgstr "" "Napaka. pkgProblemResolver::Napake pri razreitvi, ki so jih morda " "povzroili zadrani paketi." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "Ni mogoe popraviti teav. Imate zadrane pakete." -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2531,12 +2539,12 @@ msgstr "Manjka imenik z arhivi %spartial." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, fuzzy, c-format msgid "Retrieving file %li of %li" msgstr "Branje seznama datotek" @@ -2559,16 +2567,16 @@ msgstr "" " '%s'\n" "v enoto '%s' in pritisnite enter\n" -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Paketni sistem '%s' ni podprt" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Ni mogoe ugotoviti ustrezne vrste paketnega sistema" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Ni mogoe doloiti %s." @@ -2585,134 +2593,133 @@ msgstr "Ni mogo msgid "You may want to run apt-get update to correct these problems" msgstr "e elite odpraviti teave, poskusite zagnati apt-get update." -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "Napaen zapis v datoteki z nastavitvami. Ni glave paketa" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Ni mogoe razumeti vrste zaponke %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Prioriteta zaponke ni doloena ali pa je ni." -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Predpomnilnik ima neustrezen sistem razliic" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Prilo je do napake pri obdelavi %s (Nov paket)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Prilo je do napake pri obdelavi %s (Uporabi paket 1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Prilo je do napake pri obdelavi %s (Nova razliica datoteke 1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Prilo je do napake pri obdelavi %s (Uporabi paket 2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Prilo je do napake pri obdelavi %s (Nova razliica datoteke 1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Prilo je do napake pri obdelavi %s (Nova razliica 1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Prilo je do napake pri obdelavi %s (Uporabi paket 3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Prilo je do napake pri obdelavi %s (Nova razliica 2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Prilo je do napake pri obdelavi %s (Nova razliica datoteke 1)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "Uau, presegli ste tevilo imen paketov, ki jih zmore APT." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Uau, presegli ste tevilo razliic, ki jih zmore APT." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 #, fuzzy msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "Uau, presegli ste tevilo razliic, ki jih zmore APT." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Uau, presegli ste tevilo odvisnosti, ki jih zmore APT." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Prilo je do napake pri obdelavi %s (Najdi paket)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Prilo je do napake pri obdelavi %s (Zberi dobavitelje datotek)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Paketa %s %s ni bilo mogoe najti med obdelavo odvisnosti" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Ni mogoe doloiti seznama izvornih paketov %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Zbiranje dobaviteljev datotek" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "Napaka IO pri shranjevanju predpomnilnika virov" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "preimenovanje spodletelo, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "Neujemanje vsote MD5" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 #, fuzzy msgid "Hash Sum mismatch" msgstr "Neujemanje vsote MD5" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2721,7 +2728,7 @@ msgstr "" "Ni bilo mogoe najti datoteke za paket %s. Morda boste morali rono " "popraviti ta paket (zaradi manjkajoega arhiva)." -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2730,7 +2737,7 @@ msgstr "" "Ni bilo mogoe najti datoteke za paket %s. Morda boste morali rono " "popraviti ta paket." -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2738,19 +2745,17 @@ msgstr "" "Datoteke s kazali paketov so pokvarjene. Brez imena datotek: polje alu paket " "%s." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Neujemanje velikosti" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Ni mogoe razleniti paketne datoteke %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Opomba: izbran %s namesto %s \n" @@ -2764,7 +2769,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Ponudnikov blok %s ne vsebuje podpisa" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2773,65 +2778,65 @@ msgstr "" "Uporabljam CD-ROM priklopno toko %s\n" "Priklapljam CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Identificiram.." -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Shranjena oznaka: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 #, fuzzy msgid "Unmounting CD-ROM...\n" msgstr "Odklapljam CD-ROM..." -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Uporabljam CD-ROM priklopno toko %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Odklapljam CD-ROM\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "akam na medij...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Priklapljam CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Preverjam medij za datoteke s kazalom..\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, fuzzy, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" "zu signatures\n" msgstr "Nael sem %i kazal paketov, %i kazal izvornih paketov in %i podpisov\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, fuzzy, c-format msgid "Found label '%s'\n" msgstr "Shranjena oznaka: %s \n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "To ni veljavno ime, poskusite e enkrat.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2840,34 +2845,34 @@ msgstr "" "Ta medij se imenuje: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Kopiranje seznama paketov..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Piem nov seznam virov\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Izvorni vnosi za ta medij so:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Zapisal %i zapisov.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Zapisal %i zapisov z %i manjkajoimi datotekami.\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Zapisal %i zapisov z %i neujemajoimi datotekami.\n" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -2956,7 +2961,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Imenika seznamov ni mogoe zakleniti" diff --git a/po/sv.po b/po/sv.po index 1f7b80cca..fc04f86c3 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+0200\n" "PO-Revision-Date: 2009-03-03 23:15+0100\n" "Last-Translator: Daniel Nylander <po@danielnylander.se>\n" "Language-Team: Swedish <debian-l10n-swedish@debian.org>\n" @@ -22,7 +22,7 @@ msgstr "" "Paketet %s med versionen %s har ett beroende som inte kan tillfredsställas:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -92,7 +92,7 @@ msgstr "Totalt bortkastat utrymme: " msgid "Total space accounted for: " msgstr "Totalt utrymme som kan redogöras för: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Paketfilen %s är inte synkroniserad." @@ -150,14 +150,14 @@ msgstr " Versionstabell:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -231,15 +231,15 @@ msgstr "" " -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" "Se manualsidorna för apt-cache(8) och apt.conf(5) för mer information.\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "Ange ett namn för denna skiva, exempelvis \"Debian 2.1r1 Disk 1\"" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Mata in en skiva i enheten och tryck på Enter" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Upprepa proceduren för resten av cd-skivorna i din uppsättning." @@ -304,7 +304,7 @@ msgstr "" " -c=? Läs denna konfigurationsfil.\n" " -o=? Ställ in en godtycklig konfigurationsflagga, t.ex -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Kunde inte skriva till %s" @@ -653,7 +653,7 @@ msgstr "Misslyckades med att byta namn på %s till %s" msgid "Y" msgstr "J" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Fel vid kompilering av reguljärt uttryck - %s" @@ -754,122 +754,122 @@ msgstr "%lu att ta bort och %lu att inte uppgradera.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu är inte helt installerade eller borttagna.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Korrigerar beroenden...." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " misslyckades." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Kunde inte korrigera beroenden" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Kunde inte minimera uppgraderingsuppsättningen" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Färdig" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "" "Du kan möjligen rätta till dessa genom att köra \"apt-get -f install\"." -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Otillfredsställda beroenden. Prova med -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "VARNING: Följande paket kunde inte autentiseras!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Autentiseringsvarning åsidosatt.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Installera dessa paket utan verifiering [j/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Några av paketen kunde inte autentiseras" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Internt fel. InstallPackages anropades med trasiga paket!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "Paketen måste tas bort men \"Remove\" är inaktiverat." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Internt fel. Sorteringen färdigställdes inte" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Kunde inte låsa hämtningskatalogen" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Listan över källor kunde inte läsas." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 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:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Behöver hämta %sB/%sB arkiv.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Behöver hämta %sB arkiv.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kunde inte fastställa ledigt utrymme i %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, 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:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Ja, gör som jag säger!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -881,28 +881,28 @@ msgstr "" " ?] " # Visas då man svarar nej -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Avbryter." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Vill du fortsätta [J/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Misslyckades med att hämta %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Misslyckades med att hämta vissa filer" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Hämtningen färdig i \"endast-hämta\"-läge" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -910,48 +910,48 @@ msgstr "" "Vissa arkiv kunte inte hämtas. Prova att köra \"apt-get update\" eller med --" "fix-missing." -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 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:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Kunde inte korrigera saknade paket." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Avbryter installationen." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, 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:1066 +#: cmdline/apt-get.cc:1068 #, 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:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Installerat]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Du bör uttryckligen ange ett att installera." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -962,70 +962,76 @@ 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:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Dock kan följande paket ersätta det:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Paketet %s har ingen installationskandidat" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s är redan den senaste versionen.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Utgåvan \"%s\" för \"%s\" hittades inte" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Version \"%s\" för \"%s\" hittades inte" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Vald version %s (%s) för %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Uppdateringskommandot tar inga argument" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Kunde inte låsa listkatalogen" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 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:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" "Följande paket har installerats automatiskt och är inte längre nödvändiga:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"Följande paket har installerats automatiskt och är inte längre nödvändiga:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Använd \"apt-get autoremove\" för att ta bort dem." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1043,44 +1049,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 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:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "Internt fel, AutoRemover förstörde något" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Internt fel, AllUpgrade förstörde något" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Kunde inte hitta funktionen %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Kunde inte hitta paketet %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, 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:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s är satt till manuellt installerad.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" "Du kan möjligen rätta till detta genom att köra \"apt-get -f install\":" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1088,7 +1094,7 @@ msgstr "" "Otillfredsställda beroenden. Prova med \"apt-get -f install\" utan paket " "(eller ange en lösning)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1100,115 +1106,115 @@ msgstr "" "att några nödvändiga paket ännu inte har skapats eller flyttats\n" "ut från \"Incoming\"." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Trasiga paket" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Följande ytterligare paket kommer att installeras:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Föreslagna paket:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Rekommenderade paket:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Beräknar uppgradering... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Misslyckades" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Färdig" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Internt fel, problemlösaren förstörde någonting" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, 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:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Hoppar över redan hämtade filen \"%s\"\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, 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:2192 +#: cmdline/apt-get.cc:2229 #, 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:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Behöver hämta %sB källkodsarkiv.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Hämtar källkoden %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Misslyckades med att hämta vissa arkiv." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Uppackningskommandot \"%s\" misslyckades.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, 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:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Byggkommandot \"%s\" misslyckades.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Barnprocessen misslyckades" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 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:2353 +#: cmdline/apt-get.cc:2390 #, 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:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s har inga byggberoenden.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1217,7 +1223,7 @@ msgstr "" "%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " "hittas" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1226,32 +1232,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:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, 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:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Byggberoenden för %s kunde inte tillfredsställas." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Misslyckades med att behandla byggberoenden" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Moduler som stöds:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1335,7 +1341,7 @@ msgstr "" "för mer information och flaggor.\n" " Denna APT har Speciella Ko-Krafter.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1579,9 +1585,13 @@ msgstr "Skriv över paketträff utan version för %s" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Kunde inte läsa %s" @@ -1611,9 +1621,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "Katalogerna info och temp måste vara på samma filsystem" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Läser paketlistor" @@ -1717,12 +1727,12 @@ msgstr "Misslyckades med att hitta en giltig control-fil" msgid "Unparsable control file" msgstr "Kunde inte tolka control-filen" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Kunde inte läsa cd-rom-databasen %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1730,20 +1740,20 @@ msgstr "" "Använd apt-cdrom för att APT ska känna igen denna cd. apt-get update kan " "inte användas för att lägga till skivor" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Fel cd-rom" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Kunde inte avmontera cd-rom:en i %s, den kanske fortfarande används." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Skivan hittades inte." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Filen hittades inte" @@ -1761,34 +1771,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "Ogiltig URI, lokala URI:er får inte börja med //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Loggar in" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Kunde inte fastställa namnet på partnern" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Kunde inte fastställa det lokala namnet" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Servern nekade anslutningen och sade: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER misslyckades, servern sade: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS misslyckades, servern sade: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1796,115 +1806,115 @@ msgstr "" "En mellanserver (proxy) angavs men inget inloggningsskript, Acquire::ftp::" "ProxyLogin är tom." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Kommandot \"%s\" i inloggningsskriptet misslyckades, servern sade: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE misslyckades, servern sade: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Tidsgränsen för anslutningen överskreds" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Servern stängde anslutningen" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Läsfel" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Ett svar spillde bufferten." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Protokollet skadat" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Skrivfel" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Kunde inte skapa ett uttag (socket)" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Kunde inte ansluta datauttaget (socket), inget svar inom tidsgräns" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Kunde inte ansluta passivt uttag (socket)." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo kunde inte få tag i ett lyssnande uttag (socket)" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Kunde inte binda ett uttag (socket)" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Kunde inte lyssna på uttaget (socket)" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Kunde inte fastställa uttagets namn (socket)" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Kunde inte sända PORT-kommando" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Okänd adressfamilj %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT misslyckades, servern sade: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Anslutet datauttag (socket) fick inte svar inom tidsgränsen" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Kunde inte ta emot anslutningen" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Problem med att lägga filen till hashtabellen" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Kunde inte hämta filen, servern sade \"%s\"" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Datauttag (socket) fick inte svar inom tidsgränsen" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Dataöverföringen misslyckades, servern sade \"%s\"" # Statusmeddelande, byter från substantiv till verb #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Frågar" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Kunde inte starta " @@ -2021,93 +2031,93 @@ msgstr "Kunde inte öppna rör för %s" msgid "Read error from %s process" msgstr "Läsfel från %s-processen" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Väntar på rubriker" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Fick en ensam rubrikrad på %u tecken" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Felaktig rubrikrad" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "Http-servern sände ett ogiltigt svarshuvud" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "Http-servern sände ett ogiltigt Content-Length-rubrik" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "Http-servern sände ett ogiltigt Content-Range-rubrik" -#: methods/http.cc:605 +#: methods/http.cc:610 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:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Okänt datumformat" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "\"Select\" misslyckades" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Anslutningen överskred tidsgränsen" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Fel vid skrivning till utdatafil" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Fel vid skrivning till fil" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Fel vid skrivning till filen" -#: methods/http.cc:883 +#: methods/http.cc:888 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:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Fel vid läsning från server" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Misslyckades med att kapa av filen" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Felaktiga data i huvud" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Anslutningen misslyckades" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Internt fel" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Kan inte utföra mmap på en tom fil" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Kunde inte utföra mmap på %lu byte" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2258,13 +2268,13 @@ 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:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Kunde inte byta till %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Kunde inte ta status på cd-romen." @@ -2293,51 +2303,50 @@ msgstr "Kunde inte erhålla låset %s" 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:455 +#: apt-pkg/contrib/fileutl.cc:456 #, 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:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Underprocessen %s råkade ut för ett segmenteringsfel." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Underprocessen %s svarade med en felkod (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Underprocessen %s avslutades oväntat" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Kunde inte öppna filen %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Problem med att stänga filen" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Problem med att länka ut filen" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Problem med att synkronisera filen" @@ -2433,16 +2442,16 @@ msgstr "Kandiderande versioner" msgid "Dependency generation" msgstr "Beroendegenerering" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Läser tillståndsinformation" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Misslyckades med att öppna StateFile %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Misslyckades med att skriva temporär StateFile %s" @@ -2482,32 +2491,32 @@ msgstr "Rad %lu i källistan %s har fel format (Absolut dist)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Rad %lu i källistan %s har fel format (dist-tolkning)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Öppnar %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Rad %u är för lång i källistan %s." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Rad %u i källistan %s har fel format (typ)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Typ \"%s\" är inte känd på rad %u i listan över källor %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Rad %u i källistan %s har fel format (leverantörs-id)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2531,7 +2540,7 @@ msgid "" msgstr "" "Paketet %s måste installeras om, men jag kan inte hitta något arkiv för det." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2539,11 +2548,11 @@ msgstr "" "Fel, pkgProblemResolver::Resolve genererade avbrott; detta kan bero på " "tillbakahållna paket." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "Kunde inte korrigera problemen, du har hållt tillbaka trasiga paket." -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2563,12 +2572,12 @@ msgstr "Arkivkatalogen %spartial saknas." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Hämtar fil %li av %li (%s återstår)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Hämtar fil %li av %li" @@ -2589,17 +2598,17 @@ 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:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Paketsystemet \"%s\" stöds inte" # -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Kunde inte fastställa en lämplig paketsystemstyp" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Kunde inte ta status på %s." @@ -2617,135 +2626,134 @@ 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\"" # "Package" är en sträng i konfigurationsfilen -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "Ogiltig post i konfigurationsfilen, \"Package\"-rubriken saknas" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Förstod inte nåltypen %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Prioritet ej angiven (eller noll) för nål" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Cachen har ett inkompatibelt versionssystem" # NewPackage etc. är funktionsnamn -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Fel uppstod vid hantering av %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Fel uppstod vid hantering av %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Fel uppstod vid hantering av %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Fel uppstod vid hantering av %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Fel uppstod vid hantering av %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Fel uppstod vid hantering av %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Fel uppstod vid hantering av %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Fel uppstod vid hantering av %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Fel uppstod vid hantering av %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "Grattis, du överskred antalet paketnamn som denna APT kan hantera." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Grattis, du överskred antalet versioner som denna APT kan hantera." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "Grattis, du överskred antalet beskrivningar som denna APT kan hantera." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Grattis, du överskred antalet beroenden som denna APT kan hantera." # NewPackage etc. är funktionsnamn -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Fel uppstod vid hantering av %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Fel uppstod vid hantering av %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Paketet %s %s hittades inte när filberoenden hanterades" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Kunde inte ta status på källkodspaketlistan %s" # Bättre ord? -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Samlar filtillhandahållningar" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "In-/utfel vid lagring av källcache" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "namnbyte misslyckades, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5-kontrollsumman stämmer inte" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Hash-kontrollsumman stämmer inte" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "Det finns ingen öppen nyckel tillgänglig för följande nyckel-id:n:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2754,7 +2762,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:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2763,25 +2771,23 @@ 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:1331 +#: apt-pkg/acquire-item.cc:1316 #, 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:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Storleken stämmer inte" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Kunde inte tolka paketfilen %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Observera, väljer %s istället för %s\n" @@ -2795,7 +2801,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Leverantörsblocket %s saknar fingeravtryck" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2804,42 +2810,42 @@ msgstr "" "Använder cd-rom-monteringspunkten %s\n" "Monterar cd-rom\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Identifierar.. " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Lagrad etikett: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "Avmonterar cd-rom...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Använder cd-rom-monteringspunkten %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Avmonterar cd-rom\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Väntar på skiva...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Monterar cd-rom...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Söker efter indexfiler på skivan...\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2848,22 +2854,22 @@ msgstr "" "Hittade %zu paketindex, %zu källkodsindex, %zu översättningsindex och %zu " "signaturer\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Hittade etiketten \"%s\"\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Namnet är ogiltigt, försök igen.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2872,34 +2878,34 @@ msgstr "" "Denna skiva heter: \n" "\"%s\"\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Kopierar paketlistor..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Skriver ny källista\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Poster i källistan för denna skiva:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Skrev %i poster.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Skrev %i poster med %i saknade filer.\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, 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" @@ -2987,7 +2993,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Kunde inte låsa listkatalogen" diff --git a/po/th.po b/po/th.po index a6168da07..968ff8b2c 100644 --- a/po/th.po +++ b/po/th.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -22,7 +22,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "แพกเกจ %s รุ่น %s ขาดแพกเกจที่ต้องใช้:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -92,7 +92,7 @@ msgstr "พื้นที่สำรองทั้งหมด: " msgid "Total space accounted for: " msgstr "พื้นที่ที่นับรวมทั้งหมด: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "ข้อมูลแฟ้ม Package %s ไม่ตรงกับความเป็นจริง" @@ -150,14 +150,14 @@ msgstr " ตารางรุ่น:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -232,15 +232,15 @@ msgstr "" " -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" "กรุณาอ่านข้อมูลเพิ่มเติมจาก manual page apt-cache(8) และ apt.conf(5)\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "กรุณาตั้งชื่อแผ่น เช่น 'Debian 4.0r1 Disk 1'" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "กรุณาใส่แผ่นลงในไดรว์แล้วกด enter" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "ทำเช่นนี้ต่อไปกับแผ่นซีดีที่เหลือในชุด" @@ -305,7 +305,7 @@ msgstr "" " -c=? อ่านแฟ้มค่าตั้งนี้\n" " -o=? กำหนดตัวเลือกค่าตั้งเป็นรายตัว เช่น -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "ไม่สามารถเขียนลงแฟ้ม %s" @@ -643,7 +643,7 @@ msgstr "ไม่สามารถเปลี่ยนชื่อ %s ไป msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "คอมไพล์นิพจน์เรกิวลาร์ไม่สำเร็จ - %s" @@ -744,118 +744,118 @@ msgstr "ถอดถอน %lu และไม่ปรับรุ่น %lu\n" msgid "%lu not fully installed or removed.\n" msgstr "ติดตั้งหรือถอดถอนไม่ครบ %lu\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "กำลังแก้ปัญหาความขึ้นต่อกันระหว่างแพกเกจ..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " ล้มเหลว" -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "ไม่สามารถแก้ปัญหาความขึ้นต่อกันระหว่างแพกเกจได้" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "ไม่สามารถจำกัดรายการปรับรุ่นให้น้อยที่สุดได้" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " เสร็จแล้ว" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "คุณอาจต้องเรียก `apt-get -f install' เพื่อแก้ปัญหาเหล่านี้" -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "รายการแพกเกจที่ต้องใช้ไม่ครบ กรุณาลองใช้ตัวเลือก -f" -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "*คำเตือน*: แพกเกจต่อไปนี้ไม่สามารถยืนยันแหล่งต้นตอได้!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "จะข้ามการเตือนเกี่ยวกับการยืนยันแหล่งต้นตอ\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "จะติดตั้งแพกเกจเหล่านี้โดยไม่ตรวจสอบหรือไม่ [y/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "มีบางแพกเกจไม่สามารถยืนยันแหล่งต้นตอได้" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "มีปัญหาบางประการ และมีการใช้ -y โดยไม่ระบุ --force-yes" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "เกิดข้อผิดพลาดภายใน: มีการเรียก InstallPackages ด้วยแพกเกจที่เสีย!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "มีแพกเกจที่จำเป็นต้องถอดถอน แต่ถูกห้ามการถอดถอนไว้" -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "ข้อผิดพลาดภายใน: การเรียงลำดับไม่เสร็จสิ้น" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "ไม่สามารถล็อคไดเรกทอรีดาวน์โหลด" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "ไม่สามารถอ่านรายชื่อแหล่งแพกเกจได้" -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "แปลกประหลาด.. ขนาดไม่ตรงกัน กรุณาอีเมลแจ้ง apt@packages.debian.org" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "ต้องดาวน์โหลดแพกเกจ %sB/%sB\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "ต้องดาวน์โหลดแพกเกจ %sB\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "หลังจากการกระทำนี้ ต้องใช้เนื้อที่บนดิสก์อีก %sB\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "หลังจากการกระทำนี้ เนื้อที่บนดิสก์จะว่างเพิ่มอีก %sB\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "ไม่สามารถคำนวณพื้นที่ว่างใน %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s" -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Trivial Only ถูกกำหนดไว้ แต่คำสั่งนี้ไม่ใช่คำสั่งเล็กน้อย" -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Yes, do as I say!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -866,28 +866,28 @@ msgstr "" "หากต้องการดำเนินการต่อ ให้พิมพ์ประโยค '%s'\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "เลิกทำ" -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "คุณต้องการจะดำเนินการต่อไปหรือไม่ [Y/n]?" -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "ไม่สามารถดาวน์โหลด %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "ดาวน์โหลดบางแฟ้มไม่สำเร็จ" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "ดาวน์โหลดสำเร็จแล้ว และอยู่ในโหมดดาวน์โหลดอย่างเดียว" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -895,47 +895,47 @@ msgstr "" "ดาวน์โหลดบางแพกเกจไม่สำเร็จ บางที การเรียก apt-get update หรือลองใช้ตัวเลือก --fix-" "missing อาจช่วยได้" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "ยังไม่รองรับ --fix-missing พร้อมกับการเปลี่ยนแผ่น" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "ไม่สามารถแก้ปัญหาแพกเกจที่ขาดหายได้" -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "จะล้มเลิกการติดตั้ง" -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "หมายเหตุ: จะเลือก %s แทน %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "จะข้าม %s เนื่องจากแพกเกจติดตั้งไว้แล้ว และไม่มีการกำหนดให้ปรับรุ่น\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "แพกเกจ %s ไม่ได้ติดตั้งไว้ จึงไม่มีการถอดถอน\n" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "แพกเกจ %s เป็นแพกเกจเสมือนที่ตระเตรียมโดย:\n" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [ติดตั้งอยู่]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "คุณควรเจาะจงเลือกแพกเกจใดแพกเกจหนึ่งเพื่อติดตั้ง" -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -945,68 +945,73 @@ msgstr "" "ไม่มีแพกเกจ %s ให้ใช้ติดตั้ง แต่ถูกอ้างถึงโดยแพกเกจอื่น\n" "แพกเกจนี้อาจขาดหายไป หรือตกรุ่นไปแล้ว หรืออยู่ในแหล่งอื่น\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "อย่างไรก็ดี แพกเกจต่อไปนี้ได้แทนที่แพกเกจดังกล่าวไปแล้ว:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "แพกเกจ %s ไม่มีรุ่นที่จะใช้ติดตั้ง" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "ไม่สามารถติดตั้ง %s ซ้ำได้ เนื่องจากไม่สามารถดาวน์โหลดได้\n" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s เป็นรุ่นใหม่ล่าสุดอยู่แล้ว\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "ไม่พบรุ่นย่อย '%s' ของ '%s'" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "ไม่พบรุ่น '%s' ของ '%s'" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "เลือกรุ่น %s (%s) สำหรับ %s แล้ว\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "คำสั่ง update ไม่รับอาร์กิวเมนต์เพิ่ม" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "ไม่สามารถล็อคไดเรกทอรีรายชื่อแพกเกจ" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "apt ถูกกำหนดไม่ให้มีการลบใดๆ จึงไม่สามารถดำเนินการถอดถอนอัตโนมัติได้" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "แพกเกจต่อไปนี้ถูกติดตั้งแบบอัตโนมัติไว้ และไม่ต้องใช้อีกต่อไปแล้ว:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "แพกเกจต่อไปนี้ถูกติดตั้งแบบอัตโนมัติไว้ และไม่ต้องใช้อีกต่อไปแล้ว:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "ใช้ 'apt-get autoremove' เพื่อลบแพกเกจดังกล่าวได้" -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1024,43 +1029,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "ข้อมูลต่อไปนี้อาจช่วยแก้ปัญหาได้:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "เกิดข้อผิดพลาดภายใน: AutoRemover ทำความเสียหาย" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "เกิดข้อผิดพลาดภายใน: AllUpgrade ทำความเสียหาย" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "ไม่พบงาน %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "ไม่พบแพกเกจ %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "หมายเหตุ: จะเลือก %s สำหรับนิพจน์เรกิวลาร์ '%s'\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "กำหนด %s ให้เป็นการติดตั้งแบบเลือกเองแล้ว\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "คุณอาจเรียก `apt-get -f install' เพื่อแก้ปัญหานี้ได้:" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1068,7 +1073,7 @@ msgstr "" "มีปัญหาความขึ้นต่อกันระหว่างแพกเกจ กรุณาลองใช้ 'apt-get -f install' โดยไม่ระบุแพกเกจ " "(หรือจะระบุทางแก้ก็ได้)" -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1079,122 +1084,122 @@ msgstr "" "หรือถ้าคุณกำลังใช้รุ่น unstable ก็เป็นไปได้ว่าแพกเกจที่จำเป็นบางรายการ\n" "ยังไม่ถูกสร้างขึ้น หรือถูกย้ายออกจาก Incoming" -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "แพกเกจมีปัญหา" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "จะติดตั้งแพกเกจเพิ่มเติมต่อไปนี้:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "แพกเกจที่แนะนำ:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "แพกเกจที่ควรใช้ร่วมกัน:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "กำลังคำนวณการปรับรุ่น... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "ล้มเหลว" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "เสร็จแล้ว" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "เกิดข้อผิดพลาดภายใน: กลไกการแก้ปัญหาทำความเสียหาย" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "ต้องระบุแพกเกจอย่างน้อยหนึ่งแพกเกจที่จะดาวน์โหลดซอร์สโค้ด" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "ไม่พบแพกเกจซอร์สโค้ดสำหรับ %s" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "จะข้ามแฟ้ม '%s' ที่ดาวน์โหลดไว้แล้ว\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB/%sB\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "ดาวน์โหลดซอร์ส %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "ไม่สามารถดาวน์โหลดบางแฟ้ม" -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "จะข้ามการแตกซอร์สของซอร์สที่แตกไว้แล้วใน %s\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "คำสั่งแตกแฟ้ม '%s' ล้มเหลว\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "กรุณาตรวจสอบว่าได้ติดตั้งแพกเกจ 'dpkg-dev' แล้ว\n" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "คำสั่ง build '%s' ล้มเหลว\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "โพรเซสลูกล้มเหลว" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "ต้องระบุแพกเกจอย่างน้อยหนึ่งแพกเกจที่จะตรวจสอบสิ่งที่ต้องการสำหรับการ build" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "ไม่สามารถอ่านข้อมูลสิ่งที่ต้องการสำหรับการ build ของ %s" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s ไม่ต้องการสิ่งใดสำหรับ build\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, 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:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1203,30 +1208,30 @@ msgstr "" "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่มีแพกเกจ %s " "รุ่นที่จะสอดคล้องกับความต้องการรุ่นของแพกเกจได้" -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2551 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้: แพกเกจ %s ที่ติดตั้งไว้ใหม่เกินไป" -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้: %s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "ไม่สามารถติดตั้งสิ่งที่จำเป็นสำหรับการ build ของ %s ได้" -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "ติดตั้งสิ่งที่จำเป็นสำหรับการ build ไม่สำเร็จ" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "มอดูลที่รองรับ:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1310,7 +1315,7 @@ msgstr "" "และ apt.conf(5)\n" " APT นี้มีพลังของ Super Cow\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1546,9 +1551,13 @@ msgstr "พบแพกเกจที่เขียนทับโดยไม msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "ไม่สามารถอ่าน %s" @@ -1578,9 +1587,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "ไดเรกทอรี info และ temp ต้องอยู่ในระบบแฟ้มเดียวกัน" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "กำลังอ่านรายชื่อแพกเกจ" @@ -1682,32 +1691,32 @@ msgstr "ไม่พบแฟ้มควบคุมที่ใช้การ msgid "Unparsable control file" msgstr "ไม่สามารถแจงแฟ้มควบคุมได้" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "ไม่สามารถอ่านฐานข้อมูลซีดีรอม %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" msgstr "" "กรุณาใช้ apt-cdrom เพื่อให้ APT รู้จักซีดีรอมนี้ apt-get update ไม่สามารถใช้เพิ่มซีดีรอมใหม่ได้" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "ซีดีรอมผิดแผ่น" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "ไม่สามารถเลิกเมานท์ซีดีรอมใน %s แผ่นอาจกำลังถูกใช้งานอยู่" -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "ไม่พบแผ่น" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "ไม่พบแฟ้ม" @@ -1725,147 +1734,147 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "URI ไม่ถูกต้อง URI ของแฟ้มในเครื่องต้องขึ้นต้นด้วย //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "เข้าระบบ" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "ไม่สามารถอ่านชื่อของอีกฝ่ายได้" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "ไม่สามารถอ่านชื่อของเครื่องนี้ได้" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "เซิร์ฟเวอร์ปฏิเสธการเชื่อมต่อโดยรายงานว่า: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." msgstr "มีการระบุพร็อกซี แต่ไม่มีสคริปต์สำหรับเข้าระบบ ค่า Acquire::ftp:ProxyLogin ว่างเปล่า" -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "คำสั่งสคริปต์เข้าระบบ '%s' ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "หมดเวลารอเชื่อมต่อ" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "เซิร์ฟเวอร์ปิดการเชื่อมต่อ" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "การอ่านข้อมูลผิดพลาด" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "คำตอบท่วมบัฟเฟอร์" -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "มีความเสียหายของโพรโทคอล" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "การเขียนข้อมูลผิดพลาด" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "ไม่สามารถสร้างซ็อกเก็ต" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "ไม่สามารถเชื่อมต่อซ็อกเก็ตข้อมูล เนื่องจากหมดเวลาคอย" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "ไม่สามารถเชื่อมต่อซ็อกเกตแบบ passive" -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo ไม่สามารถนำซ็อกเก็ตที่รอรับการเชื่อมต่อมาใช้" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "ไม่สามารถ bind ซ็อกเก็ต" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "ไม่สามารถ listen ที่ซ็อกเก็ต" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "ไม่สามารถระบุชื่อซ็อกเก็ต" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "ไม่สามารถส่งคำสั่ง PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "ไม่รู้จักตระกูลที่อยู่ %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT ล้มเหลว เซิร์ฟเวอร์ตอบว่า: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "หมดเวลารอเชื่อมต่อซ็อกเก็ตข้อมูล" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "ไม่สามารถรับการเชื่อมต่อ" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "เกิดปัญหาขณะคำนวณค่าแฮชของแฟ้ม" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "ไม่สามารถดาวน์โหลดแฟ้ม เซิร์ฟเวอร์ตอบว่า: '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "หมดเวลาคอยที่ซ็อกเก็ตข้อมูล" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "ถ่ายโอนข้อมูลไม่สำเร็จ เซิร์ฟเวอร์ตอบว่า '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "สอบถาม" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "ไม่สามารถเรียก " @@ -1973,93 +1982,93 @@ msgstr "ไม่สามารถเปิดไปป์สำหรับ %s msgid "Read error from %s process" msgstr "เกิดข้อผิดพลาดขณะอ่านจากโพรเซส %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "รอหัวข้อมูล" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "ได้รับบรรทัดข้อมูลส่วนหัวยาวเกิน %u อักขระ" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "บรรทัดข้อมูลส่วนหัวผิดพลาด" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัวตอบมาไม่ถูกต้อง" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัว Content-Length มาไม่ถูกต้อง" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "เซิร์ฟเวอร์ HTTP ส่งข้อมูลส่วนหัว Content-Range มาไม่ถูกต้อง" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "การสนับสนุน Content-Range ที่เซิร์ฟเวอร์ HTTP ผิดพลาด" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "พบรูปแบบวันที่ที่ไม่รู้จัก" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "select ไม่สำเร็จ" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "หมดเวลารอเชื่อมต่อ" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้มผลลัพธ์" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "เกิดข้อผิดพลาดขณะเขียนลงแฟ้ม" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์ ปลายทางอีกด้านหนึ่งปิดการเชื่อมต่อ" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลจากเซิร์ฟเวอร์" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "ไม่สามารถตัดท้ายแฟ้ม" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "ข้อมูลส่วนหัวผิดพลาด" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "เชื่อมต่อไม่สำเร็จ" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "ข้อผิดพลาดภายใน" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "ไม่สามารถ mmap แฟ้มเปล่า" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "ไม่สามารถสร้าง mmap ขนาด %lu ไบต์" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2206,13 +2215,13 @@ msgstr "ไม่รู้จักคำสั่ง %s" msgid "Unable to stat the mount point %s" msgstr "ไม่สามารถ stat จุดเมานท์ %s" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "ไม่สามารถเปลี่ยนไดเรกทอรีไปยัง %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "ไม่สามารถ stat ซีดีรอม" @@ -2241,51 +2250,50 @@ msgstr "ไม่สามารถล็อค %s" msgid "Waited for %s but it wasn't there" msgstr "รอโพรเซส %s แต่ตัวโพรเซสไม่อยู่" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "โพรเซสย่อย %s เกิดข้อผิดพลาดของการใช้ย่านหน่วยความจำ (segmentation fault)" -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "โพรเซสย่อย %s เกิดข้อผิดพลาดของการใช้ย่านหน่วยความจำ (segmentation fault)" -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "โพรเซสย่อย %s คืนค่าข้อผิดพลาด (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "โพรเซสย่อย %s จบการทำงานกระทันหัน" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "ไม่สามารถเปิดแฟ้ม %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "read: ยังเหลือ %lu ที่ยังไม่ได้อ่าน แต่ข้อมูลหมดแล้ว" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "write: ยังเหลือ %lu ที่ยังไม่ได้เขียน แต่ไม่สามารถเขียนได้" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "เกิดปัญหาขณะปิดแฟ้ม" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "เกิดปัญหาขณะลบแฟ้ม" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "เกิดปัญหาขณะ sync แฟ้ม" @@ -2378,16 +2386,16 @@ msgstr "รุ่นแพกเกจที่มี" msgid "Dependency generation" msgstr "สร้างลำดับความสัมพันธ์" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "กำลังอ่านข้อมูลสถานะ" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "ไม่สามารถเปิดแฟ้มสถานะ %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "ไม่สามารถเขียนแฟ้มสถานะชั่วคราว %s" @@ -2427,32 +2435,32 @@ msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล msgid "Malformed line %lu in source list %s (dist parse)" msgstr "บรรทัด %lu ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ขณะแจง dist)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "กำลังเปิด %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ยาวเกินไป" -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (ชนิด)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "ไม่รู้จักชนิด '%s' ที่บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (id ผู้ผลิต)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2475,7 +2483,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "จำเป็นต้องติดตั้งแพกเกจ %s ซ้ำ แต่หาตัวแพกเกจไม่พบ" -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2483,11 +2491,11 @@ msgstr "" "ข้อผิดพลาด: pkgProblemResolver::Resolve สร้างคำตอบที่ทำให้เกิดแพกเกจเสีย " "อาจเกิดจากแพกเกจที่ถูกกำหนดให้คงรุ่นไว้" -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "ไม่สามารถแก้ปัญหาได้ คุณได้คงรุ่นแพกเกจที่เสียอยู่ไว้" -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2505,12 +2513,12 @@ msgstr "ไม่มีไดเรกทอรีแพกเกจ %spartial" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "กำลังดาวน์โหลดแฟ้มที่ %li จาก %li (เหลืออีก %s)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "กำลังดาวน์โหลดแฟ้มที่ %li จาก %li" @@ -2530,16 +2538,16 @@ msgstr "ไม่สามารถเรียกทำงานวิธีก msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "กรุณาใส่แผ่นชื่อ: '%s' ลงในไดรว์ '%s' แล้วกด enter" -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "ไม่รองรับระบบแพกเกจ '%s'" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "ไม่สามารถระบุชนิดของระบบแพกเกจที่เหมาะสมได้" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "ไม่สามารถ stat %s" @@ -2556,164 +2564,161 @@ msgstr "ไม่สามารถแจงหรือเปิดรายช msgid "You may want to run apt-get update to correct these problems" msgstr "คุณอาจเรียก `apt-get update' เพื่อแก้ปัญหาเหล่านี้ได้" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "ระเบียนผิดรูปแบบในแฟ้มค่าปรับแต่ง: ไม่มีข้อมูลส่วนหัว 'Package'" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "ไม่เข้าใจชนิดการตรึง %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "ไม่ได้ระบุลำดับความสำคัญ (หรือค่าศูนย์) สำหรับการตรึง" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "แคชมีระบบนับรุ่นที่ไม่ตรงกัน" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนชื่อแพกเกจที่ APT สามารถรองรับได้แล้ว" -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนรุ่นแพกเกจที่ APT สามารถรองรับได้แล้ว" -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนคำบรรยายแพกเกจที่ APT สามารถรองรับได้แล้ว" -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "โอ้ คุณมาถึงขีดจำกัดจำนวนความสัมพันธ์ระหว่างแพกเกจที่ APT สามารถรองรับได้แล้ว" -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "เกิดข้อผิดพลาดขณะประมวลผล %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "ไม่พบแพกเกจ %s %s ขณะประมวลผลความขึ้นต่อแฟ้ม" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "ไม่สามารถ stat รายการแพกเกจซอร์ส %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "กำลังเก็บข้อมูลแฟ้มที่ตระเตรียมให้" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "เกิดข้อผิดพลาด IO ขณะบันทึกแคชของซอร์ส" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "เปลี่ยนชื่อไม่สำเร็จ: %s (%s -> %s)" -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5Sum ไม่ตรงกัน" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "ผลรวมแฮชไม่ตรงกัน" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "ไม่มีกุญแจสาธารณะสำหรับกุญแจหมายเลขต่อไปนี้:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, 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:1290 +#: apt-pkg/acquire-item.cc:1275 #, 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:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "แฟ้มดัชนีแพกเกจเสียหาย ไม่มีข้อมูล Filename: (ชื่อแฟ้ม) สำหรับแพกเกจ %s" -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "ขนาดไม่ตรงกัน" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "ไม่สามารถแจงแฟ้มแพกเกจ %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "หมายเหตุ: จะเลือก %s แทน %s\n" @@ -2727,7 +2732,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "บล็อคผู้ผลิต %s ไม่มีลายนิ้วมือ" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2736,42 +2741,42 @@ msgstr "" "กำลังใช้จุดเมานท์ซีดีรอม %s\n" "กำลังเมานท์ซีดีรอม\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "กำลังตรวจสอบชื่อแผ่น.. " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "ชื่อที่เก็บไว้: %s\n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "กำลังเลิกเมานท์ซีดีรอม...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "กำลังใช้จุดเมานท์ซีดีรอม %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "กำลังเลิกเมานท์ซีดีรอม\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "กำลังรอแผ่น...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "กำลังเมานท์ซีดีรอม...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "กำลังสำรวจข้อมูลในแผ่นเพื่อหาแฟ้มดัชนี..\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2780,22 +2785,22 @@ msgstr "" "พบดัชนีแพกเกจ %zu รายการ, ดัชนีซอร์ส %zu รายการ, ดัชนีคำแปล %zu รายการ และลายเซ็น %" "zu รายการ\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "พบชื่อแผ่น '%s'\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "ไม่ใช่ชื่อที่ใช้ได้ กรุณาลองใหม่\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2804,34 +2809,34 @@ msgstr "" "แผ่นนี้เรียกชื่อว่า:\n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "กำลังคัดลอกรายชื่อแพกเกจ..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "กำลังเขียนรายชื่อแหล่งแพกเกจแหล่งใหม่\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "บรรทัดรายชื่อแหล่งแพกเกจสำหรับแผ่นนี้คือ:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "เขียนแล้ว %i ระเบียน\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มผิดขนาด %i แฟ้ม\n" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "เขียนแล้ว %i ระเบียน โดยมีแฟ้มขาดหาย %i แฟ้ม และแฟ้มผิดขนาด %i แฟ้ม\n" @@ -2920,7 +2925,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "ไม่สามารถล็อคไดเรกทอรีรายชื่อแพกเกจ" diff --git a/po/tl.po b/po/tl.po index 497e9e649..fae07f2f2 100644 --- a/po/tl.po +++ b/po/tl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -25,7 +25,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Paketeng %s bersyon %s ay may kulang na dep:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -97,7 +97,7 @@ msgstr "Kabuuan ng Hindi Nagamit na puwang: " msgid "Total space accounted for: " msgstr "Kabuuan ng puwang na napag-tuosan: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Wala sa sync ang talaksan ng paketeng %s." @@ -155,14 +155,14 @@ msgstr " Talaang Bersyon:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -240,15 +240,15 @@ msgstr "" "Basahin ang pahina ng manwal ng apt-cache(8) at apt.conf(5) para sa \n" "karagdagang impormasyon\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "Bigyan ng pangalan ang Disk na ito, tulad ng 'Debian 2.1r1 Disk 1'" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Paki-pasok ang isang Disk sa drive at pindutin ang enter" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Ulitin ang prosesong ito para sa lahat ng mga CD sa inyong set." @@ -313,7 +313,7 @@ msgstr "" " -c=? Basahin ang talaksang pagkaayos na ito\n" " -o=? Itakda ang isang optiong pagkaayos, hal. -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Hindi makapagsulat sa %s" @@ -661,7 +661,7 @@ msgstr "Bigo ang pagpangalan muli ng %s tungong %s" msgid "Y" msgstr "O" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Error sa pag-compile ng regex - %s" @@ -762,125 +762,125 @@ msgstr "%lu na tatanggalin at %lu na hindi inupgrade\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu na hindi lubos na nailuklok o tinanggal.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Inaayos ang mga dependensiya..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " ay bigo." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Hindi maayos ang mga dependensiya" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Hindi mai-minimize ang upgrade set" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Tapos" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "May mga kulang na dependensiya. Subukan niyong gamitin ang -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 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:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "" "Ipina-walang-bisa ang babala tungkol sa pagka-awtentiko ng mga pakete.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Iluklok ang mga paketeng ito na walang beripikasyon [o/H]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "May mga paketeng hindi matiyak ang pagka-awtentiko" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 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:785 +#: cmdline/apt-get.cc:784 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:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Error na internal, hindi natapos ang pagsaayos na pagkasunud-sunod" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Hindi maaldaba ang directory ng download" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Hindi mabasa ang talaan ng pagkukunan (sources)." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 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:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Kailangang kumuha ng %sB/%sB ng arkibo.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Kailangang kumuha ng %sB ng arkibo.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "Hindi matantsa ang libreng puwang sa %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "Kulang kayo ng libreng puwang sa %s." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Tinakdang Trivial Only ngunit hindi ito operasyong trivial." -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Oo, gawin ang sinasabi ko!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -891,28 +891,28 @@ msgstr "" "Upang magpatuloy, ibigay ang pariralang '%s'\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Abort." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Nais niyo bang magpatuloy [O/h]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Bigo sa pagkuha ng %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "May mga talaksang hindi nakuha" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Kumpleto ang pagkakuha ng mga talaksan sa modong pagkuha lamang" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -920,48 +920,48 @@ msgstr "" "Hindi nakuha ang ilang mga arkibo, maaaring patakbuhin ang apt-get update o " "subukang may --fix-missing?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 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:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Hindi maayos ang mga kulang na pakete." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Ina-abort ang pag-instol." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Paunawa, pinili ang %s imbes na %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, 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:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Nakaluklok]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Dapat kayong mamili ng isa na iluluklok." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -972,69 +972,74 @@ msgstr "" "Maaaring nawawala ang pakete, ito'y laos na, o ito'y makukuha lamang\n" "sa ibang pinagmulan.\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Gayunpaman, ang sumusunod na mga pakete ay humahalili sa kanya:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Ang paketeng %s ay walang kandidatong maaaring instolahin" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ay pinakabagong bersyon na.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Release '%s' para sa '%s' ay hindi nahanap" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Bersyon '%s' para sa '%s' ay hindi nahanap" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Ang napiling bersyon %s (%s) para sa %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Ang utos na update ay hindi tumatanggap ng mga argumento" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Hindi maaldaba ang directory ng talaan" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1050,46 +1055,46 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 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:1459 +#: cmdline/apt-get.cc:1493 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Error na internal, may nasira ang problem resolver" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Internal error, nakasira ng bagay-bagay ang AllUpgrade" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, fuzzy, c-format msgid "Couldn't find task %s" msgstr "Hindi mahanap ang paketeng %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Hindi mahanap ang paketeng %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Paunawa, pinili ang %s para sa regex '%s'\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ngunit ang %s ay iluluklok" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1097,7 +1102,7 @@ msgstr "" "May mga dependensiyang kulang. Subukan ang 'apt-get -f install' na walang " "mga pakete (o magtakda ng solusyon)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1108,115 +1113,115 @@ 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:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Sirang mga pakete" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Ang mga sumusunod na extra na pakete ay luluklokin:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Mga paketeng mungkahi:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Mga paketeng rekomendado:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Sinusuri ang pag-upgrade... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Bigo" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Tapos" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Error na internal, may nasira ang problem resolver" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "Hindi mahanap ang paketeng source para sa %s" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Linaktawan ang nakuha na na talaksan '%s'\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "Kulang kayo ng libreng puwang sa %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, 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:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Kailangang kumuha ng %sB ng arkibong source.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Kunin ang Source %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Bigo sa pagkuha ng ilang mga arkibo." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Bigo ang utos ng pagbuklat '%s'.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, 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:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Utos na build '%s' ay bigo.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Bigo ang prosesong anak" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 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:2353 +#: cmdline/apt-get.cc:2390 #, 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:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "Walang build depends ang %s.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1225,7 +1230,7 @@ msgstr "" "Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " "mahanap" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1234,32 +1239,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:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, 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:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Hindi mabuo ang build-dependencies para sa %s." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Bigo sa pagproseso ng build dependencies" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Suportadong mga Module:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1342,7 +1347,7 @@ msgstr "" "para sa karagdagang impormasyon at mga option.\n" " Ang APT na ito ay may Kapangyarihan Super Kalabaw.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1582,9 +1587,13 @@ msgstr "Patungan ng paketeng nag-match na walang bersion para sa %s" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Hindi mabasa ang %s" @@ -1614,9 +1623,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "Ang info at temp directory ay kailangang nasa parehong filesystem" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Binabasa ang Listahan ng mga Pakete" @@ -1720,12 +1729,12 @@ msgstr "Bigo sa paghanap ng tanggap na talaksang control" msgid "Unparsable control file" msgstr "Di maintindihang talaksang control" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Hindi mabasa ang database ng cdrom %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1733,20 +1742,20 @@ msgstr "" "Paki-gamit ang apt-cdrom upang makilala ng APT itong CD na ito. Hindi " "maaaring gamitin ang apt-get update upang magdagdag ng bagong mga CD" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Maling CD" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Hindi mai-unmount ang CD-ROM sa %s, maaaring ginagamit pa ito." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Hindi nahanap ang Disk." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Hindi Nahanap ang Talaksan" @@ -1764,34 +1773,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "Di tanggap na URI, mga lokal na URI ay di dapat mag-umpisa ng //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Pumapasok" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Hindi malaman ang pangalan ng peer" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Hindi malaman ang pangalang lokal" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Inayawan ng server ang ating koneksyon at ang sabi ay: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "Bigo ang USER/GUMAGAMIT, sabi ng server ay: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "Bigo ang PASS, sabi ng server ay: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1799,114 +1808,114 @@ msgstr "" "May tinakdang katuwang na server ngunit walang login script, walang laman " "ang Acquire::ftp::ProxyLogin." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Bigo ang utos sa login script '%s', sabi ng server ay: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "Bigo ang TYPE, sabi ng server ay: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Lumipas ang koneksyon" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Sinarhan ng server ang koneksyon" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Error sa pagbasa" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "May sagot na bumubo sa buffer." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Sira ang protocol" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Error sa pagsulat" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Hindi maka-likha ng socket" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Hindi maka-konekta sa socket ng datos, nag-time-out ang koneksyon" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Hindi maka-konekta sa socket na passive." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "di makakuha ang getaddrinfo ng socket na nakikinig" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Hindi maka-bind ng socket" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Hindi makarinig sa socket" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Hindi malaman ang pangalan ng socket" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Hindi makapagpadala ng utos na PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Di kilalang pamilya ng address %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "Bigo ang EPRT, sabi ng server ay: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Nag-timeout ang socket ng datos" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Hindi makatanggap ng koneksyon" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Problema sa pag-hash ng talaksan" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Hindi makakuha ng talaksan, sabi ng server ay '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Nag-timeout ang socket ng datos" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Bigo ang paglipat ng datos, sabi ng server ay '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Tanong" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Hindi ma-invoke " @@ -2021,94 +2030,94 @@ msgstr "Hindi makapag-bukas ng pipe para sa %s" msgid "Read error from %s process" msgstr "Error sa pagbasa mula sa prosesong %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Naghihintay ng panimula" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Nakatanggap ng isang linyang panimula mula %u na mga karakter" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Maling linyang panimula" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "Nagpadala ang HTTP server ng di tanggap na reply header" -#: methods/http.cc:588 +#: methods/http.cc:593 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:603 +#: methods/http.cc:608 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:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Sira ang range support ng HTTP server na ito" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Di kilalang anyo ng petsa" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Bigo ang pagpili" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Nag-timeout ang koneksyon" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Error sa pagsulat ng talaksang output" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Error sa pagsulat sa talaksan" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Error sa pagsusulat sa talaksan" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "Error sa pagbasa mula sa server, sinarhan ng remote ang koneksyon" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Error sa pagbasa mula sa server" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 #, fuzzy msgid "Failed to truncate file" msgstr "Bigo sa pagsulat ng talaksang %s" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Maling datos sa panimula" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Bigo ang koneksyon" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Internal na error" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Hindi mai-mmap ang talaksang walang laman" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Hindi makagawa ng mmap ng %lu na byte" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2258,13 +2267,13 @@ 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:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Di makalipat sa %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Bigo sa pag-stat ng cdrom" @@ -2296,51 +2305,50 @@ msgstr "hindi makuha ang aldaba %s" msgid "Waited for %s but it wasn't there" msgstr "Naghintay, para sa %s ngunit wala nito doon" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Nakatanggap ang sub-process %s ng segmentation fault." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Nakatanggap ang sub-process %s ng segmentation fault." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, 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:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Ang sub-process %s ay lumabas ng di inaasahan" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Hindi mabuksan ang talaksang %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Problema sa pagsara ng talaksan" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Problema sa pag-unlink ng talaksan" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Problema sa pag-sync ng talaksan" @@ -2433,17 +2441,17 @@ msgstr "Bersyong Kandidato" msgid "Dependency generation" msgstr "Pagbuo ng Dependensiya" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 #, fuzzy msgid "Reading state information" msgstr "Pinagsasama ang magagamit na impormasyon" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "Bigo ang pagbukas ng %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "Bigo sa pagsulat ng talaksang %s" @@ -2483,32 +2491,32 @@ msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (absolute dist)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Maling anyo ng linyang %lu sa talaan ng pagkukunan %s (dist parse)<" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Binubuksan %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Labis ang haba ng linyang %u sa talaksang pagkukunan %s." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (uri)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Hindi kilalang uri '%s' sa linyang %u sa talaksan ng pagkukunan %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (vendor id)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2533,7 +2541,7 @@ msgstr "" "Kailangan ma-instol muli ang paketeng %s, ngunit hindi ko mahanap ang arkibo " "para dito." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2541,12 +2549,12 @@ msgstr "" "Error, pkgProblemResolver::Resolve ay naghudyat ng mga break, maaaring dulot " "ito ng mga paketeng naka-hold." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 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:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2566,12 +2574,12 @@ msgstr "Nawawala ang directory ng arkibo %spartial." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Kinukuha ang talaksang %li ng %li (%s ang natitira)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Kinukuha ang talaksang %li ng %li" @@ -2592,16 +2600,16 @@ 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:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Hindi suportado ang sistema ng paketeng '%s'" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Hindi matuklasan ang akmang uri ng sistema ng pakete " -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Hindi ma-stat ang %s" @@ -2621,136 +2629,135 @@ msgstr "" "Maaaring patakbuhin niyo ang apt-get update upang ayusin ang mga problemang " "ito" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" 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:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Hindi naintindihan ang uri ng pin %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Walang prioridad (o sero) na nakatakda para sa pin" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Hindi akma ang versioning system ng cache" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "May naganap na error habang prinoseso ang %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "May naganap na error habang prinoseso ang %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "May naganap na error habang prinoseso ang %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "May naganap na error habang prinoseso ang %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "May naganap na error habang prinoseso ang %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "May naganap na error habang prinoseso ang %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "May naganap na error habang prinoseso ang %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Wow, nalagpasan niyo ang bilang ng pangalan ng pakete na kaya ng APT na ito." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 #, fuzzy msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "Wow, nalagpasan niyo ang bilang ng bersyon na kaya ng APT na ito." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Wow, nalagpasan niyo ang bilang ng dependensiya na kaya ng APT na ito." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "May naganap na error habang prinoseso ang %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "May naganap na Error habang prinoseso ang %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" "Hindi nahanap ang paketeng %s %s habang prinoseso ang mga dependensiya." -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Hindi ma-stat ang talaan ng pagkukunan ng pakete %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Kinukuha ang Talaksang Provides" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "IO Error sa pag-imbak ng source cache" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "pagpalit ng pangalan ay bigo, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "Di tugmang MD5Sum" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 #, fuzzy msgid "Hash Sum mismatch" msgstr "Di tugmang MD5Sum" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "Walang public key na magamit para sa sumusunod na key ID:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2759,7 +2766,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:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2768,7 +2775,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:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2776,19 +2783,17 @@ msgstr "" "Sira ang talaksang index ng mga pakete. Walang Filename: field para sa " "paketeng %s." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Di tugmang laki" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Hindi ma-parse ang talaksang pakete %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Paunawa, pinili ang %s imbes na %s\n" @@ -2802,7 +2807,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Block ng nagbebenta %s ay walang fingerprint" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2811,43 +2816,43 @@ msgstr "" "Ginagamit ang %s bilang mount point ng CD-ROM\n" "Sinasalang ang CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Kinikilala..." -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Naka-imbak na Label: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 #, fuzzy msgid "Unmounting CD-ROM...\n" msgstr "Ina-unmount ang CD-ROM..." -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Ginagamit ang %s bilang mount point ng CD-ROM\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Ina-unmount ang CD-ROM\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Hinihintay ang disc...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Sinasalang ang CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Sinisiyasat ang Disc para sa talaksang index...\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, fuzzy, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2856,22 +2861,22 @@ msgstr "" "Nakahanap ng %i na index ng mga pakete, %i na index ng source at %i na " "signature\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, fuzzy, c-format msgid "Found label '%s'\n" msgstr "Naka-imbak na Label: %s \n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Hindi yan tanggap na pangalan, subukan muli.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2880,34 +2885,34 @@ msgstr "" "Ang Disc na ito ay nagngangalang: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Kinokopya ang Listahan ng mga Pakete" -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Sinusulat ang bagong listahan ng pagkukunan\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 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:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Nagsulat ng %i na record.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, 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:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -2996,7 +3001,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Hindi maaldaba ang directory ng talaan" diff --git a/po/uk.po b/po/uk.po index e7615d901..52324e12d 100644 --- a/po/uk.po +++ b/po/uk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-all\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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" @@ -21,7 +21,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Пакунок %s версії %s має незадоволену залежність:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -93,7 +93,7 @@ msgstr "Порожнього місця в кеші: " msgid "Total space accounted for: " msgstr "Загальний простір полічений для: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Перелік пакунків %s розсинхронізований." @@ -151,14 +151,14 @@ msgstr " Таблиця версій:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 #, fuzzy msgid "" "Usage: apt-cache [options] command\n" @@ -233,15 +233,15 @@ msgstr "" "tmp\n" "Подробиці в сторінках керівництва apt-cache(8) і apt.conf(5).\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "Задайте назву для цього диска, наприклад 'Debian 2.1r1 Disk 1'" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Вставте диск у пристрій і натисніть Ввід" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Повторіть цей процес для інших наявних CD." @@ -306,7 +306,7 @@ msgstr "" " -c=? Читати зазначений конфігураційний файл\n" " -o=? Вказати довільну опцію, наприклад, -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Неможливо записати в %s" @@ -659,7 +659,7 @@ msgstr "Не вдалося перейменувати %s в %s" msgid "Y" msgstr "Т" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Помилка компіляції регулярного виразу - %s" @@ -760,125 +760,125 @@ msgstr "для видалення відмічено %lu пакунків, і %l msgid "%lu not fully installed or removed.\n" msgstr "не встановлено до кінця чи видалено %lu пакунків.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Виправлення залежностей..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " невдача." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Неможливо скоригувати залежності" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Неможливо мінімізувати набір оновлень" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Виконано" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "" "Можливо, для виправлення цих помилок ви захочете скористатися 'apt-get -f " "install'." -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Незадоволені залежності. Спробуйте використати -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "УВАГА: Наступні пакунки неможливо автентифікувати!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Автентифікаційне попередження не прийнято до уваги.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Встановити ці пакунки без перевірки [т/Н]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Деякі пакунки неможливо автентифікувати" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "Існують проблеми, а опція -y використана без --force-yes" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" "Внутрішня помилка, InstallPackages була викликана з непрацездатними " "пакунками!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "Пакунки необхідно видалити, але видалення заборонене." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Внутрішня помилка, Ordering не завершилася" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Неможливо заблокувати теку для завантаження" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Неможливо прочитати перелік джерел." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "Дивно.. Розбіжність розмірів, напишіть на apt@packages.debian.org" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Необхідно завантажити %sB/%sB архівів.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Необхідно завантажити %sB архівів.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, fuzzy, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "Після розпакування об'єм зайнятого дискового простору зросте на %sB.\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, fuzzy, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "" "Після розпакування об'єм зайнятого дискового простору зменшиться на %sB.\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "Не вдалося визначити кількість вільного місця в %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "Недостатньо вільного місця в %s." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" "Запитане виконання тільки тривіальних операцій, але це не тривіальна " "операція." -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Так, робити, як я скажу!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -889,28 +889,28 @@ msgstr "" "Щоб продовжити, введіть фразу: '%s'\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Перервано." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Бажаєте продовжити [Т/н]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Не вдалося завантажити %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Деякі файли не вдалося завантажити" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "Вказано режим \"тільки завантаження\", і завантаження завершено" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -918,49 +918,49 @@ msgstr "" "Неможливо завантажити деякі архіви, імовірно треба виконати apt-get update " "або спробувати повторити запуск з ключем --fix-missing?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing і зміна носія в даний момент не підтримується" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Неможливо виправити втрачені пакунки." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Переривається встановлення." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Помітьте, замість %2$s вибирається %1$s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "Пропускається %s - пакунок вже встановлений, і опція upgrade не " "встановлена.\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Пакунок %s не встановлений, тому не може бути видалений\n" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Пакунок %s - віртуальний, його функції надаються пакунками:\n" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Встановлено]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "Ви повинні явно вказати, який саме ви хочете встановити." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -972,69 +972,74 @@ msgstr "" "Це може означати, що пакунок відсутній, застарів, або доступний з джерел, не " "згаданих в sources.list\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Однак наступні пакунки можуть його замінити:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Для пакунка %s не знайдені кандидати на встановлення" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Перевстановлення %s неможливе, бо він не може бути завантаженим.\n" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "Вже встановлена найновіша версія %s.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Реліз '%s' для '%s' не знайдений" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Версія '%s' для '%s' не знайдена" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Обрана версія %s (%s) для %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Команді update не потрібні аргументи" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Неможливо заблокувати теку з переліками пакунків" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "НОВІ пакунки були встановлені автоматично і більше не потрібні:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "НОВІ пакунки були встановлені автоматично і більше не потрібні:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "Використовуйте 'apt-get autoremove' щоб видалити їх." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1052,46 +1057,46 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "Наступна інформація можливо допоможе Вам:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Внутрішня помилка, вирішувач проблем все поламав" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "Внутрішня помилка, AllUpgrade все поламав" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, fuzzy, c-format msgid "Couldn't find task %s" msgstr "Не можу знайти пакунок %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Не можу знайти пакунок %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Помітьте, регулярний вираз %2$s призводить до вибору %1$s\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "але %s буде встановлений" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" "Можливо, для виправлення цих помилок Ви захочете скористатися 'apt-get -f " "install':" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1099,7 +1104,7 @@ msgstr "" "Незадоволені залежності. Спробуйте виконати 'apt-get -f install', не " "вказуючи імені пакунка (або знайдіть інше рішення)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1110,121 +1115,121 @@ msgstr "" "або ж використаєте нестабільний дистрибутив, і запитані Вами пакунки\n" "ще не створені або були вилучені з Incoming." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Зламані пакунки" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "Будуть встановлені наступні додаткові пакунки:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Пропоновані пакунки:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Рекомендовані пакунки:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Обчислення оновлень... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Невдача" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Виконано" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Внутрішня помилка, вирішувач проблем все поламав" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "" "Вкажіть як мінімум один пакунок, для якого необхідно завантажити вихідні " "тексти" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "Неможливо знайти пакунок з вихідними текстами для %s" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Пропускаємо вже завантажений файл '%s'\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "Недостатньо місця в %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Необхідно завантажити %sB/%sB з архівів вихідних текстів.\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Потрібно завантажити %sB архівів з вихідними текстами.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Завантаження вихідних текстів %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Деякі архіви не вдалося завантажити." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" "Розпакування вихідних текстів пропущено, тому що в %s вже перебувають " "розпаковані вихідні тексти\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Команда розпакування '%s' завершилася невдало.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Перевірте, чи встановлений пакунок 'dpkg-dev'.\n" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Команда побудови '%s' закінчилася невдало.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Породжений процес завершився невдало" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "" "Для перевірки залежностей для побудови необхідно вказати як мінімум один " "пакунок" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Неможливо одержати інформацію про залежності для побудови %s" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s не має залежностей для побудови.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1232,7 +1237,7 @@ msgid "" msgstr "" "Залежність типу %s для %s не може бути задоволена, бо пакунок %s не знайдено" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1241,32 +1246,32 @@ msgstr "" "Залежність типу %s для %s не може бути задоволена, бо ні одна з версій " "пакунка %s не задовольняє умови" -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2551 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Не вдалося задовольнити залежність типу %s для пакунка %s: Встановлений " "пакунок %s новіше, аніж треба" -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Неможливо задовольнити залежність типу %s для пакунка %s: %s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Залежності для побудови %s не можуть бути задоволені." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "Обробка залежностей для побудови закінчилася невдало" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Підтримувані модулі:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1353,7 +1358,7 @@ msgstr "" "містять більше інформації.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1595,9 +1600,13 @@ msgstr "Файли заміняються вмістом пакета %s без msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Неможливо прочитати %s" @@ -1627,9 +1636,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "Теки info і temp повинні бути на тій самій файловій системі" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Читання переліків пакетів" @@ -1735,12 +1744,12 @@ msgstr "Не вдалося знайти правильний контрольн msgid "Unparsable control file" msgstr "Контрольний файл не можливо обробити" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Неможливо прочитати базу %s з cdrom'у" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1748,20 +1757,20 @@ msgstr "" "Будь-ласка використовуйте apt-cdrom, щоб APT розпізнав цей CD-ROM, apt-get " "update не може бути використаним для додання нових CD" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Невірний CD-ROM" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Неможливо демонтувати CDROM в %s, можливо він все ще використовується." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Диск не знайдено." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Файл не знайдено" @@ -1779,34 +1788,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "Невірне посилання, локальні посилання повинні починатися з //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Логінюсь в" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Неможливо визначити назву вузла" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Неможливо визначити локальну назву" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Сервер розірвав з'єднання і мовив: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER невдало, сервер мовив: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS невдало, сервер мовив: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1814,116 +1823,116 @@ msgstr "" "Вказано проксі-сервер, але відсутній скрипт логіну, Acquire::ftp::ProxyLogin " "пустий." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Команда '%s'скрипту логіна не вдалася, сервер мовив: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE невдало, сервер мовив: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Час з'єднання вичерпався" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Сервер закрив з'єднання" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Помилка читання" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Відповідь переповнила буфер." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Спотворений протокол" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Помилка запису" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Неможливо створити сокет (socket)" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Неможливо під'єднати сокет (socket) з даними, час з'єднання вичерпався" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Неможливо під'єднати пасивний сокет (passive socket)." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 #, fuzzy msgid "getaddrinfo was unable to get a listening socket" msgstr "Виклик getaddrinfo не зміг отримати сокет" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Неможливо приєднатися до сокета" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 #, fuzzy msgid "Could not listen on the socket" msgstr "Не можливо утримувати з'єднання на сокеті" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Не вдалося визначити назву сокета" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Неможливо відіслати команду PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Невідоме адресове сімейство %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT невдало, сервер мовив: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Час з'єднання з сокетом даних вичерпався" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Неможливо прийняти з'єднання" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Проблема хешування файла" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Неможливо завантажити файл, сервер мовив: '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Час з'єднання з сокетом (socket) з даними вичерпався" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Передача даних обірвалася, сервер мовив '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Черга" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Неможливо викликати " @@ -2036,96 +2045,96 @@ msgstr "Неможливо відкрити канал (pipe) для %s" msgid "Read error from %s process" msgstr "Помилка читання з процесу %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Очікування на заголовки" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Отримано одну заголовкову лінію понад %u символів" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Невірна лінія заголовку" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP сервер відіслав невірний заголовок 'reply'" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP сервер відіслав невірний заголовок 'Content-Length'" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP сервер відіслав невірний заголовок 'Content-Length'" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Цей HTTP сервер має поламану підтримку 'range'" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Невідомий формат дати" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Вибір не вдався" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Час очікування з'єднання вийшов" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Помилка запису в вихідний файл" -#: methods/http.cc:841 +#: methods/http.cc:846 #, fuzzy msgid "Error writing to file" msgstr "Помилка запису в файл" -#: methods/http.cc:869 +#: methods/http.cc:874 #, fuzzy msgid "Error writing to the file" msgstr "Помилка запису в файл" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "Помилка читання з сервера. Віддалена сторона закрила з'єднання" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Помилка читання з сервера" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 #, fuzzy msgid "Failed to truncate file" msgstr "Не вдалося записати файл %s" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Погана заголовкова інформація" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "З'єднання не вдалося" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Внутрішня помилка" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Неможливо відобразити в пам'яті пустий файл" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Неможливо відобразити в пам'яті %lu байт" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2274,13 +2283,13 @@ msgstr "Невірна дія %s" msgid "Unable to stat the mount point %s" msgstr "Неможливо прочитати атрибути точки монтування %s" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Неможливо зробити зміни у %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Не вдалося прочитати атрибути cdrom" @@ -2313,52 +2322,51 @@ msgstr "Не можливо отримати lock %s" msgid "Waited for %s but it wasn't there" msgstr "Очікується на %s але його тут немає" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Підпроцес %s отримав segmentation fault." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Підпроцес %s отримав segmentation fault." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Підпроцес %s повернув код помилки (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Підпроцес %s раптово завершився" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Не можливо відкрити файл %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "" "помилка при читанні. мали прочитати ще %lu байт, але нічого більше нема" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "помилка при записі, мали прочитати ще %lu байт, але не змогли" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Проблема з закриттям файла" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Проблема з роз'єднанням файла" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Проблема з синхронізацією файла" @@ -2451,17 +2459,17 @@ msgstr "Версії кандидатів" msgid "Dependency generation" msgstr "Ґенерація залежностей" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 #, fuzzy msgid "Reading state information" msgstr "Об'єднання інформації про доступні пакунки" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, fuzzy, c-format msgid "Failed to open StateFile %s" msgstr "Не вдалося відкрити %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, fuzzy, c-format msgid "Failed to write temporary StateFile %s" msgstr "Не вдалося записати файл %s" @@ -2502,32 +2510,32 @@ msgstr "Спотворена лінія %lu у переліку джерел %s msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Спотворена лінія %lu у переліку джерел %s (dist parse)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Відкриття %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Лінія %u занадто довга в переліку джерел %s." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Спотворена лінія %u у переліку джерел %s (тип)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Невідомий тип '%s' в лінії %u в переліку джерел %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Спотворена лінія %u у переліку джерел %s (vendor id)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2552,7 +2560,7 @@ msgstr "" "Пакунок %s повинен бути перевстановленим, але я не можу знайти архіву для " "нього." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2560,11 +2568,11 @@ msgstr "" "Помилка, pkgProblemResolver::Resolve згенерував зупинку, це може бути " "пов'язано з зафіксованими пакунками." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "Неможливо усунути проблеми, Ви маєте поламані зафіксовані пакунки." -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2584,12 +2592,12 @@ msgstr "Архівна тека %spartial відсутня." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, fuzzy, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Завантажується файл %li з %li (%s залишилось)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, fuzzy, c-format msgid "Retrieving file %li of %li" msgstr "Завантажується файл %li з %li" @@ -2610,16 +2618,16 @@ msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" "Будь-ласка, вставте диск з поміткою: '%s' в CD привід '%s' і натисніть Enter." -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "Система пакування '%s' не підтримується" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Неможливо визначити тип необхідної системи пакування " -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Неможливо прочитати атрибути %s." @@ -2636,136 +2644,135 @@ msgstr "Не можу обробити чи відкрити перелік па msgid "You may want to run apt-get update to correct these problems" msgstr "Можливо, для виправлення цих помилок Ви захочете запустити apt-get" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "Невірний запис в preferences файлі, відсутній заголовок Package" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Не зрозумів тип %s для pin" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Не встановлено пріоритету (або встановлено 0) для pin" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Кеш має несумісну систему призначення версій" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Помилка, яка була викликана внаслідок обробки %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Помилка, яка була викликана внаслідок обробки %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Помилка, яка була викликана внаслідок обробки %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Помилка, яка була викликана внаслідок обробки %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Помилка, яка була викликана внаслідок обробки %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Помилка, яка була викликана внаслідок обробки %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Помилка, яка була викликана внаслідок обробки %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Помилка, яка була викликана внаслідок обробки %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, fuzzy, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Помилка, яка була викликана внаслідок обробки %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "Ви перевищили кількість імен пакунків, які APT може обробити." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Ви перевищили кількість версій, які APT може обробити." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 #, fuzzy msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "Ви перевищили кількість версій, які APT може обробити." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Ви перевищили кількість залежностей які APT може обробити." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Помилка, яка була викликана внаслідок обробки %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Помилка, яка була викликана внаслідок обробки %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Пакунок %s %s не був знайдений під час обробки залежностей файла" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Не вдалося прочитати атрибути переліку вихідних текстів%s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 #, fuzzy msgid "Collecting File Provides" msgstr "Збирання інформації про файлів " -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "Помилка IO під час збереження джерельного кешу" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "Не вдалося перейменувати, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "Невідповідність MD5Sum" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 #, fuzzy msgid "Hash Sum mismatch" msgstr "Невідповідність MD5Sum" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 #, fuzzy msgid "There is no public key available for the following key IDs:\n" msgstr "Відсутній публічний ключ для заданих ID ключа:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2774,7 +2781,7 @@ msgstr "" "Я не можу знайти файл для пакунку %s. Можливо, Ви захочете власноруч " "виправити цей пакунок. (due to missing arch)" -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2783,26 +2790,24 @@ msgstr "" "Я не можу знайти файл для пакунку %s. Можливо, Ви захочете власноруч " "виправити цей пакунок." -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" "Індексні файли пакунків пошкоджені. Немає поля Filename для пакунку %s." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Невідповідність розміру" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Неможливо обробити файл %s пакунку (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Помітьте, замість %2$s вибирається %1$s\n" @@ -2816,7 +2821,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Блок постачальника %s не містить відбитку (fingerprint)" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2825,65 +2830,65 @@ msgstr "" "Використовується точка монтування CDROM: %s\n" "Монтування CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Ідентифікація.. " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Записано мітку: %s \n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 #, fuzzy msgid "Unmounting CD-ROM...\n" msgstr "Демонтується CD-ROM..." -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Використовується точка монтування CDROM: %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Демонтується CD-ROM\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Чекаю на диск...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Монтується CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Диск сканується на індексні файли..\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, fuzzy, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" "zu signatures\n" msgstr "Знайдено %i індексів пакунків, %i індексів джерел і %i підписів\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, fuzzy, c-format msgid "Found label '%s'\n" msgstr "Записано мітку: %s \n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Не є вірною назвою, спробуйте ще.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2892,34 +2897,34 @@ msgstr "" "Цей диск зветься: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Копіюються переліки пакунків..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Записується новий перелік джерел\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Перелік джерел для цього диску:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Записано %i записів.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "Записано %i записів з %i відсутніми файлами.\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "Записано %i записів з %i невідповідними файлам\n" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "Записано %i записів з %i відсутніми і %i невідповідними файлами\n" @@ -3007,7 +3012,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Неможливо заблокувати теку з переліками пакунків" diff --git a/po/vi.po b/po/vi.po index d7ad1cfdd..685a8c49a 100644 --- a/po/vi.po +++ b/po/vi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+0200\n" "PO-Revision-Date: 2008-12-22 19:04+1030\n" "Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n" "Language-Team: Vietnamese <vi-VN@googlegroups.com>\n" @@ -22,7 +22,7 @@ msgid "Package %s version %s has an unmet dep:\n" 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:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -92,7 +92,7 @@ msgstr "Tổng chỗ nghỉ: " msgid "Total space accounted for: " msgstr "Tổng chỗ đã tính: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "Tập tin gói %s không đồng bộ được." @@ -152,14 +152,14 @@ msgstr " Bảng phiên bản:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -240,15 +240,15 @@ msgstr "" "Để tìm thông tin thêm, xem hai trang « man » (hướng dẫn)\n" "\t\t\tapt-cache(8) và apt.conf(5).\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "Hãy cung cấp tên cho Đĩa này, như « Debian 2.1r1 Đĩa 1 »" -#: cmdline/apt-cdrom.cc:93 +#: 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:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Hãy lặp lại tiến trình này cho các Đĩa còn lại trong bộ đĩa của bạn." @@ -319,7 +319,7 @@ 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 »\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Không thể ghi vào %s" @@ -678,7 +678,7 @@ msgstr "Việc đổi tên %s thành %s bị lỗi" msgid "Y" msgstr "C" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "Lỗi biên dich biểu thức chính quy - %s" @@ -779,122 +779,122 @@ msgstr "%lu cần gỡ bỏ, và %lu chưa được nâng cấp.\n" 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:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Đang sửa cách phụ thuộc..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " đã thất bại." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Không thể sửa cách phụ thuộc" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Không thể cực tiểu hóa bộ nâng cấp" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Đã xong" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 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:710 +#: cmdline/apt-get.cc:712 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:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Cảnh báo xác thực bị đè.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 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:723 +#: cmdline/apt-get.cc:725 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:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 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:785 +#: cmdline/apt-get.cc:784 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:796 +#: cmdline/apt-get.cc:795 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:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "Không thể khóa thư mục tải về" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Không thể đọc danh sách nguồn." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 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:842 +#: cmdline/apt-get.cc:841 #, 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:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Cần phải lấy %sB kho.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, 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:874 +#: cmdline/apt-get.cc:876 #, 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:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 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:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Có, làm đi." -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -905,28 +905,28 @@ msgstr "" "Để tiếp tục thì hãy gõ cụm từ « %s »\n" "?]" -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Hủy bỏ." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Bạn có muốn tiếp tục không? [Y/n] [C/k] " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Việc gói %s bị lỗi %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Một số tập tin không tải về được" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 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:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -934,49 +934,49 @@ 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:1016 +#: cmdline/apt-get.cc:1018 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:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Không thể sửa những gói còn thiếu." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Đang hủy bỏ cài đặt." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Ghi chú : đang chọn %s thay vì %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, 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:1084 +#: cmdline/apt-get.cc:1086 #, 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:1095 +#: cmdline/apt-get.cc:1097 #, 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:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [Đã cài đặt]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 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:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -987,69 +987,75 @@ 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:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "Tuy nhiên, những gói theo đây thay thế nó :" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "Gói %s không có ứng cử cài đặt" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, 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:1167 +#: cmdline/apt-get.cc:1169 #, 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:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Không tìm thấy bản phát hành « %s » cho « %s »" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Không tìm thấy phiên bản « %s » cho « %s »" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Đã chọn phiên bản %s (%s) cho %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "Lệnh cập nhật không chấp nhật đối số" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "Không thể khóa thư mục danh sách" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 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:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" "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:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"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:" + +#: cmdline/apt-get.cc:1481 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:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1067,43 +1073,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 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:1459 +#: cmdline/apt-get.cc:1493 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:1478 +#: cmdline/apt-get.cc:1512 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:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "Không tìm thấy tác vụ %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "Không tìm thấy gói %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, 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" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, 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:1715 +#: cmdline/apt-get.cc:1749 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:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1111,7 +1117,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:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1123,123 +1129,123 @@ 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:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "Gói bị ngắt" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 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:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "Gói được đệ nghị:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "Gói được khuyên:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "Đang tính nâng cấp... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Bị lỗi" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "Xong" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "Lỗi nội bộ: bộ tháo gỡ vấn đề đã ngắt gì" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 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ó" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, 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:2158 +#: cmdline/apt-get.cc:2192 #, 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:2186 +#: cmdline/apt-get.cc:2223 #, 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:2192 +#: cmdline/apt-get.cc:2229 #, 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:2195 +#: cmdline/apt-get.cc:2232 #, 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:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "Lấy nguồn %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "Việc lấy một số kho bị lỗi." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, 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:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Lệnh giải nén « %s » bị lỗi.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, 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:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "Lệnh xây dụng « %s » bị lỗi.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "Tiến trình con bị lỗi" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 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:2353 +#: cmdline/apt-get.cc:2390 #, 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:2373 +#: cmdline/apt-get.cc:2410 #, 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:2425 +#: cmdline/apt-get.cc:2462 #, 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:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1248,31 +1254,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:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, 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:2555 +#: cmdline/apt-get.cc:2594 #, 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:2559 +#: cmdline/apt-get.cc:2599 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:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "Mô-đun đã hỗ trợ :" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1364,7 +1370,7 @@ 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:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1606,9 +1612,13 @@ msgstr "Ghi đè lên gói đã khớp mà không có phiên bản cho %s" msgid "File %s/%s overwrites the one in the package %s" msgstr "Tập tin %s/%s ghi đè lên điều trong gói %s" +#. 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Không thể đọc %s" @@ -1640,9 +1650,9 @@ msgstr "" "thống tập tin" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Đang đọc các danh sách gói..." @@ -1747,12 +1757,12 @@ 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/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Không thể đọc cơ sở dữ liệu đĩa CD-ROM %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1760,20 +1770,20 @@ msgstr "" "Hãy sử dụng lệnh « apt-cdrom » để làm cho APT chấp nhận đĩa CD này. Không thể " "sử dụng lệnh « apt-get update » (lấy cập nhật) để thêm đĩa CD mới." -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "CD không đúng" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Không thể tháo gắn kết đĩa CD-ROM trong %s. Có lẽ nó còn dùng." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Không tìm thấy đĩa" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Không tìm thấy tập tin" @@ -1791,34 +1801,34 @@ msgid "Invalid URI, local URIS must not start with //" 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:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Đang đăng nhập..." -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Không thể quyết định tên ngang hàng" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Không thể quyết định tên cục bộ" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "Máy phục vụ đã từ chối kết nối, và nói: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "Lệnh USER (người dùng) đã thất bại: máy phục vụ nói: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "Lệnh PASS (mật khẩu) đã thất bại: máy phục vụ nói: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1826,114 +1836,114 @@ msgstr "" "Đã ghi rõ máy phục vụ ủy nhiệm, nhưng mà chưa ghi rõ tập lệnh đăng nhập. « " "Acquire::ftp::ProxyLogin » là rỗng." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Lệnh tập lệnh đăng nhập « %s » đã thất bại: máy phục vụ nói: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "Lệnh TYPE (kiểu) đã thất bại: máy phục vụ nói: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Thời hạn kết nối" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "Máy phục vụ đã đóng kết nối" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Lỗi đọc" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Một trả lời đã tràn bộ đệm." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Giao thức bị hỏng" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Lỗi ghi" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Không thể tạo ổ cắm" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Không thể kết nối ổ cắm dữ liệu, kết nối đã quá giờ" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Không thể kết nối ổ cắm bị động." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo (lấy thông tin địa chỉ) không thể lấy ổ cắm lắng nghe" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Không thể đóng kết ổ cắm" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Không thể lắng nghe trên ổ cắm đó" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Không thể quyết định tên ổ cắm đó" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Không thể gởi lệnh PORT (cổng)" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Không biết nhóm địa chỉ %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "Lệnh EPRT (thông báo lỗi) đã thất bại: máy phục vụ nói: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Kết nối ổ cắm dữ liệu đã quá giờ" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Không thể chấp nhận kết nối" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Gặp khó khăn băm tập tin" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Không thể lấy tập tin: máy phục vụ nói « %s »" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Ổ cắm dữ liệu đã quá giờ" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Việc truyền dữ liệu bị lỗi: máy phục vụ nói « %s »" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Truy vấn" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Không thể gọi " @@ -2043,97 +2053,97 @@ msgstr "Không thể mở ống dẫn cho %s" msgid "Read error from %s process" msgstr "Gặp lỗi đọc từ tiến trình %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Đang đợi những phần đầu..." -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Đã lấy một dòng đầu riêng lẻ chứa hơn %u ky tự" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Dòng đầu sai" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 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:588 +#: methods/http.cc:593 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:603 +#: methods/http.cc:608 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:605 +#: methods/http.cc:610 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:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Không biết dạng ngày" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Việc chọn bị lỗi" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Kết nối đã quá giờ" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Gặp lỗi khi ghi vào tập tin xuất" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Gặp lỗi khi ghi vào tập tin" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Gặp lỗi khi ghi vào tập tin đó" -#: methods/http.cc:883 +#: methods/http.cc:888 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:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Gặp lỗi khi đọc từ máy phục vụ" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Lỗi cắt ngắn tập tin" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Dữ liệu dòng đầu sai" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Kết nối bị ngắt" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Gặp lỗi nội bộ" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 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:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Không thể tạo mmap (ảnh xạ bộ nhớ) kích cỡ %lu byte" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2280,13 +2290,13 @@ 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:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Không thể chuyển đổi sang %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Việc lấy cac thông tin cho đĩa CD-ROM bị lỗi" @@ -2315,51 +2325,50 @@ msgstr "Không thể lấy khóa %s" 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:455 +#: apt-pkg/contrib/fileutl.cc:456 #, 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." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." 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." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, 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)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Tiến trình con %s đã thoát bất ngờ" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Không thể mở tập tin %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, 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" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, 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:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Gặp lỗi khi đóng tập tin đó" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Gặp lỗi khi bỏ liên kết tập tin đó" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Gặp lỗi khi đồng bộ hóa tập tin đó" @@ -2452,16 +2461,16 @@ msgstr "Phiên bản ứng cử" msgid "Dependency generation" msgstr "Tạo ra cách phụ thuộc" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Đang đọc thông tin tình trạng" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Lỗi mở tập tin tình trạng StateFile %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Lỗi ghi tập tin tình trạng StateFile tạm thời %s" @@ -2504,32 +2513,32 @@ msgid "Malformed line %lu in source list %s (dist parse)" 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)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Đang mở %s..." -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Dòng %u quá dài trong danh sách nguồn %s." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Gặp dòng dạng sai %u trong danh sách nguồn %s (kiểu)." -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Không biết kiểu « %s » trên dòng %u trong danh sách nguồn %s." -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format 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)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2552,7 +2561,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:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2560,11 +2569,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:1156 +#: apt-pkg/algorithms.cc:1140 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:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2584,12 +2593,12 @@ msgstr "Thiếu thư mục kho « %spartial »." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, 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)..." -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Đang lấy tập tin %li trên %li..." @@ -2609,16 +2618,16 @@ 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:125 +#: apt-pkg/init.cc:132 #, 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:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Không thể quyết định kiểu hệ thống đóng gói thích hợp" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Không thể lấy các thông tin về %s." @@ -2637,136 +2646,135 @@ 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:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" 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)." -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Không hiểu kiểu ghim %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Chưa ghi rõ ưu tiên (hay số không) cho ghim" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "Bộ nhớ tạm có hệ thống điêu khiển phiên bản không tương thích" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Gặp lỗi khi xử lý %s (NewPackage - gói mới)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Gặp lỗi khi xử lý %s (UsePackage1 - dùng gói 1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Gặp lỗi khi xử lý %s (NewFileDesc1 - tập tin mô tả mới 1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Gặp lỗi khi xử lý %s (UsePackage2 - dùng gói 2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Gặp lỗi khi xử lý %s (NewFileVer1 - tập tin mới, phiên bản 1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Gặp lỗi khi xử lý %s (NewVersion1 - phiên bản mới 1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Gặp lỗi khi xử lý %s (UsePackage3 - dùng gói 3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Gặp lỗi khi xử lý %s (NewVersion2 - phiên ban mới 2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, 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)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "Ồ, bạn đã vượt quá số tên gói mà trình APT này có thể quản lý." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Ồ, bạn đã vượt quá số phiên bản mà trình APT này có thể quản lý." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "Ồ, bạn đã vượt quá số mô tả mà trình APT này có thể quản lý." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Ồ, bạn đã vượt quá số cách phụ thuộc mà trình APT này có thể quản lý." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Gặp lỗi khi xử lý %s (FindPkg - tìm gói)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "" "Gặp lỗi khi xử lý %s (CollectFileProvides - tập hợp các trường hợp miễn là " "một tập tin)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Không tìm thấy gói %s %s khi xử lý cách phụ thuộc của/vào tập tin" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Không thể lấy các thông tin về danh sách gói nguồn %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Đang tập hợp các trường hợp « tập tin miễn là »" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "Lỗi nhập/xuất khi lưu bộ nhớ tạm nguồn" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "việc thay đổi tên bị lỗi, %s (%s → %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5Sum (tổng kiểm) không khớp được" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Sai khớp tổng băm (hash sum)" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 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" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2775,7 +2783,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:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2784,7 +2792,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:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2792,19 +2800,17 @@ 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:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Kích cỡ không khớp được" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Không thể phân tách tập tin gói %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Ghi chú : đang chọn %s thay vì %s\n" @@ -2818,7 +2824,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "Khối nhà bán %s không chứa vân tay" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2827,42 +2833,42 @@ msgstr "" "Đang dùng điểm lắp đĩa CD-ROM %s\n" "Đang lắp đĩa CD-ROM...\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Đang nhận diện... " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Nhãn đã lưu : %s\n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "Đang tháo lắp đĩa CD-ROM...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Đang dùng điểm lắp đĩa CD-ROM %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Đang tháo lắp đĩa CD-ROM...\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Đang đợi đĩa...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Đang lắp đĩa CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Đang quét đĩa tìm tập tin chỉ mục...\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2870,22 +2876,22 @@ msgid "" msgstr "" "Tìm thấy %zu chỉ mục gói, %zu chỉ mục nguồn, %zu chỉ mục dịch và %zu chữ ký\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Nhãn đã lưu : « %s »\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Nó không phải là một tên hợp lệ: hãy thử lại.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2894,34 +2900,34 @@ msgstr "" "Tên đĩa này:\n" "%s\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Đang sao chép các danh sách gói..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Đang ghi danh sách nguồn mới...\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 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:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "Mới ghi %i mục ghi.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, 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:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -3010,7 +3016,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Không thể khóa thư mục danh sách" diff --git a/po/zh_CN.po b/po/zh_CN.po index 4411aaf92..54ae8de36 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+0200\n" "PO-Revision-Date: 2009-06-01 15:54+0800\n" "Last-Translator: Deng Xiyue <manphiz-guest@users.alioth.debian.org>\n" "Language-Team: Debian Chinese [GB] <debian-chinese-gb@lists.debian.org>\n" @@ -22,7 +22,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "版本为 %2$s 的软件包 %1$s 有未满足的依赖关系:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -92,7 +92,7 @@ msgstr "Slack 空间共计:" msgid "Total space accounted for: " msgstr "总占用空间:" -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "软件包文件 %s 尚未同步(sync)。" @@ -150,14 +150,14 @@ msgstr " 版本列表:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -231,15 +231,15 @@ msgstr "" " -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n" "若要了解更多信息,您还可以查阅 apt-cache(8) 和 apt.conf(5) 参考手册。\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "请给这张光盘起个名字,比如说“Debian 2.1r1 Disk 1”" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "请把光盘碟片插入驱动器再按回车键" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "请对您的光盘套件中的其它光盘重复相同的操作。" @@ -304,7 +304,7 @@ msgstr "" " -c=? 读指定的配置文件\n" " -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "无法写入 %s" @@ -646,7 +646,7 @@ msgstr "无法将 %s 重命名为 %s" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "编译正则表达式时出错 - %s" @@ -747,118 +747,118 @@ msgstr "要卸载 %lu 个软件包,有 %lu 个软件未被升级。\n" msgid "%lu not fully installed or removed.\n" msgstr "有 %lu 个软件包没有被完全安装或卸载。\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "正在更正依赖关系..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " 失败。" -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "无法更正依赖关系" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "无法最小化要升级的软件包集合" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " 完成" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "您也许需要运行“apt-get -f install”来纠正上面的错误。" -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "不能满足依赖关系。不妨试一下 -f 选项。" -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "【警告】:下列的软件包不能通过验证!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "忽略了认证警告。\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "不经验证就安装这些软件包么?[y/N] " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "有些软件包不能通过验证" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "碰到了一些问题,您使用了 -y 选项,但是没有用 --force-yes" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "内部错误,InstallPackages 被用在了无法安装的软件包上!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "有软件包需要被卸载,但是卸载动作被程序设置所禁止。" -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "内部错误,Ordering 未能完成" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "无法对下载目录加锁" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "无法读取安装源列表。" -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "怪了……文件大小不符,发信给 apt@packages.debian.org 吧" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "需要下载 %sB/%sB 的软件包。\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "需要下载 %sB 的软件包。\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "解压缩后会消耗掉 %sB 的额外空间。\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "解压缩后将会空出 %sB 的空间。\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "无法获知您在 %s 上的空余空间" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "您在 %s 中没有足够的空余空间。" -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "虽然您指定了 Trivial Only,但这不是个日常(trivial)操作。" -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Yes, do as I say!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -869,28 +869,28 @@ msgstr "" "若还想继续的话,就输入下面的短句“%s”\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "中止执行。" -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "您希望继续执行吗?[Y/n]" -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "无法下载 %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "有一些文件下载失败" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "下载完毕,目前是“仅下载”模式" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -898,47 +898,47 @@ msgstr "" "有几个软件包无法下载,您可以运行 apt-get update 或者加上 --fix-missing 的选项" "再试试?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "目前还不支持 --fix-missing 和介质交换(media swapping)" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "无法更正缺少的软件包。" -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "放弃安装。" -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "注意,选取 %s 而非 %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "忽略了 %s,它已经被安装而且没有指定要升级。\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "软件包 %s 还未安装,因而不会被卸载\n" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "软件包 %s 是一个由下面的软件包提供的虚拟软件包:\n" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr " [已安装]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "请您明确地选择一个来进行安装。" -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -949,68 +949,73 @@ msgstr "" "这可能意味着这个缺失的软件包可能已被废弃,\n" "或者只能在其他发布源中找到\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "可是下列的软件包取代了它:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "软件包 %s 还没有可供安装的候选者" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "不能重新安装 %s,因为无法下载它。\n" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s 已经是最新的版本了。\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "未找到“%2$s”的“%1$s”发布版本" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "未找到“%2$s”的“%1$s”版本" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "选定了版本为 %s (%s) 的 %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr " update 命令是不需任何参数的" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "无法对状态列表目录加锁" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "我们不应该进行删除,无法启动自动删除器" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "下列软件包是自动安装的并且现在不再被使用了:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "下列软件包是自动安装的并且现在不再被使用了:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "使用'apt-get autoremove'来删除它们" -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1026,43 +1031,43 @@ msgstr "似乎自动删除器毁掉了一些软件,这不应该发生。请向 #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "下列的信息可能会对解决问题有所帮助:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "内部错误,自动删除器坏事了" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "内部错误,全部升级坏事了" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "无法找到任务 %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "无法找到软件包 %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "注意,根据正则表达式“%2$s”选中了 %1$s\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s 被设置为手动安装。\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "您可能需要运行“apt-get -f install”来纠正下列错误:" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1070,7 +1075,7 @@ msgstr "" "有未能满足的依赖关系。请尝试不指明软件包的名字来运行“apt-get -f install”(也可" "以指定一个解决办法)。" -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1081,122 +1086,122 @@ msgstr "" "因为系统无法达到您要求的状态造成的。该版本中可能会有一些您需要的软件\n" "包尚未被创建或是它们还在新到(incoming)目录中。" -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "无法安装的软件包" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "将会安装下列额外的软件包:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "建议安装的软件包:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "推荐安装的软件包:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "正在筹划升级... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "失败" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "完成" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "内部错误,问题解决器坏事了" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "要下载源代码,必须指定至少一个对应的软件包" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "无法找到与 %s 对应的源代码包" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "忽略已下载过的文件“%s”\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "您在 %s 上没有足够的空余空间" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "需要下载 %sB/%sB 的源代码包。\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "需要下载 %sB 的源代码包。\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "下载源代码 %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "有一些包文件无法下载。" -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "对于已经被解包到 %s 目录的源代码包就不再解开了\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "运行解包的命令“%s”出错。\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "请检查是否安装了“dpkg-dev”软件包。\n" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "执行构造软件包命令“%s”失败。\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "子进程出错" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "要检查生成软件包的构建依赖关系(builddeps),必须指定至少一个软件包" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "无法获得 %s 的构建依赖关系(build-dependency)信息" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr " %s 没有构建依赖关系信息。\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, 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:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1205,72 +1210,31 @@ msgstr "" "由于无法找到符合要求的软件包 %3$s 的可用版本,因此不能满足 %2$s 所要求的 %1" "$s 依赖关系" -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:%3$s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "不能满足软件包 %s 所要求的构建依赖关系。" -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "无法处理构建依赖关系" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "被支持模块:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy -#| msgid "" -#| "Usage: apt-get [options] command\n" -#| " apt-get [options] install|remove pkg1 [pkg2 ...]\n" -#| " apt-get [options] source pkg1 [pkg2 ...]\n" -#| "\n" -#| "apt-get is a simple command line interface for downloading and\n" -#| "installing packages. The most frequently used commands are update\n" -#| "and install.\n" -#| "\n" -#| "Commands:\n" -#| " update - Retrieve new lists of packages\n" -#| " upgrade - Perform an upgrade\n" -#| " install - Install new packages (pkg is libc6 not libc6.deb)\n" -#| " remove - Remove packages\n" -#| " autoremove - Remove automatically all unused packages\n" -#| " purge - Remove and purge packages\n" -#| " source - Download source archives\n" -#| " build-dep - Configure build-dependencies for source packages\n" -#| " dist-upgrade - Distribution upgrade, see apt-get(8)\n" -#| " dselect-upgrade - Follow dselect selections\n" -#| " clean - Erase downloaded archive files\n" -#| " autoclean - Erase old downloaded archive files\n" -#| " check - Verify that there are no broken dependencies\n" -#| "\n" -#| "Options:\n" -#| " -h This help text.\n" -#| " -q Loggable output - no progress indicator\n" -#| " -qq No output except for errors\n" -#| " -d Download only - do NOT install or unpack archives\n" -#| " -s No-act. Perform ordering simulation\n" -#| " -y Assume Yes to all queries and do not prompt\n" -#| " -f Attempt to correct a system with broken dependencies in place\n" -#| " -m Attempt to continue if archives are unlocatable\n" -#| " -u Show a list of upgraded packages as well\n" -#| " -b Build the source package after fetching it\n" -#| " -V Show verbose version numbers\n" -#| " -c=? Read this configuration file\n" -#| " -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp\n" -#| "See the apt-get(8), sources.list(5) and apt.conf(5) manual\n" -#| "pages for more information and options.\n" -#| " This APT has Super Cow Powers.\n" msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1353,7 +1317,7 @@ msgstr "" "以获取更多信息和选项。\n" " 本 APT 有着超级牛力。\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1589,9 +1553,13 @@ msgstr "用来覆盖的软件包不属于 %s 的任何版本" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "无法读取 %s" @@ -1621,9 +1589,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "info 和 temp 目录要求处于同一文件系统之下" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "正在读取软件包列表" @@ -1725,12 +1693,12 @@ msgstr "无法在打包文件中找到有效的主控文件" msgid "Unparsable control file" msgstr "不能解析的主控文件" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "无法读取光盘数据库 %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1738,20 +1706,20 @@ msgstr "" "请使用 apt-cdrom,通过它就可以让 APT 能识别该光盘。apt-get upgdate 不能被用来" "加入新的光盘。" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "错误的光盘" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "无法卸载现在挂载于 %s 的 CD-ROM,它可能正在使用中。" -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "找不到光盘。" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "无法找到该文件" @@ -1769,148 +1737,148 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "无效的 URI,本地的 URI 不能以 // 开头" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "正在登录" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "无法获知对方主机名" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "无法获知本地主机名" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "服务器拒绝了我们的连接,它响应道:%s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER 指令出错,服务器响应道:%s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS 指令出错,服务器响应道:%s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." msgstr "" "您指定了代理服务器,但是没有登陆脚本,Acquire::ftp::ProxyLogin 设置为空。" -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "登录脚本命令“%s”出错,服务器响应道:%s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE 指令出错,服务器响应道:%s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "连接超时" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "服务器关闭了连接" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "读错误" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "回应超出了缓存区大小。" -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "协议有误" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "写文件出错" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "不能创建套接字" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "无法连接上数据套接字,连接超时" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "无法连接被动模式的套接字。" -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo 无法得到侦听套接字" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "无法绑定套接字" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "无法在套接字上侦听" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "无法确定套接字的名字" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "无法发出 PORT 指令" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "无法识别的地址族 %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT 指令出错,服务器响应道:%s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "数据套接字连接超时" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "无法接受连接" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "把文件加入散列表时出错" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "无法获取文件,服务器响应道“%s”" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "数据套接字超时" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "数据传送出错,服务器响应道“%s”" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "查询" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "无法调用 " @@ -2018,93 +1986,93 @@ msgstr "无法为 %s 开启管道" msgid "Read error from %s process" msgstr "从 %s 进程读取数据出错" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "正在等待报头" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "受到了一行报头条目,它的长度超过了 %u 个字符" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "错误的报头条目" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "该 http 服务器发送了一个无效的应答报头" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "该 http 服务器发送了一个无效的 Content-Length 报头" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "该 http 服务器发送了一个无效的 Content-Range 报头" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "该 http 服务器的 range 支持不正常" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "无法识别的日期格式" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "select 调用出错" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "连接服务器超时" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "写输出文件时出错" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "写文件时出错" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "写文件时出错" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "从服务器读取数据时出错,对方关闭了连接" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "从服务器读取数据出错" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "截断文件失败" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "错误的报头数据" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "连接失败" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "内部错误" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "无法 mmap 一个空文件" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "无法 mmap %lu 字节的数据" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2253,13 +2221,13 @@ msgstr "无效的操作 %s" msgid "Unable to stat the mount point %s" msgstr "无法读取文件系统挂载点 %s 的状态" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "无法切换工作目录到 %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "无法读取光盘的状态" @@ -2288,51 +2256,50 @@ msgstr "无法获得锁 %s" msgid "Waited for %s but it wasn't there" msgstr "等待子进程 %s 的退出,但是它并不存在" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "子进程 %s 发生了段错误" -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "子进程 %s 发生了段错误" -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "子进程 %s 返回了一个错误号 (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "子进程 %s 异常退出了" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "无法打开文件 %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "读文件时出错,还剩 %lu 字节没有读出" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "写文件时出错,还剩 %lu 字节没有保存" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "关闭文件时出错" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "用 unlink 删除文件时出错" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "同步文件时出错" @@ -2425,16 +2392,16 @@ msgstr "候选版本" msgid "Dependency generation" msgstr "生成依赖关系" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "正在读取状态信息" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "无法打开状态文件 %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "无法写入临时状态文件 %s" @@ -2474,32 +2441,32 @@ msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误 (Ablolute dist)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误 (dist parse)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "正在打开 %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "软件包来源档 %2$s 的第 %1$u 行超长了。" -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "在安装源列表中 %2$s 中第 %1$u 行的格式有误 (type)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "无法识别在安装源列表 %3$s 里,第 %2$u 行中的软件包类别“%1$s”" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "在安装源列表中 %2$s 中第 %1$u 行的格式有误 (vendor id)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2521,7 +2488,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "软件包 %s 需要重新安装,但是我无法找到相应的安装文件。" -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2529,13 +2496,13 @@ msgstr "" "错误,pkgProblemResolver::Resolve 发生故障,这可能是有软件包被要求保持现状的" "缘故。" -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "" "无法修正错误,因为您要求某些软件包保持现状,就是它们破坏了软件包间的依赖关" "系。" -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2554,12 +2521,12 @@ msgstr "找不到“%spartial”这个目录。" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "正在下载第 %li 个文件,共 %li 个(还剩 %s 个)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "正在下载第 %li 个文件,共 %li 个" @@ -2579,16 +2546,16 @@ msgstr "获取软件包的渠道 %s 所需的驱动程序没有正常启动。" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "请把标有 “%s” 的碟片插入驱动器“%s”再按回车键。" -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "不支持“%s”打包系统" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "无法确定适合的打包系统类型" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "无法读取 %s 的状态。" @@ -2605,132 +2572,131 @@ msgstr "无法解析或打开软件包的列表或是状态文件。" msgid "You may want to run apt-get update to correct these problems" msgstr "您可能需要运行 apt-get update 来解决这些问题" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "偏好设定(preferences)文件中发现有无效的记录,无 Package 字段头" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "无法识别锁定的类型(pin type) %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "没有为版本锁定指定优先级(或为零)" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "软件包暂存区使用的是不兼容的版本控制系统" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "处理 %s (NewPackage)时出错" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "处理 %s (UsePackage1)时出错" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "处理 %s (NewFileDesc1)时出错" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "处理 %s (UsePackage2)时出错" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "处理 %s (NewFileVer1)时出错" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "处理 %s (NewVersion1)时出错" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "处理 %s (UsePackage3)时出错" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "处理 %s (NewVersion2)时出错" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "处理 %s (NewFileDesc2)时出错" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "糟了,软件包的数量了超出本程序的处理能力。" -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "糟了,软件包版本的数量了超出本程序的处理能力。" -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "糟了,软件包说明的数量了超出本程序的处理能力。" -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "糟了,依赖关系的数量超出了本程序的处理能力。" -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "处理 %s (FindPkg)时出错" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "处理 %s (CollectFileProvides)时出错" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "当处理文件依赖关系时,无法找到软件包 %s %s" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "无法获取源软件包列表 %s 的状态" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "正在收集文件所提供的软件包" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "无法写入来源缓存文件" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "无法重命名文件,%s (%s -> %s)。" -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5 校验和不符" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Hash 校验和不符" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "以下 key ID 没有可用的公钥:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2739,7 +2705,7 @@ msgstr "" "我无法找到一个对应 %s 软件包的文件。在这种情况下可能需要您手动修正这个软件" "包。(缘于架构缺失)" -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2747,25 +2713,23 @@ msgid "" msgstr "" "我无法找到对应 %s 软件包的文件。在这种情况下您可能需要手动修正这个软件包。" -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "软件包的索引文件已损坏。找不到对应软件包 %s 的 Filename: 字段。" -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "大小不符" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "无法解析软件包文件 %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "注意,选取 %s 而非 %s\n" @@ -2779,7 +2743,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "软件提供者数据块内 %s 没有包含指纹信息" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2788,42 +2752,42 @@ msgstr "" "现把 %s 作为了 CD-ROM 的挂载点\n" "正在挂载 CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "正在鉴别.. " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "已存档的标签:%s\n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "正在卸载 CD-ROM...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "现把 %s 作为了 CD-ROM 的挂载点\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "正在卸载 CD-ROM 文件系统\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "等待插入盘片……\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "正在挂载 CD-ROM 文件系统……\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "正在光盘中查找索引文件..\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2832,22 +2796,22 @@ msgstr "" "找到了 %zu 个软件包索引、%zu 个源代码包索引、%zu 个翻译索引和 %zu 个数字签" "名\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "找到标签 '%s'\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "这不是一个有效的名字,请再次命名。\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2856,34 +2820,34 @@ msgstr "" "这张光盘现在的名字是:\n" "“%s”\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "正在复制软件包列表……" -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "正在写入新的软件包源列表\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "对应于该光盘的软件包源设置项是:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "已写入 %i 条记录。\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "已写入 %i 条记录,并有 %i 个文件缺失。\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "已写入 %i 条记录,并有 %i 个文件不吻合\n" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "已写入 %i 条记录,并有 %i 个缺失,以及 %i 个文件不吻合\n" @@ -2970,7 +2934,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "无法对状态列表目录加锁" diff --git a/po/zh_TW.po b/po/zh_TW.po index 690a5a387..6569ecf85 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: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-08-27 19:43+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." @@ -23,7 +23,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "套件 %s 版本 %s 未能滿足相依性:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -93,7 +93,7 @@ msgstr "間暇空間合計:" msgid "Total space accounted for: " msgstr "統計後的空間合計:" -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "套件檔 %s 未同步。" @@ -151,14 +151,14 @@ msgstr " 版本列表:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2626 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:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -232,15 +232,15 @@ msgstr "" " -o=? 指定任意的設定選項,例如:-o dir::cache=/tmp\n" "請參閱 apt-cache(8) 及 apt.conf(5) 參考手冊以取得更多資訊。\n" -#: cmdline/apt-cdrom.cc:78 +#: cmdline/apt-cdrom.cc:77 msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgstr "請替這張光碟取個名字,像是 'Debian 2.1r1 Disk 1'" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "請把光碟放入光碟機,然後按下 [Enter] 鍵" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "請對您的光碟組中的其它光碟重複相同的操作。" @@ -305,7 +305,7 @@ msgstr "" " -c=? 讀取指定的設定檔\n" " -o=? 指定任意的設定選項,例如:-o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "無法寫入 %s" @@ -645,7 +645,7 @@ msgstr "無法將 %s 更名為 %s" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 #, c-format msgid "Regex compilation error - %s" msgstr "編譯正規表示式時發生錯誤 - %s" @@ -746,118 +746,118 @@ msgstr "移除 %lu 個,有 %lu 個未被升級。\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu 個沒有完整得安裝或移除。\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "正在修正相依關係..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " 失敗。" -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "無法修正相依關係" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "無法將升級計劃最小化" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " 完成" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "您也許得執行 `apt-get -f install' 以修正這些問題。" -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "未能滿足相依關係。試試 -f 選項。" -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "【警告】:無法驗證下列套件!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "忽略了驗證警告。\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "是否不經驗證就安裝這些套件?[y/N]" -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "有部份套件無法驗證" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "發生了問題,且 -y 並沒有和 --force-yes 搭配使用" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "內部錯誤,在損毀的套件上執行 InstallPackages!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "有套件需要被移除,但卻被禁止移除。" -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "內部錯誤,排序未能完成" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 msgid "Unable to lock the download directory" msgstr "無法鎖定下載目錄" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "無法讀取來源列表。" -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "怪哉... 檔案大小不符,請發信給 apt@packages.debian.org" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "需要下載 %sB/%sB 的套件檔。\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "需要下載 %sB 的套件檔。\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "此操作完成之後,會多佔用 %sB 的磁碟空間。\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "此操作完成之後,會空出 %sB 的磁碟空間。\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 #, c-format msgid "Couldn't determine free space in %s" msgstr "無法確認 %s 的未使用空間" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "在 %s 裡沒有足夠的的未使用空間。" -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "雖然指定了 Trivial Only(自動答 NO)選項,但這並不是 trivial 操作。" -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Yes, do as I say!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -868,28 +868,28 @@ msgstr "" "請輸入 '%s' 這個句子以繼續進行\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "放棄執行。" -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "是否繼續進行 [Y/n]?" -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "無法取得 %s,%s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "有部份檔案無法下載" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 msgid "Download complete and in download only mode" msgstr "下載完成,且這是『僅下載』模式" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -897,47 +897,47 @@ msgstr "" "有部份套件檔無法取得,試著執行 apt-get update 或者試著加上 --fix-missing 選" "項?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "目前尚未支援 --fix-missing 和媒體抽換" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "無法修正欠缺的套件。" -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "放棄安裝。" -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1058 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "注意,選擇了以 %s 替代 %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1068 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "忽略 %s,它已被安裝且沒有計劃要進行升級。\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1086 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "套件 %s 並沒有被安裝,所以也不會被移除\n" -#: cmdline/apt-get.cc:1095 +#: cmdline/apt-get.cc:1097 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "套件 %s 是虛擬套件,提供者為:\n" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1109 msgid " [Installed]" msgstr "【已安裝】" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1114 msgid "You should explicitly select one to install." msgstr "請您明確地選擇一個來進行安裝。" -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1119 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -947,68 +947,73 @@ msgstr "" "無法取得套件 %s,但它卻被其它的套件引用了。\n" "這意味著這個套件可能已經消失了、被廢棄了,或是只能由其他的來源取得\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1138 msgid "However the following packages replace it:" msgstr "然而,下列的套件取代了它:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1141 #, c-format msgid "Package %s has no installation candidate" msgstr "套件 %s 沒有可安裝的候選版本" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1161 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "無法重新安裝 %s,因為它無法下載。\n" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1169 #, c-format msgid "%s is already the newest version.\n" msgstr "%s 已經是最新版本了。\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1198 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "找不到 '%2$s' 的 '%1$s' 發行版" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1200 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "找不到 '%s' 版的 '%s'" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1206 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "選定的版本為 %3$s 的 %1$s (%2$s)\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1323 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1360 msgid "The update command takes no arguments" msgstr "update 指令不需任何參數" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1373 msgid "Unable to lock the list directory" msgstr "無法鎖定列表目錄" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1429 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "我們沒有計劃要刪除任何東西,無法啟動 AutoRemover" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1478 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "以下套件是被自動安裝進來的,且已不再會被用到了:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1480 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "以下套件是被自動安裝進來的,且已不再會被用到了:" + +#: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." msgstr "使用 'apt-get autoremove' 來將其移除。" -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1486 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1026,43 +1031,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 msgid "The following information may help to resolve the situation:" msgstr "以下的資訊或許有助於解決當前的情況:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1493 msgid "Internal Error, AutoRemover broke stuff" msgstr "內部錯誤,AutoRemover 處理失敗" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1512 msgid "Internal error, AllUpgrade broke stuff" msgstr "內部錯誤,AllUpgrade 造成了損壞" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1567 #, c-format msgid "Couldn't find task %s" msgstr "無法找到主題 %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 #, c-format msgid "Couldn't find package %s" msgstr "無法找到套件 %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1705 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "注意,根據正規表示式 '%2$s' 而選擇了 %1$s\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1736 #, c-format msgid "%s set to manually installed.\n" msgstr "%s 被設定為手動安裝。\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1749 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "您也許得執行 `apt-get -f install' 以修正這些問題:" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1752 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1070,7 +1075,7 @@ msgstr "" "未能滿足相依關係。請試著不指定套件來執行 'apt-get -f install'(或採取其它的解" "決方案)。" -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1764 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" @@ -1080,122 +1085,122 @@ msgstr "" "有些套件無法安裝。這可能意謂著您的要求難以解決,或是若您使用的是\n" "unstable 發行版,可能有些必要的套件尚未建立,或是被移出 Incoming 了。" -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1782 msgid "Broken packages" msgstr "損毀的套件" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1811 msgid "The following extra packages will be installed:" msgstr "下列的額外套件將被安裝:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1900 msgid "Suggested packages:" msgstr "建議套件:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1901 msgid "Recommended packages:" msgstr "推薦套件:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1930 msgid "Calculating upgrade... " msgstr "籌備升級中... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "失敗" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1938 msgid "Done" msgstr "完成" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 msgid "Internal error, problem resolver broke stuff" msgstr "內部錯誤,問題排除器造成了損壞" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2113 msgid "Must specify at least one package to fetch source for" msgstr "在取得原始碼時必須至少指定一個套件" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 #, c-format msgid "Unable to find a source package for %s" msgstr "無法找到 %s 的原始碼套件" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2192 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "略過已下載的檔案 '%s'\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2223 #, c-format msgid "You don't have enough free space in %s" msgstr "在 %s 裡沒有足夠的的未使用空間" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2229 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "需要下載 %sB/%sB 的原始套件檔。\n" -#: cmdline/apt-get.cc:2195 +#: cmdline/apt-get.cc:2232 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "需要下載 %sB 的原始套件檔。\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2238 #, c-format msgid "Fetch source %s\n" msgstr "取得原始碼 %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2269 msgid "Failed to fetch some archives." msgstr "無法取得某些套件檔。" -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2297 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "不解開,因原始碼已解開至 %s\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2309 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "解開指令 '%s' 失敗。\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2310 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "請檢查是否已安裝了 'dpkg-dev' 套件。\n" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2327 #, c-format msgid "Build command '%s' failed.\n" msgstr "編譯指令 '%s' 失敗。\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2346 msgid "Child process failed" msgstr "子程序失敗" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2362 msgid "Must specify at least one package to check builddeps for" msgstr "在檢查編譯相依關係時必須至少指定一個套件" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2390 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "無法取得 %s 的編譯相依關係資訊" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2410 #, c-format msgid "%s has no build depends.\n" msgstr "%s 沒有編譯相依關係。\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2462 #, 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:2478 +#: cmdline/apt-get.cc:2515 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1203,30 +1208,30 @@ msgid "" msgstr "" "無法滿足 %2$s 所要求的 %1$s 相依關係,因為套件 %3$s 沒有版本符合其版本需求" -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2551 #, 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:2541 +#: cmdline/apt-get.cc:2578 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "無法滿足 %2$s 的相依關係 %1$s:%3$s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "無法滿足套件 %s 的編譯相依關係。" -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" msgstr "無法處理編譯相依關係" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2631 msgid "Supported modules:" msgstr "已支援模組:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2672 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1310,7 +1315,7 @@ msgstr "" "以取得更多資訊和選項。\n" " 該 APT 有著超級牛力。\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2839 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1545,9 +1550,13 @@ msgstr "以無版本的 %s 覆寫原始套件" msgid "File %s/%s overwrites the one in the package %s" 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/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "無法讀取 %s" @@ -1577,9 +1586,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "資料目錄與暫存目錄需位於同一檔案系統中" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "正在讀取套件清單" @@ -1681,32 +1690,32 @@ msgstr "找不到可用的 control 檔" msgid "Unparsable control file" msgstr "無法分析的 control 檔" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "無法讀取光碟片資料庫 %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" msgstr "" "請用 apt-cdrom 來讓 APT 能辨識這張光碟。apt-get update 是不能用來新增光碟的" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "不正確的光碟" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "無法卸載 %s 裡的光碟片,或許它仍在使用中。" -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "找不到磁碟。" -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "找不到檔案" @@ -1724,148 +1733,148 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "不正確的 URI,本機 URI 不應以 // 開頭" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "登入中" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "無法解析對方主機名稱" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "無法解析本機名稱" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "伺服器不接受連線,並回應:%s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "USER 指令失敗,伺服器回應:%s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "PASS 指令失敗,伺服器回應:%s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." msgstr "" "指定了代理伺服器,但沒有指定登入 script,Acquire::ftp::ProxyLogin 是空的。" -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "登入 script 指令 '%s' 失敗,伺服器回應:%s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "TYPE 指令失敗,伺服器回應:%s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "連線逾時" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "伺服器已關閉連線" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "讀取錯誤" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "回應超過緩衝區長度。" -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "協定失敗" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "寫入錯誤" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "無法建立 Socket" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "無法和 data socket 連線,連線逾時" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "無法和 passive socket 連線。" -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo 無法取得監聽 socket" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "無法 bind 至 socket" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "無法監聽 socket" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "無法解析 socket 名稱" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "無法送出 PORT 指令" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "未知的地址家族 %u (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT 指令失敗,伺服器回應:%s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Data socket 連線逾時" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "無法接受連線" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "有問題的雜湊檔" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "無法取得檔案,伺服器回應 '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Data socket 連線逾時" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "資料傳輸失敗,伺服器回應 '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "查詢" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "無法 invoke " @@ -1973,93 +1982,93 @@ msgstr "無法開啟管線給 %s 使用" msgid "Read error from %s process" msgstr "由 %s 程序讀取錯誤" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "等待標頭" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "取得一個單行超過 %u 字元的標頭" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "標頭行錯誤" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "HTTP 伺服器傳送了一個無效的回覆標頭" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "HTTP 伺服器傳送了一個無效的 Content-Length 標頭" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "HTTP 伺服器傳送了一個無效的 Content-Range 標頭" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "這個 HTTP 伺服器的範圍支援有問題" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "未知的資料格式" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "選擇失敗" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "連線逾時" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "在寫入輸出檔時發生錯誤" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "在寫入檔案時發生錯誤" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "在寫入該檔時發生錯誤" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "在讀取伺服器時發生錯誤,遠端主機已關閉連線" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "在讀取伺服器時發生錯誤" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "無法截短檔案" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "錯誤的標頭資料" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "連線失敗" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "內部錯誤" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "不能 mmap 空白檔案" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "無法 mmap 到 %lu 位元組" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2208,13 +2217,13 @@ msgstr "無效的操作 %s" msgid "Unable to stat the mount point %s" msgstr "無法取得掛載點 %s 的狀態" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "無法切換至 %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "無法取得 CD-ROM 的狀態" @@ -2243,51 +2252,50 @@ msgstr "無法將 %s 鎖定" msgid "Waited for %s but it wasn't there" msgstr "等待 %s 但是它並不存在" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "子程序 %s 收到一個記憶體錯誤。" -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "子程序 %s 收到一個記憶體錯誤。" -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "子程序 %s 傳回錯誤碼 (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "子程序 %s 不預期得結束" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "無法開啟檔案 %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "讀取,仍有 %lu 未讀但已無空間" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "寫入,仍有 %lu 待寫入但已沒辨法" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "在關閉檔案時發生問題" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "在刪除檔案時發生問題" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "在同步檔案時發生問題" @@ -2380,16 +2388,16 @@ msgstr "候選版本" msgid "Dependency generation" msgstr "建立相依關係" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "正在讀取狀態資料" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "無法開啟 StateFile %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "無法寫入暫存的 StateFile %s" @@ -2429,32 +2437,32 @@ msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(絕對發行版)" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "來源列表 %2$s 中的 %1$lu 行的格式錯誤(發行版分析)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "正在開啟 %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "來源列表 %2$s 中的第 %1$u 行太長。" -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "來源列表 %2$s 中的第 %1$u 行的格式錯誤(類型)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "未知的類型 '%1$s',位於在來源列表 %3$s 中的第 %2$u 行" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "來源列表 %2$s 中的第 %1$u 行的格式錯誤(提供者 ID)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:426 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2475,7 +2483,7 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "套件 %s 需要重新安裝,但找不到它的套件檔。" -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2483,11 +2491,11 @@ msgstr "" "錯誤,pkgProblemResolver::Resolve 的建立中斷了,這可能肇因於保留 (hold) 套" "件。" -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "無法修正問題,您保留 (hold) 了損毀的套件。" -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2505,12 +2513,12 @@ msgstr "找不到套件檔目錄 %spartial。" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "正在取得檔案 %li/%li(還有 %s)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "正在取得檔案 %li/%li" @@ -2530,16 +2538,16 @@ msgstr "安裝方式 %s 沒有正確啟動" msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "請把標籤為 '%s' 的光碟放入 '%s' 裝置中,然後按下 [Enter] 鍵。" -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "不支援的套件包裝系統 '%s'" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "無法確認合適的套件包裝系統類型" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "無法取得 %s 的狀態。" @@ -2556,132 +2564,131 @@ msgstr "無法分析或開啟套件清單或狀況檔。" msgid "You may want to run apt-get update to correct these problems" msgstr "您也許得執行 apt-get update 以修正這些問題" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "個人設定檔中有些不正確資料,沒有以 Package 開頭" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "無法分析鎖定類型 %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "銷定並沒有優先順序之分(或零)" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "快取使用的是不相容的版本系統" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "在處理 %s 時發生錯誤 (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "在處理 %s 時發生錯誤 (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "在處理 %s 時發生錯誤 (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "在處理 %s 時發生錯誤 (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "在處理 %s 時發生錯誤 (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "在處理 %s 時發生錯誤 (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "在處理 %s 時發生錯誤 (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "在處理 %s 時發生錯誤 (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "在處理 %s 時發生錯誤 (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "哇呀,您已經超過這個 APT 所能處理的套件名稱數量了。" -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "哇呀,您已經超過這個 APT 所能處理的版本數量了。" -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "哇呀,您已經超過這個 APT 所能處理的說明數量了。" -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "哇呀,您已經超過這個 APT 所能處理的相依關係數量了。" -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "在處理 %s 時發生錯誤 (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "在處理 %s 時發生錯誤 (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "在計算檔案相依性時找不到套件 %s %s" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "無法取得來源套件列表 %s 的狀態" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "正在收集檔案提供者" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "在儲存來源快取時 IO 錯誤" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "無法重新命名,%s (%s -> %s)。" -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5Sum 不符" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Hash Sum 不符" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "無法取得以下的密鑰 ID 的公鑰:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2690,20 +2697,20 @@ msgstr "" "找不到 %s 套件的某個檔案。這意味著您可能要手動修復這個套件。(因為找不到平" "台)" -#: apt-pkg/acquire-item.cc:1290 +#: apt-pkg/acquire-item.cc:1275 #, 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:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "這個套件的索引檔損壞了。沒有套件 %s 的 Filename: 欄位。" -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "大小不符" @@ -2727,7 +2734,7 @@ msgstr "在 Release 檔 %s 裡沒有 Hash 項目" msgid "Vendor block %s contains no fingerprint" msgstr "提供者區塊 %s 沒有包含指紋碼" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2736,64 +2743,64 @@ msgstr "" "使用光碟機掛載點 %s\n" "正在掛載光碟機\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "正在識別.." -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "保存標籤:%s\n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "正在卸載光碟機...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "使用光碟機掛載點 %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "正在卸載光碟機\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "正在等待碟片...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "正在掛載光碟機... \n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "正在掃描碟片中的索引檔..\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" "zu signatures\n" msgstr "找到了 %zu 個套件索引,%zu 個原始碼索引,%zu 個翻譯索引及 %zu 個簽章\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "找到標籤 '%s'\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "這並不是正確的名稱,請重試。\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2802,34 +2809,34 @@ msgstr "" "這個碟片名為:\n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "正在複製套件清單..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "正在寫入新的來源列表\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "該碟片的來源列表項目為:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "寫入 %i 筆紀錄。\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "寫入 %i 筆紀綠,其中有 %i 個檔案遺失了。\n" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "寫入 %i 筆紀綠,其中有 %i 個檔案不符\n" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "寫入 %i 筆紀綠,其中有 %i 個檔案遺失了,有 %i 個檔案不符\n" @@ -2916,7 +2923,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "無法鎖定列表目錄" -- cgit v1.2.3 From f710c76235d47f9f9ea692cd042147cc43949954 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Thu, 27 Aug 2009 20:30:05 +0200 Subject: French translation update --- po/fr.po | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/po/fr.po b/po/fr.po index e19e8b901..8247d03c9 100644 --- a/po/fr.po +++ b/po/fr.po @@ -9,13 +9,13 @@ msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-08-27 19:43+0200\n" -"PO-Revision-Date: 2009-07-21 23:33+0200\n" +"PO-Revision-Date: 2009-08-27 20:29+0200\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 0.3\n" +"X-Generator: Lokalize 1.0\n" "Plural-Forms: Plural-Forms: nplurals=2; plural=n>1;\n" #: cmdline/apt-cache.cc:141 @@ -1036,12 +1036,10 @@ msgstr "" "Les paquets suivants ont été installés automatiquement et ne sont plus " "nécessaires :" -#: cmdline/apt-get.cc:1480 -#, fuzzy, c-format +#: cmdline/apt-get.cc:1480, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" -"Les paquets suivants ont été installés automatiquement et ne sont plus " -"nécessaires :" +"%lu paquets ont été installés automatiquement et ne sont plus nécessaires.\n" #: cmdline/apt-get.cc:1481 msgid "Use 'apt-get autoremove' to remove them." @@ -1268,8 +1266,7 @@ msgstr "Impossible de satisfaire les dépendances %s pour %s : %s" #: cmdline/apt-get.cc:2594 #, c-format msgid "Build-dependencies for %s could not be satisfied." -msgstr "" -"Les dépendances de compilation pour %s ne peuvent pas être satisfaites." +msgstr "Les dépendances de compilation pour %s ne peuvent pas être satisfaites." #: cmdline/apt-get.cc:2599 msgid "Failed to process build dependencies" @@ -2801,8 +2798,7 @@ msgstr "Somme de contrôle de hachage incohérente" #: apt-pkg/acquire-item.cc:1106 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" +msgstr "Aucune clé publique n'est disponible pour la/les clé(s) suivante(s) :\n" #: apt-pkg/acquire-item.cc:1216 #, c-format -- cgit v1.2.3 From 6abe26994fd82bef9bc357055d1dc4feee261a4d Mon Sep 17 00:00:00 2001 From: Michael Vogt <michael.vogt@ubuntu.com> Date: Fri, 28 Aug 2009 21:07:55 +0200 Subject: * apt-pkg/acquire-item.cc: - do not segfault on invalid items (closes: #544080) --- .bzr-builddeb/default.conf.orig | 2 -- apt-pkg/acquire-item.cc | 26 +++++++++++++------------- configure.in | 2 +- debian/changelog | 2 ++ 4 files changed, 16 insertions(+), 16 deletions(-) delete mode 100644 .bzr-builddeb/default.conf.orig diff --git a/.bzr-builddeb/default.conf.orig b/.bzr-builddeb/default.conf.orig deleted file mode 100644 index 9c55498ce..000000000 --- a/.bzr-builddeb/default.conf.orig +++ /dev/null @@ -1,2 +0,0 @@ -[BUILDDEB] -native = true diff --git a/apt-pkg/acquire-item.cc b/apt-pkg/acquire-item.cc index 94341c81a..afb3daad3 100644 --- a/apt-pkg/acquire-item.cc +++ b/apt-pkg/acquire-item.cc @@ -596,21 +596,21 @@ void pkgAcqIndex::Failed(string Message,pkgAcquire::MethodConfig *Cnf) /*{{{*/ if(Desc.URI.substr(nameLen) != *t) continue; - // we want to try it with the next extension + // we want to try it with the next extension (and make sure to + // not skip over the end) t++; + if (t == types.end()) + break; - if (t != types.end()) - { - Desc.URI = Desc.URI.substr(0, nameLen) + *t; - - new pkgAcqIndex(Owner, RealURI, Desc.Description, Desc.ShortDesc, - ExpectedHash, string(".").append(*t)); - - Status = StatDone; - Complete = false; - Dequeue(); - return; - } + // queue new download + Desc.URI = Desc.URI.substr(0, nameLen) + *t; + new pkgAcqIndex(Owner, RealURI, Desc.Description, Desc.ShortDesc, + ExpectedHash, string(".").append(*t)); + + Status = StatDone; + Complete = false; + Dequeue(); + return; } // on decompression failure, remove bad versions in partial/ diff --git a/configure.in b/configure.in index ff11078b3..a56544c6a 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.7.22.3") +AC_DEFINE_UNQUOTED(VERSION,"0.7.23.1") PACKAGE="apt" AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE") AC_SUBST(PACKAGE) diff --git a/debian/changelog b/debian/changelog index 5fff5fdc5..ab9457086 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,8 @@ apt (0.7.23.1) UNRELEASED; urgency=low triggers-pending state. dpkg will deal with the trigger and it if does it before we trigger it, dpkg will error out (LP: #414631) + * apt-pkg/acquire-item.cc: + - do not segfault on invalid items (closes: #544080) -- Michael Vogt <mvo@debian.org> Fri, 28 Aug 2009 18:53:20 +0200 -- cgit v1.2.3 From 85b6d40dc0d41cc196f05e921260a592fe0ffd94 Mon Sep 17 00:00:00 2001 From: Michael Vogt <mvo@debian.org> Date: Fri, 28 Aug 2009 23:06:18 +0200 Subject: releasing version 0.7.23.1 --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index ab9457086..c16b47e32 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -apt (0.7.23.1) UNRELEASED; urgency=low +apt (0.7.23.1) unstable; urgency=low [ Michael Vogt ] * apt-pkg/pkgcache.cc: @@ -9,7 +9,7 @@ apt (0.7.23.1) UNRELEASED; urgency=low * apt-pkg/acquire-item.cc: - do not segfault on invalid items (closes: #544080) - -- Michael Vogt <mvo@debian.org> Fri, 28 Aug 2009 18:53:20 +0200 + -- Michael Vogt <mvo@debian.org> Fri, 28 Aug 2009 21:53:20 +0200 apt (0.7.23) unstable; urgency=low -- cgit v1.2.3 From 50c409c42a971c6e8a25cb32a87992474247834b Mon Sep 17 00:00:00 2001 From: David Kalnischkies <kalnischkies@gmail.com> Date: Fri, 4 Sep 2009 19:32:45 +0200 Subject: add a helper to easily get a vector of strings from the configuration --- apt-pkg/contrib/configuration.cc | 19 +++++++++++++++++++ apt-pkg/contrib/configuration.h | 3 +++ debian/changelog | 2 ++ 3 files changed, 24 insertions(+) diff --git a/apt-pkg/contrib/configuration.cc b/apt-pkg/contrib/configuration.cc index 48a5f0bff..b83ece3e4 100644 --- a/apt-pkg/contrib/configuration.cc +++ b/apt-pkg/contrib/configuration.cc @@ -223,6 +223,25 @@ string Configuration::FindDir(const char *Name,const char *Default) const return Res; } /*}}}*/ +// Configuration::FindVector - Find a vector of values /*{{{*/ +// --------------------------------------------------------------------- +/* Returns a vector of config values under the given item */ +vector<string> Configuration::FindVector(const char *Name) const +{ + vector<string> Vec; + const Item *Top = Lookup(Name); + if (Top == NULL) + return Vec; + + Item *I = Top->Child; + while(I != NULL) + { + Vec.push_back(I->Value); + I = I->Next; + } + return Vec; +} + /*}}}*/ // Configuration::FindI - Find an integer value /*{{{*/ // --------------------------------------------------------------------- /* */ diff --git a/apt-pkg/contrib/configuration.h b/apt-pkg/contrib/configuration.h index 2534692a3..e2da83f5b 100644 --- a/apt-pkg/contrib/configuration.h +++ b/apt-pkg/contrib/configuration.h @@ -31,6 +31,7 @@ #include <string> +#include <vector> #include <iostream> using std::string; @@ -70,6 +71,8 @@ class Configuration string Find(const string Name,const char *Default = 0) const {return Find(Name.c_str(),Default);}; string FindFile(const char *Name,const char *Default = 0) const; string FindDir(const char *Name,const char *Default = 0) const; + std::vector<string> FindVector(const string &Name) const; + std::vector<string> FindVector(const char *Name) const; int FindI(const char *Name,int Default = 0) const; int FindI(const string Name,int Default = 0) const {return FindI(Name.c_str(),Default);}; bool FindB(const char *Name,bool Default = false) const; diff --git a/debian/changelog b/debian/changelog index 550addc92..349c95038 100644 --- a/debian/changelog +++ b/debian/changelog @@ -18,6 +18,8 @@ apt (0.7.24) UNRELEASED; urgency=low - activate DOT_MULTI_TARGETS, it is default on since doxygen 1.5.9 * buildlib/po4a_manpage.mak, doc/makefile, configure: - simplify the makefiles needed for po4a manpages + * apt-pkg/contrib/configuration.cc: + - add a helper to easily get a vector of strings from the config -- David Kalnischkies <kalnischkies@gmail.com> Fri, 28 Aug 2009 09:40:08 +0200 -- cgit v1.2.3 From 36fd3a5128330620bebd5897d747f5a898f1f48b Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sat, 5 Sep 2009 18:40:28 +0200 Subject: Switch French manpages translation to po4a --- debian/changelog | 5 + doc/fr/addendum/debiandoc_fr.add | 7 + doc/fr/addendum/xml_fr.add | 7 + doc/fr/apt-cache.fr.8.xml | 474 -- doc/fr/apt-cdrom.fr.8.xml | 159 - doc/fr/apt-config.fr.8.xml | 116 - doc/fr/apt-extracttemplates.fr.1.xml | 88 - doc/fr/apt-ftparchive.fr.1.xml | 631 --- doc/fr/apt-get.fr.8.xml | 581 --- doc/fr/apt-key.fr.8.xml | 122 - doc/fr/apt-secure.fr.8.xml | 217 - doc/fr/apt-sortpkgs.fr.1.xml | 84 - doc/fr/apt.conf.fr.5.xml | 831 ---- doc/fr/apt.ent.fr | 272 -- doc/fr/apt_preferences.fr.5.xml | 581 --- doc/fr/makefile | 58 +- doc/fr/sources.list.fr.5.xml | 257 - doc/po/fr.po | 8823 ++++++++++++++++++++++++++++++++++ 18 files changed, 8845 insertions(+), 4468 deletions(-) create mode 100644 doc/fr/addendum/debiandoc_fr.add create mode 100644 doc/fr/addendum/xml_fr.add delete mode 100644 doc/fr/apt-cache.fr.8.xml delete mode 100644 doc/fr/apt-cdrom.fr.8.xml delete mode 100644 doc/fr/apt-config.fr.8.xml delete mode 100644 doc/fr/apt-extracttemplates.fr.1.xml delete mode 100644 doc/fr/apt-ftparchive.fr.1.xml delete mode 100644 doc/fr/apt-get.fr.8.xml delete mode 100644 doc/fr/apt-key.fr.8.xml delete mode 100644 doc/fr/apt-secure.fr.8.xml delete mode 100644 doc/fr/apt-sortpkgs.fr.1.xml delete mode 100644 doc/fr/apt.conf.fr.5.xml delete mode 100644 doc/fr/apt.ent.fr delete mode 100644 doc/fr/apt_preferences.fr.5.xml delete mode 100644 doc/fr/sources.list.fr.5.xml create mode 100644 doc/po/fr.po diff --git a/debian/changelog b/debian/changelog index e59f169a5..48768ad88 100644 --- a/debian/changelog +++ b/debian/changelog @@ -19,6 +19,11 @@ apt (0.7.24) UNRELEASED; urgency=low * buildlib/po4a_manpage.mak, doc/makefile, configure: - simplify the makefiles needed for po4a manpages + [ Christian Perrier ] + * doc/fr/*, doc/po/fr.po: + - remove the old fr man page translation and replace it with + the new po4a-powered translation + -- David Kalnischkies <kalnischkies@gmail.com> Fri, 28 Aug 2009 09:40:08 +0200 apt (0.7.23.1) unstable; urgency=low diff --git a/doc/fr/addendum/debiandoc_fr.add b/doc/fr/addendum/debiandoc_fr.add new file mode 100644 index 000000000..987b5b1f5 --- /dev/null +++ b/doc/fr/addendum/debiandoc_fr.add @@ -0,0 +1,7 @@ +PO4A-HEADER:mode=after;position=manbugs;beginboundary=^</refentry> + <refsect1><title>Traducteurs + Jérôme Marant, Philippe Batailler, Christian Perrier bubulle@debian.org (2000, 2005, 2009), + Équipe de traduction francophone de Debian debian-l10n-french@lists.debian.org + + + diff --git a/doc/fr/addendum/xml_fr.add b/doc/fr/addendum/xml_fr.add new file mode 100644 index 000000000..987b5b1f5 --- /dev/null +++ b/doc/fr/addendum/xml_fr.add @@ -0,0 +1,7 @@ +PO4A-HEADER:mode=after;position=manbugs;beginboundary=^ + Traducteurs + Jérôme Marant, Philippe Batailler, Christian Perrier bubulle@debian.org (2000, 2005, 2009), + Équipe de traduction francophone de Debian debian-l10n-french@lists.debian.org + + + diff --git a/doc/fr/apt-cache.fr.8.xml b/doc/fr/apt-cache.fr.8.xml deleted file mode 100644 index 043d9ec99..000000000 --- a/doc/fr/apt-cache.fr.8.xml +++ /dev/null @@ -1,474 +0,0 @@ - - -%aptent; - -]> - - - - - &apt-author.jgunthorpe; - &apt-author.team; - &apt-email; - &apt-product; - - 29 Fvrier 2004 - - - -apt-cache - 8 - - - - - apt-cache - Gestion des paquets et manipulation du cache par APT - - - - - - apt-cache - - - - - add fichier - gencaches - showpkg paquet - showsrc paquet - stats - dump - dumpavail - unmet - search regex - show paquet - depends paquet - rdepends paquet - pkgnames prefix - dotty paquet - policy paquets - madison paquets - - - - - Description - -apt-cache ralise diffrentes oprations sur le cache de paquet d' -APT. apt-cache ne manipule pas l'tat du systme mais fournit des -moyens de recherche dans les mtadonnes d'un paquet desquelles il extrait -d'intressantes informations. - - - moins que l'option ou ne soit donne, l'une -des commandes suivantes doit tre prsente. - - - add fichier(s) - -La commande add ajoute des fichiers indexant des paquets au cache des -paquets. Cela sert uniquement pour le dbogage. - - - - gencaches - -La commande gencaches fait la mme chose que -apt-get check. Elle construit les caches des sources et des paquets - partir des sources rpertories dans &sources-list; et dans -/var/lib/dpkg/status. - - - - showpkg paquet(s) - -La commande showpkg affiche des informations sur les paquets donns -en argument. Les arguments restants sont les noms de paquets. Les versions -disponibles et les dpendances inverses de chaque paquet rpertori sont -listes, ainsi que les dpendances normales pour chaque version. Les -dpendances normales d'un paquet sont constitues par les paquets dont il -dpend ; les -dpendances inverses sont les paquets qui dpendent du paquet en question. -Les dpendances normales doivent donc tre satisfaites et les dpendances -inverses n'ont pas besoin de l'tre. Ainsi, la commande -apt-cache showpkg libreadline2 donnera ce rsultat : - - -Package: libreadline2 -Versions: 2.1-12(/var/state/apt/lists/foo_Packages), -Reverse Depends: - libreadlineg2,libreadline2 - libreadline2-altdev,libreadline2 -Dependencies: -2.1-12 - libc5 (2 5.4.0-0) ncurses3.0 (0 (null)) -Provides: -2.1-12 - -Reverse Provides: - - - -On peut voir que libreadline2, version 2.1-12, dpend de libc5, ncurses3.0 ; -ces paquets doivent tre installs au pralable pour que -libreadline2 fonctionne. leur tour, libreadlineg2 et libreadline2-altdev -dpendent de libreadline2. Si libreadline2 est install, libc5 et ncurses3.0 -doivent tre installs ; libreadlineg2 et libreadline2-altdev -n'ont pas l'tre. Pour connatre le sens de la fin de chane, il est -prfrable de consulter le code source d'APT. - - - - stats - -La commande stats affiche des statistiques propos du cache. Aucun -autre argument n'est attendu. Voici les informations rapportes : - - -Total package names est le nombre de paquets trouvs dans le cache. - - - -Normal packages est le nombre de paquets simples, -ordinaires ; ces paquets tolrent une correspondance bijective entre -leur nom et le nom utilis par les autres paquets pour les qualifier comme -dpendance. La majorit des paquets appartient cette catgorie. - - - -Pure virtual packages est le nombre des paquets qui n'existent que -sous la forme d'un nom reprsentant un paquet virtuel ; ces paquets - fournissent  seulement un nom de paquet virtuel et aucun paquet -n'utilise vritablement ce nom. Par exemple, au sein du systme Debian -GNU/Linux, le nom  mail-transport-agent  est un paquet virtuel -pur ; plusieurs paquets peuvent  remplir  ce nom - mail-transport-agent , mais il -n'existe aucun paquet nomm  mail-transport-agent . - - - -Single virtual packages est le nombre de paquets virtuels qui ne -peuvent tre remplis que par un seul paquet. Par exemple, au sein du systme -Debian GNU/Linux,  X11-text-viewer  est un paquet virtuel ; -seul le paquet  xless  remplit  X11-text-viewer . - - - -Mixed virtual packages est le nombre des paquets qui remplissent un -paquet virtuel particulier ou dont le nom est un nom de paquet virtuel. -Par exemple, au sein du systme Debian GNU/Linux,  debconf  est -un paquet rel et il est aussi fourni par  debconf-tiny . - - - -Missing est le nombre de paquets rfrencs dans une -dpendance mais qui ne sont fournis par aucun paquet. Les paquets manquants -peuvent tre mis en vidence quand on n'accde pas une distribution complte -ou si un paquet (rel ou virtuel) a t sorti d'une distribution. -Habituellement on les trouve dans les champs  Conflicts . - - - -Total distinct versions est le nombre de versions de paquets trouves -dans le cache ; cette valeur est par consquent au moins gale au -nombre total de paquets. Quand on accde plus d'une distribution -( stable  et  unstable , par exemple), cette valeur -peut tre considrablement plus grande que le nombre total de paquets. - - - -Total dependencies est le nombre de relations de dpendances -dclares par tous les paquets prsents dans le cache. - - - - - - - showsrc paquet(s) - - showsrc affiche toutes les entres de paquet source qui -correspondent aux noms donns. Toutes les versions sont affiches et toutes -les entres qui dclarent que ces noms correspondent des paquets binaires. - - - - - - dump - -La commande dump affiche un court rsum sur chaque paquet du cache. -Elle est d'abord destine au dbogage. - - - - dumpavail - -La commande dumpavail affiche sur la sortie standard une liste des -paquets disponibles. Elle convient une utilisation avec &dpkg; et la -mthode &dselect; s'en sert. - - - - unmet - -La commande unmet affiche un rsum concernant toutes les -dpendances absentes dans le cache de paquets. - - - - show paquet(s) - -La commande show est semblable -dpkg --print-avail ; -elle affiche des informations sur les paquets donns en argument. - - - - search regex [ regex ... ] - -La commande search recherche l'expression rgulire donne en -argument sur tous les paquets disponibles. Elle cherche une occurrence de la -chane dans les noms de paquets et dans les descriptions puis elle affiche -le nom du paquet et sa description courte. Quand on donne l'option -, la sortie est identique show pour chaque -paquet ; l'option ne recherche pas la chane -dans les descriptions longues mais seulement dans les noms de paquets. - -On peut utiliser des arguments distincts pour indiquer des expressions -rgulires diffrentes sur lesquelles sera ralis un  et  logique. - - - - - depends paquet(s) - -La commande depends affiche la liste de toutes les dpendances -d'un paquet et la liste de tous les paquets possibles qui satisfont ces -dpendances. - - - - rdepends paquet(s) - -La commande rdepends affiche la liste de toutes les dpendances inverses -d'un paquet. - - - - pkgnames [ prefix ] - -Cette commande affiche le nom de chaque paquet du systme. Un prfixe pour -filtrer la liste des noms peut tre donn en argument. La sortie est -approprie une utilisation au sein d'une fonction complte de shell ; -elle est produite trs rapidement. On utilise au mieux cette commande avec -l'option . - - - - dotty paquet(s) - -La commande dotty prend une liste de paquets sur la ligne de commande -et affiche une sortie approprie une utilisation par la commande dotty du -paquet GraphViz. -Il en rsulte un ensemble de noeuds et d'arcs reprsentant les relations -entre les paquets. Par dfaut les paquets donns en argument suivent toutes -leurs dpendances, ce qui peut produire un graphe trs volumineux. -Pour limiter la sortie aux seuls paquets lists sur la ligne de commande, -positionnez l'option APT::Cache::GivenOnly. - - -Les noeuds rsultants ont plusieurs formes ; les paquets normaux sont -des botes, les  provides  purs sont des triangles, -les  provides  mixtes sont des diamants et les paquets manquants -sont des hexagones. Les botes oranges expriment un arrt de la rcursivit -[paquet feuille], les lignes bleues reprsentent des prdpendances et les -lignes vertes reprsentent des conflits. - - -Attention, dotty ne peut pas reprsenter des ensembles trs grands de paquets. - - - - - policy [ paquet(s) ] - - policy sert dboguer des problmes relatifs au fichier des -prfrences. Sans argument, la commande affiche la priorit de chaque source. -Sinon, elle affiche des informations prcises sur la priorit du paquet donn -en argument. - - - - madison [ paquet(s) ] - - - La commande madison d'apt-cache - cherche mimer le -format de sortie propre l'outil debian de gestion d'archives, -madison, ainsi qu'une part de ses fonctionnalits. Elle affiche les -versions disponibles d'un paquet dans un tableau. Contrairement au programme -original madison, elle n'affiche que des informations concernant -l'architecture pour laquelle Apt a lu la liste des paquets disponibles -(APT::Architecture). - - - - - - - Options - &apt-cmdblurb; - - - - -Indique le fichier servant de cache des paquets. Le cache des paquets est -le cache primaire utilis par toutes les oprations. -lment de configuration : Dir::Cache::pkgcache. - - - - - -Indique le fichier servant de cache des sources. Ce cache n'est utilis que -par gencaches ; une version des informations sur les paquets, -faite partir d'une analyse de sources distantes, est conserve. Quand le -cache des paquets est cr, le cache des sources est utilis afin d'viter -d'analyser nouveau tous les paquets. -lment de configuration : Dir::Cache::srcpkgcache. - - - - - -Mode silencieux ; produit une sortie pertinente pour l'enregistrement -dans un fichier-journal, sans afficher d'indicateur de progression. Un plus -grand nombre de q produira un plus grand silence, avec un maximum de 2. Vous -pouvez aussi utiliser pour positionner le niveau de silence, -annulant le fichier de configuration. -lment de configuration : quiet. - - - - - -N'affiche que les dpendances importantes ; utiliser avec la commande -unmet pour n'afficher que les relations Depends et Pre-Depends. -lment de configuration : APT::Cache::Important. - - - - - -Affiche la totalit des champs d'information sur le paquet lors d'une -recherche. -lment de configuration : APT::Cache::ShowFull. - - - - - -Affiche la totalit des champs d'information pour toutes les versions -disponibles : c'est la valeur par dfaut. Pour la dsactiver, utilisez -l'option . Quand l'option -est choisie, seuls les lments de la version choisie (celle qui serait -installe) seront affichs. -Cette option concerne seulement la commande show. -lment de configuration : APT::Cache::AllVersions. - - - - - -Ralise une mise jour automatique du cache des paquets plutt que de se -servir du cache actuel. -Pour dsactiver cette option (option par dfaut), utilisez l'option -. -lment de configuration : APT::Cache::Generate. - - - - - -N'effectue une recherche que sur les noms de paquets et pas sur les -descriptions longues. -lment de configuration : APT::Cache::NamesOnly. - - - - - -Avec cette option pkgnames affiche tous les noms, les noms des -paquets virtuels et les dpendances manquantes. -lment de configuration : APT::Cache::AllNames. - - - - - -Avec cette option depends et rdepends -sont rcursives de -manire n'afficher qu'une seule fois les paquets mentionns. -lment de configuration : APT::Cache::RecurseDepends. - - - - - -Cette option limite la sortie de depends et de -rdepends -aux paquets qui sont actuellement installs. -lment de configuration : APT::Cache::Installed. - - - - &apt-commonoptions; - - - - - Fichiers - - /etc/apt/sources.list - -Emplacements o aller chercher les paquets. -lment de configuration : Dir::Etc::SourceList. - - - - &statedir;/lists/ - -Zone de stockage pour les informations qui concernent chaque ressource de -paquet spcifie dans &sources-list; -lment de configuration : Dir::State::Lists. - - - - &statedir;/lists/partial/ - -Zone de stockage pour les informations en transit. -lment de configuration : Dir::State::Lists (partial est implicite). - - - - - - - Voir aussi - - &apt-conf;, &sources-list;, &apt-get;. - - - Diagnostics - -apt-cache retourne zro aprs un droulement normal, et le nombre -dcimal 100 en cas d'erreur. - - - &manbugs; - &deux-traducteurs; - diff --git a/doc/fr/apt-cdrom.fr.8.xml b/doc/fr/apt-cdrom.fr.8.xml deleted file mode 100644 index fd2b89a5d..000000000 --- a/doc/fr/apt-cdrom.fr.8.xml +++ /dev/null @@ -1,159 +0,0 @@ - - -%aptent; - -]> - - - &apt-author.jgunthorpe; - &apt-author.team; - &apt-email; - &apt-product; - 14 Fvrier 2004 - - - -apt-cdrom -8 - - - - -apt-cdrom -Gestion des cdroms par APT - - - - - -apt-cdrom - - - - - -add -ident - - - - -Description - -apt-cdrom est utilis pour ajouter un nouveau cdrom la liste des -sources disponibles. apt-cdrom prend soin de dterminer la structure -du disque, de corriger de possibles erreurs de gravure et de vrifier les -fichiers d'index. - -Il est ncessaire d'utiliser apt-cdrom pour ajouter des cdroms au -systme APT, cela ne peut tre ralis   la main . Par ailleurs, -chaque disque d'un ensemble de cdroms doit tre sparment insr et -parcouru pour prendre en compte de possibles erreurs de gravure. - - - moins que l'option ou ne soit donne, l'une -des commandes suivantes doit tre prsente. - - -add - -La commande add est utilise pour ajouter un nouveau disque la -liste des sources. Elle dmonte le cdrom, rclame l'insertion d'un disque, -parcourt ensuite le disque et copie les fichiers d'index. Si le disque ne -possde pas de rpertoire disk/ correct, un titre descriptif -est demand. - -APT utilise un identifiant de cdrom pour reconnatre le disque qui -se trouve actuellement dans le lecteur et maintient une base de donnes de -ces identifiants dans &statedir;/cdroms.list. - - - - -ident -Un outil de dbogage pour rapporter l'identifiant du disque actuel ainsi -que le nom du fichier stock. - - - - - - - -Options -&apt-cmdblurb; - - - - -Point de montage ; spcifie l'emplacement de montage du cdrom. Ce -point de montage doit tre spcifi dans /etc/fstab et -correctement configur. -lment de configuration : Acquire::cdrom::mount. - - - - -Change le nom d'un disque ; change le nom d'un disque ou annule le nom -donn aux disques. Cette option oblige apt-cdrom demander un -nouveau nom l'utilisateur. -lment de configuration : APT::CDROM::Rename. - - - - -Pas de montage ; empche apt-cdrom de monter ou dmonter le -point de montage. lment de configuration : APT::CDROM::NoMount. - - - - -Copie rapide ; suppose que les paquets sont valides et ne vrifie pas -chaque paquet. Cette option ne devrait tre utilise que si apt-cdrom -a pralablement utilis ce disque et n'a trouv aucune erreur. -lment de configuration : APT::CDROM::Fast. - - - - -Parcours minutieux des paquets ; cette option peut tre ncessaire avec -de vieux cdroms de systmes Debian 1.1 ou 1.2 dont les fichiers Packages -sont situs dans des endroits tranges. Il faudra plus de temps pour -parcourir le CD mais tous les paquets seront reprs. - - - - - - - -Aucune modification ; ne pas modifier le fichier &sources-list; - ni les fichiers d'index. Cependant, tout est vrifi. -lment de configuration : APT::CDROM::NoAct. - - - -&apt-commonoptions; - - - -Voir aussi - - -&apt-conf;, &apt-get;, &sources-list;. - - - -Diagnostics -apt-cdrom retourne zro aprs un droulement normal, et le nombre -dcimal 100 en cas d'erreur. - - - -&manbugs; -&deux-traducteurs; - - diff --git a/doc/fr/apt-config.fr.8.xml b/doc/fr/apt-config.fr.8.xml deleted file mode 100644 index 043c58686..000000000 --- a/doc/fr/apt-config.fr.8.xml +++ /dev/null @@ -1,116 +0,0 @@ - - -%aptent; - -]> - - - - - &apt-author.jgunthorpe; - &apt-author.team; - &apt-email; - &apt-product; - - 29 Fvrier 2004 - - - -apt-config -8 - - - -apt-config -Programme pour interroger la configuration de APT - - - - -apt-config - - - - -shell -dump - - - - -Description -apt-config est un programme interne utilis par diffrentes -composantes d'APT ; il offre la possibilit d'une configuration -cohrente et permet aux applications conues sous forme de script une -utilisation simple du fichier de configuration principal -/etc/apt/apt.conf. - - moins que l'option ou ne soit donne, l'une -des commandes suivantes doit tre prsente. - - - -shell - -Le terme shell est utilis pour accder aux informations de configuration -depuis un script shell. Deux arguments doivent lui tre donns ; le -premier est une variable du shell et le second une valeur de configuration -demander. -La sortie standard consiste en une liste de commandes d'assignation de shell -pour chaque valeur prsente. Dans un script shell, cette commande devrait -tre utilise comme suit : - - -OPTS="-f" -RES=`apt-config shell OPTS MyApp::Options` -eval $RES - - -La variable d'environnement du shell $OPTS sera dfinie par la valeur de -MyApp::Options ou, par dfaut, la valeur -f. - - -L'lment de configuration peut tre suivi par /[fdbi].  f  -renvoie un nom de fichier,  d  un nom de rpertoire, - b  renvoie  true  ou  false  et - i  renvoie un entier. Chacune de ses valeurs est normalise et vrifie. - - - -dump - -Affiche seulement le contenu de l'espace de configuration. - - - - - -Options -&apt-cmdblurb; - - -&apt-commonoptions; - - - - -Voir aussi - -&apt-conf; - - - -Diagnostics -apt-config retourne zro aprs un droulement normal, et le nombre -100 en cas d'erreur. - - - -&manbugs; -&deux-traducteurs; - - - diff --git a/doc/fr/apt-extracttemplates.fr.1.xml b/doc/fr/apt-extracttemplates.fr.1.xml deleted file mode 100644 index 7b548869c..000000000 --- a/doc/fr/apt-extracttemplates.fr.1.xml +++ /dev/null @@ -1,88 +0,0 @@ - - -%aptent; - -]> - - - - - &apt-author.jgunthorpe; - &apt-author.team; - &apt-email; - &apt-product; - - 29 Fvrier 2004 - - - -apt-extracttemplates -1 - - - -apt-extracttemplates -Un outil pour extraire d'un paquet Debian les textes de configuration pour DebConf. - - - - -apt-extracttemplates - - -fichier - - - -Description - -Apt-extracttemplates prend un ou plusieurs paquets Debian en -argument et renvoie (dans un rpertoire temporaire) tous les scripts et -guides de configuration associs. Pour chaque paquet trait contenant des -scripts et guides de configuration, une ligne est affiche au format -suivant : - -paquet version guide-de-configuration script-de-configuration - -Les scripts et guides de configuration sont crits dans le rpertoire -temporaire indiqu par l'option ou - (APT::ExtractTemplates::TempDir) ; -les noms de fichier sont de la -forme package.template.XXXX ou package.config.XXXX. - - - -Options -&apt-cmdblurb; - - - - -Rpertoire temporaire dans lequel crire les scripts et guides de -configuration pour Debconf. -lment de configuration : APT::ExtractTemplates::TempDir. - - - -&apt-commonoptions; - - - -Voir aussi -&apt-config; - - - -Diagnostics - -apt-extracttemplates retourne zro si tout se passe bien, le nombre -100 en cas d'erreur. - - - -&manbugs; -&traducteur; - \ No newline at end of file diff --git a/doc/fr/apt-ftparchive.fr.1.xml b/doc/fr/apt-ftparchive.fr.1.xml deleted file mode 100644 index 9ae6506fc..000000000 --- a/doc/fr/apt-ftparchive.fr.1.xml +++ /dev/null @@ -1,631 +0,0 @@ - - -%aptent; - -]> - - - - - &apt-author.jgunthorpe; - &apt-author.team; - &apt-email; - &apt-product; - - 29 Fvrier 2004 - - - -apt-ftparchive -1 - - -apt-ftparchive -Un outil pour crer des index - - - - - -apt-ftparchive - - - - - - - - -packagescheminoverrideprfixe-de-chemin -sourcescheminoverrideprfixe-de-chemin -contents chemin -release chemin -generate fichier-de-configurationsection -clean fichier-de-configuration - - - - -Description - -apt-ftparchive est l'outil en ligne de commande qui cre les index -dont APT se sert pour accder aux sources des distributions. Un index doit -tre cr pour un site et bas sur le contenu de ce site. - -apt-ftparchive est un ensemble comprenant le programme -&dpkg-scanpackages; et toutes ses fonctionnalits via la commande -packages ; il comprend aussi un gnrateur de fichier - Contents , la commande contents, et une technique -labore pour  scripter  le processus de cration d'une archive -complte. - - -Apt-ftparchive peut utiliser lui-mme des bases de donnes binaires -pour  cacher  le contenu d'un fichier .deb ; il n'a pas -besoin de programmes extrieurs, sauf &gzip;. Lors d'une excution, il -vrifie les changements dans les fichiers et cre les fichiers compresss -voulus. - - - moins que l'option ou ne soit donne, l'une des -commandes suivantes doit tre prsente : - - -packages - -La commande packages cre un fichier  Packages  partir d'une -arborescence. Elle recherche rcursivement travers le rpertoire donn -les fichiers .deb et, pour chaque fichier trouv, envoie une entre pour ce -paquet sur la sortie standard. Cette commande est approximativement -quivalente &dpkg-scanpackages;. - - -On peut se servir de l'option pour demander un cache binaire. - - - -sources - -La commande sources cre un index des sources partir d'une -arborescence. Elle recherche rcursivement travers le rpertoire donn -les fichiers .dsc et, pour chaque fichier trouv, envoie une entre pour ce -paquet sur la sortie standard. Cette commande est approximativement -quivalente &dpkg-scansources;. - - -Quand on prcise un fichier  override , c'est un fichier source -avec une extension .src qui est recherch. On peut se servir de l'option - pour changer de fichier source d' override . - - - -contents - -La commande contents cre un fichier  Contents  partir d'une -arborescence. Elle recherche rcursivement travers le rpertoire donn -les fichiers .deb et, pour chaque fichier trouv, lit la liste des -fichiers. Elle trie la liste des fichiers correspondant des paquets et -l'envoie sur la sortie standard. Les rpertoires ne font pas partie du -rsultat. Quand un fichier appartient plusieurs paquets, une virgule -spare les paquets. - -On peut se servir de l'option pour demander un cache binaire. - - - - release - -La commande release cre un fichier Releases partir -d'un rpertoire. Elle cherche rcursivement dans ce rpertoire les -fichiers Packages, Packages.gz, Packages.bz2, Sources, Sources.gz, -Sources.bz2, Release et md5sum.txt. Elle envoie alors un fichier Release -sur la sortie standard avec un rsum MD5 et un rsum SHA1 pour chaque -fichier. - - -La valeur des autres champs du fichier Release est tire de la valeur -correspondante dans APT::FTPArchive::Release, -p. ex. APT::FTPArchive::Release::Origin. Les champs reconnus -sont : Origin, Label, Suite, -Version, Codename, Date, -Architectures, Components, -Description. - - - - -generate - -La commande generate est conue pour tre excutable par le -programme cron et elle cre un index en suivant le fichier de configuration -donn. Le langage de configuration fournit un moyen souple de prciser -index et rpertoires aussi bien que les paramtres requis. - - - -clean - -La commande clean range les bases de donnes utilises par le -fichier de configuration en supprimant les enregistrements qui ne sont -plus ncessaires. - - - - - - -Configuration de la commande generate - -La commande generate utilise un fichier de configuration pour -dcrire l'archive qui va tre cre. Le format de ce fichier est le format -ISC classique utilis par des outils ISC comme bind 8 et dhcpd. Le fichier &apt-conf; -dcrit ce format. Il faut noter que l'analyse de ce fichier se fait -par section tandis que celle d'&apt-conf; se fait par arborescence. Cela -n'affecte que l'usage de l'tiquette de vise (scope tag). - - -Ce fichier de configuration possde quatre sections, dcrites ci-dessous. - - -La section Dir - -La section Dir dfinit les rpertoires standards o situer les -fichiers ncessaires au processus de cration. Ces rpertoires sont -prcds de chemins relatifs dfinis dans les sections suivantes de manire - produire un chemin absolu et complet. - - -ArchiveDir - -Indique la racine de l'archive FTP ; Pour une configuration Debian -classique, -c'est le rpertoire qui contient le fichier ls-LR et les noeuds -des distributions. - - -OverrideDir - -Indique l'emplacement des fichiers d' override . - - -CacheDir - -Indique l'emplacement des fichiers de cache. - - -FileListDir - -Indique l'emplacement des fichiers contenant la liste des fichiers (si on se -sert de la valeur FileList dfinie plus bas). - - - - - -La section Default - -La section Default prcise les valeurs par dfaut et les paramtres -qui contrlent la marche du gnrateur. Ces valeurs peuvent tre annules dans -d'autres sections (paramtrage par section). - - -Packages::Compress - -Indique comment sont compresss les fichiers d'index. C'est une chane qui -contient des valeurs spares par des espaces ; elle contient au moins -l'une des valeurs suivantes :  .  (pas de compression), - gzip ,  bzip2 . -Par dfaut, c'est la chane  . gzip . - - -Packages::Extensions - -Indique la liste par dfaut des extensions de fichier qui constituent des -paquets. Par dfaut, c'est  .deb . - - -Sources::Compress - -Identique Packages::Compress mais prcise comment sont compresss -les fichiers sources. - - -Sources::Extensions - -Indique la liste par dfaut des extensions de fichier qui constituent des -fichiers sources. Par dfaut, c'est  .dsc . - - -Contents::Compress - -Identique Packages::Compress mais prcise comment sont compresss -les fichiers  Contents . - - -DeLinkLimit - -Indique le nombre de kilooctets dlier (et remplacer par des liens en dur) -pour chaque excution. On s'en sert, pour chaque section, avec le paramtre -External-Links. - - -FileMode - -Indique le systme de permissions des fichiers d'index crs. Par dfaut, -c'est le mode 0644. Tous les fichiers d'index ont ce mode et le masque -utilisateur (umasq) est ignor. - - - - - -La section TreeDefault - -On indique les valeurs par dfaut particulires la section -Tree. Toutes ces variables sont des variables de -substitution ; les chanes $(DIST), -$(SECTION) et $(ARCH) sont remplaces par leur valeur respective. - - -MaxContentsChange - -Indique le nombre de kilooctets de fichiers  Contents  qui sont -crs chaque jour. Les fichiers  Contents  sont tirs au sort -selon le systme round-robin de manire que, sur -plusieurs jours, tous soient reconstruits. - - -ContentsAge - -Contrle le nombre de jours pendant lequel un fichier  Contents  -peut tre utilis sans actualisation. Quand cette limite est franchie, -le  mtime  du fichier  Contents  est mis jour. Cela -peut arriver quand un fichier est modifi sans que cela modifie le fichier - Contents  (modification par  override  par exemple). -Un dlai est permis dans l'espoir que de nouveaux  .deb  seront -installs, exigeant un nouveau  Contents . Par -dfaut ce nombre vaut 10, l'unit tant le jour. - - -Directory - -Indique la racine de l'arborescence des  .deb . Par dfaut, c'est -$(DIST)/$(SECTION)/binary-$(ARCH)/. - - - - SrcDirectory - - Indique la racine de l'arborescence des paquets source. Par dfaut, c'est - $(DIST)/$(SECTION)/source/. - - - -Packages - -Indique le fichier  Packages  cr. Par dfaut, c'est -$(DIST)/$(SECTION)/binary-$(ARCH)/Packages. - - - -Sources - -Indique le fichier  Packages  cre. Par dfaut, c'est -$(DIST)/$(SECTION)/source/Sources. - - - -InternalPrefix -Indique un prfixe de chemin ; ce prfixe fait qu'un lien symbolique sera -considr comme un lien interne plutt que comme un lien externe. Par dfaut, -c'est $(DIST)/$(SECTION)/. - - - -Contents - -Indique le fichier  Contents  cr. Par dfaut, c'est -$(DIST)/Contents-$(ARCH). Quand le paramtrage fait que -diffrents fichiers  Packages  se rfrent un seul fichier - Contents , apt-ftparchive les intgre automatiquement. - - - -Contents::Header - -Indique l'en-tte prfixer au fichier  Contents  cr. - - - -BinCacheDB - -Indique la base de donnes binaire servant de cache pour cette section. -Diffrentes sections peuvent partager cette base de donnes. - - -FileList - -Indique qu'au lieu de lire l'arborescence, apt-ftparchive doit lire -la liste de fichiers dans le fichier donn en argument. Les noms relatifs -sont prfixs par le rpertoire de l'archive. - - -SourceFileList - -Indique qu'au lieu de lire l'arborescence, apt-ftparchive doit lire -la liste de fichiers dans le fichier donn en argument. Les noms relatifs -sont prfixs par le rpertoire de l'archive. On s'en sert pour traiter les -index de sources. - - - - - - -La section Tree - -La section Tree dfinit une arborescence debian classique avec -un rpertoire de base, diffrentes sections dans ce rpertoire et -diffrentes architectures dans chaque section. Le chemin exact est dfini -par la variable de substitution Directory. - - -La section Tree accepte une tiquette de vise (scope tag) qui -dtermine la variable $(DIST) et la racine de l'arborescence -(le chemin est prfix par ArchiveDir). C'est par exemple : -dists/woody. - -Tous les paramtres dfinis dans la section TreeDefault peuvent -s'utiliser dans la section Tree ainsi que les trois nouvelles -variables suivantes. - - -Quand il excute la section Tree, apt-ftparchive -agit ainsi : - -for i in Sections do - for j in Architectures do - Generate for DIST=scope SECTION=i ARCH=j - - - - -Sections - -C'est une liste de sections spares par des espaces qui appartiennent une -distribution ; classiquement, on trouve main contrib non-free. - - - -Architectures - -C'est une liste de toutes les architectures qui appartiennent chaque -section. L'architecture spciale  source  indique que -l'arborescence est une arborescence de sources. - - - -BinOverride - -Indique le fichier binaire d' override . Ce fichier contient -des informations sur la section, la priorit et le responsable du paquet. - - - -SrcOverride - -Indique le fichier source d' override . Ce fichier -contient des informations sur la section. - - - -ExtraOverride - -Indique un autre fichier d' override  pour les binaires. - - - -SrcExtraOverride - -Indique un autre fichier d' override  pour les sources. - - - - - -La section BinDirectory - -La section bindirectory dfinit une arborescence binaire sans -structure particulire. L'tiquette de vise (scope tag) indique l'emplacement -du rpertoire binaire et le paramtrage est identique celui pour la -section Tree sans substitution de variables ou au paramtrage de -SectionArchitecture. - - -Packages - -Indique le fichier  Packages  cr. - - - -Sources - -Indique le fichier  Sources  cr. L'un des deux fichiers, -Packages ou Sources est ncessaire. - - - -Contents - -Indique le fichier  Contents  cr. - - -Binoverride - -Indique le fichier d' override  pour les binaires. - - - -SrcOverride - -Indique le fichier d' override  pour les sources. - - - -ExtraOverride - -Indique un autre fichier d' override  pour les binaires. - - - -SrcExtraOverride - -Indique un autre fichier d' override  pour les sources. - - - -BinCacheDB - -Indique une base de donnes cache. - - - -PathPrefix - -Ajoute un chemin tous les chemins crs. - - -FileList, SourceFileList - -Indique le fichier contenant la liste des fichiers. - - - - - - -Le fichier d' Override  pour les binaires. - -Le fichier d' Override  est pleinement compatible avec -&dpkg-scanpackages;. Il contient quatre champs spars par des espaces. Le -premier est le nom du paquet ; le deuxime est la priorit donner ce -paquet ; le troisime est sa section et le dernier champ est un champ -pour changer le nom du responsable de paquet. - -Le champ du responsable est de cette forme : - old [// oldn]* => new - ou simplement, - new -La premire forme permet de spcifier de vieilles adresses dans une liste (le -sparateur est la double barre oblique). Si l'une de ces deux formes est -rencontre, la valeur de new remplace la valeur du champ. La deuxime forme -remplace inconditionnellement le champ. - - - -Le fichier d' Override  pour les sources - -Le fichier d' Override  est pleinement compatible avec -&dpkg-scansources;. Il contient deux champs. Le premier est le nom du paquet -source ; le second, sa section. - - - -Le fichier supplmentaire d' Override  - -Le fichier supplmentaire d' Override  permet d'ajouter ou de -remplacer des tiquettes sur la sortie. Il possde trois colonnes : -la premire reprsente le paquet, la seconde est une tiquette et la -troisime en fin de ligne est la nouvelle valeur. - - - -Les options -&apt-cmdblurb; - - - - -Crer la somme de contrle MD5. Cette option est active par dfaut. Quand -elle est dsactive, les fichiers d'index n'ont pas les champs MD5Sum l o -c'est possible. -lment de configuration : APT::FTPArchive::MD5. - - - - - -Utiliser une base de donnes binaire pour cache. Cela n'a aucun effet sur la -commande generate. -lment de configuration : APT::FTPArchive::DB. - - - - - -Mode silencieux ; cette commande produit une sortie destine -l'enregistrement dans un fichier-journal en omettant les indicateurs de -progression. Un plus grand nombre de  q  (2 au plus) produit un -plus grand silence. -On peut aussi utiliser pour positionner le niveau de silence, -et annuler le fichier de configuration. -lment de configuration : quiet. - - - - - -Faire une dliaison. Si External-Links est activ, cette option -permet rellement la dliaison des fichiers. Par dfaut, elle est active mais -elle peut tre dsactive avec l'option . -lment de configuration : APT::FTPArchive::DeLinkAct. - - - - - -Permettre la cration d'un fichier  Contents . Quand cette option -est active et que les index sont crs sous forme de base de donnes binaire, -la liste des fichiers est aussi extraite et conserve dans la base de donnes -pour un usage futur. Avec la commande generate, cette option permet la -cration de fichiers  Contents . Par dfaut, elle est active. -lment de configuration : APT::FTPArchive::Contents. - - - - - -Indique le fichier d' override  utiliser avec la commande -sources. -lment de configuration : APT::FTPArchive::SourceOverride. - - - -N'autoriser que la lecture pour les bases de donnes de cache. -lment de configuration : APT::FTPArchive::ReadOnlyDB. - - - -&apt-commonoptions; - - - -Voir aussi -&apt-conf; - - - -Diagnostics - -apt-ftparchive retourne zro si tout se passe bien, le nombre -dcimal 100 en cas d'erreur. - - - -&manbugs; -&traducteur; - - diff --git a/doc/fr/apt-get.fr.8.xml b/doc/fr/apt-get.fr.8.xml deleted file mode 100644 index c1b8552cb..000000000 --- a/doc/fr/apt-get.fr.8.xml +++ /dev/null @@ -1,581 +0,0 @@ - - -%aptent; - -]> - - - - - &apt-author.jgunthorpe; - &apt-author.team; - &apt-email; - &apt-product; - - 29 Fvrier 2004 - - - -apt-get -8 - - - -apt-get -Utilitaire d'APT pour la manipulation de paquets -- interface en ligne de commande. - - - - -apt-get - - - - -update -upgrade -dselect-upgrade -install paquet -remove paquet -source paquet -build-dep paquet -check -clean -autoclean - - - - -Description - -Apt-get est l'outil en ligne de commande pour manipuler les -paquets. Il peut tre considr par l'utilisateur comme un gnrateur de -sortie pour les autres outils de la bibliothque APT. -Plusieurs interfaces utilisateur existent, comme dselect, aptitude, -synaptic, gnome-apt ou wajig. - - - moins que l'option , ou ne soit donne, l'une des -commandes suivantes doit tre prsente. - - update - -La commande update permet de resynchroniser un fichier rpertoriant -les paquets disponibles et sa source. Ces fichiers sont rcuprs aux -endroits spcifis dans /etc/apt/sources.list. Ainsi, lorsqu'on -utilise une archive Debian, cette commande rcupre les fichiers -Packages.gz et les analyse de manire rendre disponibles -les informations concernant les nouveaux paquets et les paquets mis jour. -On doit toujours excuter une commande update avant les commandes -upgrade ou dist-upgrade. Il faut savoir que l'indicateur -de progression d'ensemble n'est pas correct puisque la taille de ces fichiers -ne peut tre connue l'avance. - - - -upgrade - -La commande upgrade permet d'installer les versions les plus -rcentes de tous les paquets prsents sur le systme en utilisant les -sources numres dans /etc/apt/sources.list. Les paquets -installs dont il existe de nouvelles versions sont rcuprs et mis -niveau. En aucun cas des paquets dj installs ne sont supprims ; de -mme, des paquets qui ne sont pas dj installs ne sont ni rcuprs ni -installs. Les paquets dont de nouvelles versions ne peuvent pas tre -installes sans changer le statut d'installation d'un autre paquet sont -laisss dans leur version courante. On doit d'abord excuter la commande -update pour que apt-get connaisse -l'existence de nouvelles versions des paquets. - - - -dselect-upgrade - -dselect-upgrade est utilise conjointement avec &dselect;, l'interface -traditionnelle Debian pour la gestion des paquets. -La commande dselect-upgrade suit les modifications faites par -&dselect; dans le champ Status des paquets disponibles, et effectue -les actions ncessaires la ralisation de cet tat (par exemple, -suppression d'anciens paquets, installation de nouveaux paquets). - - - -dist-upgrade - -La commande dist-upgrade effectue la fonction upgrade en -y ajoutant une gestion intelligente des changements de dpendances dans les -nouvelles versions des paquets ; apt-get possde un systme - intelligent  de rsolution des conflits et il essaye, quand c'est -ncessaire, de mettre niveau les paquets les plus importants aux dpens -des paquets les moins importants. Le fichier /etc/apt/sources.list -contient une liste de sources o rcuprer les paquets dsirs. -Voyez aussi &apt-preferences; pour un mcanisme de remplacement des paramtres -gnraux pour certains paquets. - - - -install - -La commande install est suivie par un ou plusieurs paquets -installer. Chaque paquet est un nom de paquet ; ce n'est pas un nom de -fichier entirement dfini (par exemple, dans un systme Debian GNU/Linux, -on indiquera libc6 et non pas libc6_1.9.6-2.deb). Tous les -paquets requis par le(s) paquet(s) que l'on veut installer sont aussi -rcuprs et installs. On se sert du fichier -/etc/apt/sources.list pour localiser les paquets dsirs. Quand -un trait d'union est accol (sans espace intermdiaire) au nom d'un paquet -dj install, ce paquet est supprim. De mme on peut ajouter un signe - +  pour dsigner un paquet installer. -Cette dernire fonctionnalit peut tre utilise pour annuler les dcisions -prises par le systme de rsolution des conflits d'apt-get. - - -On peut choisir d'installer une version particulire d'un paquet en faisant -suivre son nom par un signe gal et par la version. Cette version sera -localise et l'installation sera demande. On peut aussi choisir une -distribution particulire en faisant suivre le nom du paquet par une barre -oblique et par le nom de la distribution ou de l'archive (stable, testing, -unstable). - - -Avec ces possibilits de choisir la version, de vieilles versions d'un paquet -peuvent tre installes. Il faut faire attention. - - -Enfin, le mcanisme d'&apt-preferences; permet de crer d'autres rgles pour -l'installation des paquets. - - -Quand aucun paquet ne correspond l'expression donne en argument et que cette -expression contient l'un des caractres  . ,  ?  ou - * , on considre que c'est une expression rationnelle POSIX et -elle est applique tous les paquets de la base de donnes. Tout paquet -correspondant est install (ou supprim). Notez que la comparaison est -effectue par sous-chane et  lo  correspond aussi bien - how-lo  qu'  lowest . Si vous ne le voulez pas, ancrez -l'expression par un caractre  ^  ou un caractre  $ , -ou bien crez une expression plus prcise. - - - -remove - -La commande remove est identique la commande install ; -Mais les paquets sont supprims et non pas installs. Quand un signe plus est -accol (sans espace intermdiaire) au nom du paquet, le paquet est install au lieu -d'tre supprim. - - - -source - -Avec la commande source, apt-get rcupre des paquets -sources. APT examine les paquets disponibles pour choisir le paquet source - rcuprer. Il trouve ensuite et tlcharge dans le rpertoire courant -la version la plus rcente. Les paquets source sont grs indpendamment -des paquets binaires, via les lignes de type deb-src dans le fichier -&sources-list;. On n'obtiendra probablement pas les mmes sources que celles -du paquet install ou celles du paquet qu'on pourrait installer. Si l'option - est spcifie, le paquet est compil en un binaire .deb -avec dpkg-buildpackage. Si est -spcifi, le source n'est pas dcompact. - - -De la mme faon qu'avec les paquets binaires, on peut rcuprer une version -particulire d'un paquet source en faisant suivre son nom par un signe gal -et par la version. Cela permet une comparaison exacte entre le nom du paquet -source et la version ; cela lance implicitement la commande -APT::Get::Only-Source. - - -Notez que les paquets sources ne sont pas suivis comme le sont les paquets -binaires. Ils ne sont prsents que dans le rpertoire courant et sont -semblables des sources tlchargs sous forme de tarball. - - - -build-dep - -Avec la commande build-dep, apt-get installe ou supprime des paquets -dans le but de satisfaire les dpendances de construction d'un paquet source. -Pour l'instant, dans le cas d'un paquet virtuel, un paquet est choisi au -hasard. - - -check - -La commande check est un outil de diagnostic ; il met jour -le cache des paquets et cherche des dpendances dfectueuses. - - - -clean - -La commande clean nettoie le rfrentiel local des paquets -rcuprs. Il supprime tout, except le fichier lock situ dans -&cachedir;/archives/ et &cachedir;/archives/partial/. -Quand APT est utilis comme mode de &dselect;, clean est effectu -automatiquement. Quand on n'utilise pas dselect, il faut excuter -apt-get clean de temps en temps si l'on veut librer de l'espace -disque. - - - -autoclean - -Tout comme clean, autoclean nettoie le rfrentiel local -des paquets rcuprs. La diffrence est qu'il supprime uniquement les paquets -qui ne peuvent plus tre tlchargs et qui sont grandement inutiles. -On peut ainsi contrler la taille de ce cache sur une longue priode. -Tant qu'elle n'est pas active, l'option de configuration -APT::Clean-Installed empche la suppression de paquets installs. - - - - -Options -&apt-cmdblurb; - - - - - -Rcupration seule ; les paquets sont rcuprs mais ne sont ni dpaquets -ni installs. lment de configuration : APT::Get::Download-Only. - - - - - -Correction ; essaye de rparer un systme dont les dpendances sont -dfectueuses. Cette option, utilise avec install ou remove, peut omettre -tout paquet de faon permettre APT de dduire une solution viable. -Chaque paquet spcifi doit compltement corriger le problme. Cette option -est quelquefois ncessaire lorsque l'on excute APT pour la premire fois ; -APT lui-mme interdit les dpendances dfectueuses dans un systme. Il est -possible que la structure de dpendances d'un systme soit tellement -corrompue qu'elle requiert une intervention manuelle (ce qui veut dire la -plupart du temps utiliser &dselect; ou dpkg --remove pour liminer -les paquets en cause). L'utilisation de cette option conjointement avec - peut produire une erreur dans certaines situations. -lment de configuration : APT::Get::Fix-Broken. - - - - - - -Ignorer les paquets manquants ; si des paquets ne peuvent tre -rcuprs, ou, aprs rcupration, ne satisfont pas au contrle d'intgrit, -cette commande met ces paquets de ct et gre le rsultat. Utiliser cette -option conjointement avec peut produire une erreur dans -certaines situations. Quand un paquet, slectionn pour une installation -(particulirement si c'est mentionn en ligne de commande), ne peut tre -rcupr, il est mis silencieusement de ct. lment de configuration : -APT::Get::Fix-Missing. - - - - - -Pas de rcupration. Le mieux est d'utiliser cette option avec - pour forcer APT n'utiliser que les .deb qu'il a -dj rcuprs. -lment de configuration : APT::Get::Download. - - - - - -Mode silencieux ; cette commande produit une sortie destine -l'enregistrement dans un fichier-journal en omettant les indicateurs de -progression. Un plus grand nombre de  q  (2 au plus) produit un -plus grand silence. -On peut aussi utiliser pour positionner le niveau de silence, -et annuler le fichier de configuration. Notez qu'un niveau de silence gal 2 -implique et vous ne devez jamais utiliser sans -l'accompagner d'un modificateur tel que , - ou  : APT pourrait excuter des actions inattendues ! -lment de configuration : quiet. - - - - - - - - - - -Simulation ; cette commande ralise une simulation des actions qui -seraient excutes mais ne modifie pas le systme. -lment de configuration : APT::Get::Simulate. - - -La simulation affiche une srie de lignes reprsentant chacune une opration -de dpkg, Configure (Conf),Remove (Remv),Unpack (Inst). Les crochets encadrent -des paquets endommags et des crochets n'encadrant rien indiquent que les -dommages n'ont aucune consquence (rare). - - - - - - -Rpond automatiquement oui aux questions ; prsume  oui  -comme rponse toutes les questions et s'excute de manire non interactive. -Dans le cas d'une situation indsirable, comme le changement d'un paquet -gel, l'installation d'un paquet non authentifi ou la suppression d'un -paquet essentiel, apt-get s'interrompt. -lment de configuration : APT::Get::Assume-Yes. - - - - - -Afficher les paquets mis niveau ; affiche une liste de tous les paquets -mettre niveau. lment de configuration : APT::Get::Show-Upgraded. - - - - - -Afficher les versions compltes des paquets installs ou mis niveau. -lment de configuration : APT::Get::Show-Versions. - - - - - - -Cette commande compile un paquet source aprs l'avoir rcupr. -lment de configuration : APT::Get::Compile. - - - - - -Cette commande ignore la marque  Hold  d'un paquet ; par ce biais, -apt-get ignore un  hold  plac sur un paquet. cela peut tre utile -avec dist-upgrade pour annuler un grand nombre de  hold  -indsirables. lment de configuration : APT::Ignore-Hold. - - - - - -Aucune mise niveau ; quand elle est utilise avec install, -cette commande empche les paquets lists sur la ligne de commande d'tre mis - niveau. -lment de configuration : APT::Get::Upgrade. - - - - - -Forcer l'acceptation ; cette option est dangereuse parce qu'elle laisse -APT continuer sans poser de questions quand il ralise quelque chose de -potentiellement dommageable. Cette option ne doit tre utilise que dans des -circonstances trs spciales. Utiliser force-yes peut dtruire le systme ! -lment de configuration : APT::Get::force-yes. - - - - - -Au lieu d'aller chercher les paquets installer, leurs URI sont affiches. -Chaque URI a un chemin, un nom de fichier destination, une taille et une -cl md5 attendue. Notez que le nom de fichier afficher ne correspond pas -toujours au nom de fichier sur le site distant ! Cette option fonctionne -aussi avec la commande source et avec la commande -update. Avec la commande update, -la somme MD5 et la taille ne sont pas donnes et c'est l'utilisateur de -dcompresser les fichiers compresss. -lment de configuration : APT::Get::Print-URIs. - - - - - -Utiliser purge la place de remove pour supprimer tout ce qui peut tre -supprim. -Un astrisque (*) sera affich prs des paquets qui vont tre purgs. -lment de configuration : APT::Get::Purge. - - - - - -Rinstaller les paquets dj installs avec leur version la plus rcente. -lment de configuration : APT::Get::ReInstall. - - - - -Cette option est active par dfaut ; utilisez --no-list-cleanup -pour la dsactiver. Quand elle est active, apt-get gre -automatiquement le contenu de &statedir;/lists afin d'assurer -que les fichiers obsoltes soient effacs. La seule raison de la dsactiver -est une modification frquente de votre liste de sources. -lment de configuration : APT::Get::List-Cleanup. - - - - - - - -Cette option contrle l'entre par dfaut pour les questions de -distribution ; une tiquette (pin) par dfaut dont la priorit vaut 990 -est cr en utilisant la chane spcifie. Le fichier des prfrences peut -annuler cette dcision. En clair, cette option permet de contrler simplement -dans quelle distribution seront rcuprs les paquets. Par exemple : - ou . -lment de configuration : APT::Default-Release. -Voyez aussi la page de manuel d'&apt-preferences;. - - - - - -Ne ralise que les oprations  triviales . Logiquement ceci peut tre -considr comme relatif . Alors que - rpond oui n'importe quelle question, - rpond non. -lment de configuration : APT::Get::Trivial-Only. - - - - - -Quand des paquets doivent tre supprims, apt-get s'arrte immdiatement sans -poser de questions. lment de configuration : APT::Get::Remove. - - - - - -Cette option n'a de sens qu'avec les commandes source et -build-dep. Elle indique -que les noms de sources donns ne doivent pas tre reprs travers le -tableau des binaires. Cela signifie que si cette option est choisie, la commande -source acceptera seulement des noms de paquets source -comme argument ; elle n'acceptera pas de les rechercher partir des noms de -paquets binaires correspondants. -lment de configuration : APT::Get::Only-Source - - - - - -Ne rcuprer que le fichier diff ou tar d'une archive de source. -lment de configuration : APT::Get::Diff-Only et -APT::Get::Tar-Only. - - - - - -Ne traiter que les dpendances de construction pour telle architecture. -lment de configuration : APT::Get::Arch-Only - - - - - -Ignorer le fait que les paquets ne peuvent pas tre authentifis ; pas -d'interrogation de l'utilisateur. C'est trs utile pour certains outils - comme pbuilder -lment de configuration : -APT::Get::AllowUnauthenticated. - - - -&apt-commonoptions; - - - - -Fichiers - -/etc/apt/sources.list - -Liste les emplacements o aller chercher les paquets. -lment de configuration : Dir::Etc::SourceList. - - - -/etc/apt/apt.conf -Fichier de configuration d'APT. -lment de configuration : Dir::Etc::Main. - - - -/etc/apt/apt.conf.d/ - -lments du fichier de configuration d'APT. -lment de configuration : Dir::Etc::Parts. - - - -/etc/apt/preferences - -Fichier des prfrences. -C'est dans ce fichier qu'on peut faire de l'tiquetage (pinning) c'est--dire, -choisir d'obtenir des paquets d'une source distincte ou d'une distribution -diffrente. -lment de configuration : Dir::Etc::Preferences. - - - -&cachedir;/archives/ - -Zone de stockage pour les paquets rcuprs. -lment de configuration : Dir::Cache::Archives. - - - -&cachedir;/archives/partial/ - -Zone de stockage pour les paquets en transit. -lment de configuration : Dir::Cache::Archives (implicitement, partial). - - - -&statedir;/lists/ - -Zone de stockage des informations concernant chaque ressource spcifie dans -&sources-list;. -lment de configuration : Dir::State::Lists. - - - -&statedir;/lists/partial/ - -Zone de stockage pour les informations d'tat des paquets en transit. -lment de configuration : Dir::State::Lists (implicit partial). - - - - - -Voir aussi - -&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, - &apt-conf;, &apt-config;, - le guide  APT users guide  dans &docdir;, &apt-preferences;, -le guide APT. - - - - Diagnostic - apt-get renvoie zro aprs une opration normale, le dcimal 100 -en cas d'erreur. - - - &manbugs; -&deux-traducteurs; - diff --git a/doc/fr/apt-key.fr.8.xml b/doc/fr/apt-key.fr.8.xml deleted file mode 100644 index 73a61ea41..000000000 --- a/doc/fr/apt-key.fr.8.xml +++ /dev/null @@ -1,122 +0,0 @@ - - -%aptent; - -]> - - - &apt-docinfo; - - - apt-key - 8 - - - - - apt-key - Utilitaire de gestion des cls - - - - - - apt-key - command/ - - - - - Description - - apt-key gre les cls dont se sert apt pour -authentifier les paquets. Les paquets authentifis par ces cls seront -rputs fiables. - - - -Commandes - - add fichier - - - -Ajouter une cl la liste des cls fiables. La cl est lue dans -fichier, ou sur l'entre standard si -fichier est -. - - - - - - - del keyid - - - -Supprimer une cl de la liste des cls fiables. - - - - - - - list - - - -Afficher la liste des cls fiables. - - - - - - update - - -Mettre jour le trousseau de cls local avec le trousseau de cls de l'archive -Debian et supprimer les cls qui sont primes. - - - - - - - - Fichiers - - /etc/apt/trusted.gpg -Trousseau de cls locales fiables, les nouvelles cls sont ajoutes ici. - - - - /etc/apt/trustdb.gpg - Base de donnes locale fiable des cls de l'archive. - - - /usr/share/keyrings/debian-archive-keyring.gpg - Trousseau des cls fiables de l'archive Debian. - - - /usr/share/keyrings/debian-archive-removed-keys.gpg - - Trousseau des cls fiables supprimes de l'archive Debian. - - - - - -Voir aussi - -&apt-get;, &apt-secure; - - - - &manbugs; - &manauthor; -&traducteur; - - diff --git a/doc/fr/apt-secure.fr.8.xml b/doc/fr/apt-secure.fr.8.xml deleted file mode 100644 index 25b5ffd09..000000000 --- a/doc/fr/apt-secure.fr.8.xml +++ /dev/null @@ -1,217 +0,0 @@ - - -%aptent; - -]> - - - &apt-docinfo; - - - apt-secure - 8 - - - - - - - - - apt-secure - Certification d'archive avec APT - - - Description - - Depuis sa version 0.6, apt sait vrifier -la signature du fichier Release de chaque archive. On s'assure ainsi que les -paquets de cette archive ne peuvent pas tre modifis par quelqu'un qui ne -possde pas la cl de la signature du fichier Release. - - - - Quand un paquet provient d'une archive sans signature ou d'une archive avec -une signature dont apt ne possde pas la cl, ce paquet n'est pas considr -comme fiable et son installation provoquera un avertissement. Pour -l'instant, apt-get ne signale que les archives sans -signature ; les prochaines versions pourraient rendre obligatoire la -vrification des sources avant tout tlchargement de paquet. - - - - Les paquets &apt-get;, &aptitude; et &synaptic; possdent cette nouvelle -fonction de certification. - - - - - Archives fiables - - - D'une archive apt jusqu' l'utilisateur, la confiance se construit en -plusieurs tapes. Apt-secure est la dernire tape. Faire -confiance une archive ne signifie pas que les paquets qu'elle contient -sont exempts de code malveillant, mais signifie que vous faites confiance au -responsable de l'archive. C'est ensuite au responsable de l'archive de faire -en sorte que l'archive soit fiable. - - - - Apt-secure n'examine pas la signature d'un -paquet. Certains programmes peuvent le faire comme -debsig-verify ou debsign, qu'on peut -trouver dans les paquets debsig-verify et devscripts. - - - - La fiabilisation dans Debian commence quand un responsable de paquet envoie -un nouveau paquet ou une nouvelle version d'un paquet dans l'archive. Cet -envoi, pour tre effectif, doit tre sign avec la cl d'un responsable qui -se trouve dans le trousseau des responsables Debian (disponible dans le -paquet debian-keyring). Les cls des responsables de paquet sont signes par -d'autres responsables, suivant des procdures prtablies pour s'assurer de -l'identit des propritaires de la cl. - - - - - Une fois le paquet vrifi et archiv, la signature du responsable est -enleve, une somme MD5 du paquet est calcule et mise dans le fichier -Packages. Une somme MD5 de tous les paquets est ensuite calcule et mise -dans le fichier Release. Ce fichier est sign par la cl de l'archive. Cette -cl qui est cre chaque anne et distribue par le serveur FTP se trouve -aussi dans le trousseau Debian. - - - - - Un utilisateur peut consulter la signature du fichier Release, extraire la -somme MD5 d'un paquet et la comparer avec la somme du paquet qu'il a -tlcharg. Avant la version 0.6, seule la somme du paquet tlcharg tait -vrifie. Maintenant on peut vrifier aussi la signature du fichier Release. - - - - Cette faon de faire est diffrente d'une vrification de la signature d'un -paquet. Elle vise empcher deux types d'attaque possibles : - - - - - -L'attaque de type homme au milieu. Sans vrification de -signature, quelqu'un de malveillant peut s'introduire au milieu du -processus de tlchargement et insrer du code soit en contrlant un lment -du rseau, routeur, commutateur, etc. soit en dtournant le trafic vers un -serveur fourbe (par usurpation d'adresses). - - - -L'attaque par compromission d'un miroir sur le rseau. Sans vrification de -signature, quelqu'un de malveillant peut compromettre un miroir et modifier -les fichiers. Ainsi tous ceux qui tlchargent les paquets de ce miroir -propagent du code malveillant. - - - - -Cependant cette mthode ne garantit pas contre une compromission du serveur -Debian lui-mme (qui signe les paquets) ni contre la compromission de la cl -qui sert signer les fichiers Release. Mais elle peut complter la -signature des paquets. - - - - Configuration - - Le programme qui gre la liste des cls utilises par apt s'appelle -apt-key. Il peut ajouter ou supprimer des cls. Cette -version installe automatiquement les cls qui servent signer l'archive -Debian et les diffrents rpertoires de paquets. - - - - Pour ajouter une cl, vous devez d'abord la tlcharger. Il vaut mieux -utiliser un canal fiable pour ce tlchargement. Ensuite vous l'ajoutez avec -la commande apt-key et vous lancez la commande -apt-get update pour tlcharger et vrifier le fichier -Release.gpg de l'archive que vous avez configure. - - - - -Configuration d'une archive - - Si vous voulez signer les archives dont vous avez la responsabilit, vous -devez : - - - - - crer un fichier Release la racine de l'archive, s'il n'existe pas -dj. Vous pouvez le crer avec la commande apt-ftparchive release -(fournie dans le paquet apt-utils) ; - - - -le signer, avec la commande gpg -abs -o Release.gpg Release ; - - - -publier l'empreinte de la cl. Ainsi les utilisateurs de votre archive -connatront la cl qu'ils doivent importer pour authentifier les fichiers de -l'archive. - - - - - Chaque fois que le contenu de l'archive change, le responsable doit refaire -les deux premires tapes. - - - - -Voir aussi - -&apt-conf;, &apt-get;,&sources-list;, &apt-key;, &apt-ftparchive;, &debsign;, -&debsig-verify;, &gpg; - - - -Pour des informations plus substantielles, vous pouvez consulter - -l'infrastructure debian pour la scurit un chapitre du manuel Debian sur la scurit -(disponible dans le paquet harden-doc) et le -Strong Distribution HOWTO par V. Alex Brennen. - - - - - &manbugs; - &manauthor; - -Auteurs - - -Cette page a t crite partir des travaux de Javier Fernndez-Sanguino Pea, Isaac -Jones, Colin Walters, Florian Weimer et Michael Vogt. - - -&traducteur; - - diff --git a/doc/fr/apt-sortpkgs.fr.1.xml b/doc/fr/apt-sortpkgs.fr.1.xml deleted file mode 100644 index 109a23c48..000000000 --- a/doc/fr/apt-sortpkgs.fr.1.xml +++ /dev/null @@ -1,84 +0,0 @@ - - -%aptent; - -]> - - - - - &apt-author.jgunthorpe; - &apt-author.team; - &apt-email; - &apt-product; - - 29 February 2004 - - - -apt-sortpkgs -1 - - - -apt-sortpkgsUn outil pour trier les index de paquets. - - - - - -apt-sortpkgs - - - -fichier - - - -Description - -Apt-sortpkgs prend un index (un index de Source ou un index de -paquet) et trie leurs enregistrements selon le nom de paquet. Un tri des -champs de chaque enregistrement est ralis selon des rgles internes. - - - -Le rsultat est envoy sur la sortie standard ; l'entre doit tre un -fichier analysable. - - - -Options -&apt-cmdblurb; - - - - -Se servir d'un index de sources pour le tri des champs. -lment de configuration : APT::SortPkgs::Source. - - - -&apt-commonoptions; - - - -Voir aussi - -&apt-conf; - - - -Diagnostics - -apt-sortpkgs retourne zro si tout se passe bien ou 100 en cas -d'erreur. - - - -&manbugs; -&traducteur; - \ No newline at end of file diff --git a/doc/fr/apt.conf.fr.5.xml b/doc/fr/apt.conf.fr.5.xml deleted file mode 100644 index f4d8eddb8..000000000 --- a/doc/fr/apt.conf.fr.5.xml +++ /dev/null @@ -1,831 +0,0 @@ - - -%aptent; - -]> - - - - - &apt-author.jgunthorpe; - &apt-author.team; - &apt-email; - &apt-product; - - 11 juillet 2008 - - - -apt.conf -5 - - -apt.conf -Fichier de configuration pour APT - - -Description - -Le fichier apt.conf est le principal fichier de configuration -de la collection d'outils que constitue APT ; tous les outils font appel ce -fichier de configuration et utilisent un analyseur syntaxique en ligne de -commande commun afin de fournir un environnement uniforme. Quand un outil -d'APT dmarre, il lit la configuration dsigne par variable d'environnement -APT_CONFIG (si elle existe), puis il lit les fichiers situs dans -Dir::Etc::Parts ainsi que le principal fichier de configuration -indiqu par Dir::Etc::main ; enfin il applique les options de -la ligne de commande qui prvalent sur les directives de configuration, chargeant -si ncessaire d'autres fichiers de configuration. - - -Le fichier de configuration est construit comme un arbre d'options -organises en groupes fonctionnels. On se sert du double deux points ( :: ) -pour indiquer une option ; par exemple, APT::Get::Assume-Yes est -une option pour le groupe d'outils APT, destine l'outil Get. Il n'y a pas d'hritage -des options des groupes parents. - - -Syntaxiquement, le langage de configuration est conu sur le mme modle -que les langages utiliss par des outils ISC tels que bind et dhcp. Une ligne -qui commence par // est traite comme un commentaire et ignore, de -mme que les sections de texte places entre /* et -*/, tout comme les commentaires C/C++. -Chaque ligne est de la forme : - -APT::Get::Assume-Yes "true"; - -Le point-virgule final est obligatoire et les guillemets sont optionnels. -On peut dclarer un nouveau champ d'action avec des accolades, comme -suit : - - - -APT { - Get { - Assume-Yes "true"; - Fix-Broken "true"; - }; -}; - - - -avec des retours la ligne pour faciliter la lecture. On peut crer une liste -en ouvrant un champ d'action et en y insrant une chane entre guillemets suivie -d'un point virgule pour chaque lment de la liste. - - - -DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; - - - -Les modles &docdir;examples/apt.conf et &configureindex; -montrent quoi devrait ressembler le fichier de configuration. - - -Les identifiants des options de configuration ne sont pas sensibles la casse. -Dans l'exemple prcdent, on pourrait donc aussi bien utiliser -dpkg::pre-install-pkgs. - - -Deux lments spciaux sont autoriss : #include et -#clear. #include inclut le fichier donn en -argument, moins que le nom ne se termine par une barre oblique auquel cas le -rpertoire entier est inclus. #clear sert -effacer une partie de l'arbre de configuration. L'lment dsign et tout ses -descendants sont supprims. - - -Tous les outils d'APT possdent une option qui permet de -spcifier une configuration arbitraire depuis la ligne de commande. La -syntaxe consiste en un nom complet d'option (par exemple -APT::Get::Assume-Yes) suivi par un signe gal, puis par la nouvelle -valeur de l'option. On peut complter une liste en ajoutant un  ::  au nom -de la liste. - - - -Le groupe APT - -Ce groupe d'options contrle le comportement global d'APT et contient galement -des options communes tous les outils. - - -Architecture - -L'architecture du systme ; cette option positionne l'architecture utiliser -pour rcuprer des fichiers et analyser des listes de paquets. La valeur interne par -dfaut est l'architecture pour laquelle APT a t compil. - - - -Default-Release - -Indique la distribution utiliser par dfaut lors de l'installation d'un -paquet si plusieurs versions sont disponibles. La valeur peut tre un nom de -distribution ou un numro de version. Exemples :  stable , - testing ,  4.0 ,  5.0* . Les noms de codes -des distributions ( etch ,  lenny , etc.) ne sont pas -permis pour l'instant. Voir aussi &apt-preferences;. - - - -Ignore-Hold - -Ignore les paquets  gels  ; cette option globale indique au -systme de rsolution de ne pas tenir compte des paquets  gels  -dans sa prise de dcision. - - - -Clean-Installed - -Avec cette option qui est active par dfaut, la fonctionnalit  autoclean  -supprime du cache tout paquet qui ne peut plus tre rcupr. -Quand cette option est dsactive, les paquets qui sont installs localement -sont aussi exclus du nettoyage - mais notez que APT ne fournit aucun moyen -direct pour les rinstaller. - - - -Immediate-Configure - -Dsactive la configuration immdiate ; cette dangereuse option dsactive -une partie du code de mise en ordre de APT pour que ce dernier effectue le -moins d'appels possible &dpkg;. a peut tre ncessaire sur des systmes - un seul utilisateur extrmement lents, mais cette option est trs dangereuse et -peut faire chouer les scripts d'installation, voire pire. -Utilisez-la vos risques et prils. - - - -Force-LoopBreak - -Ne jamais activer cette option moins que vous ne sachiez - rellement - ce -que vous faites. Elle autorise APT supprimer temporairement un paquet -essentiel pour mettre fin une boucle Conflicts / Conflicts ou -Conflicts / Pre-Depends entre deux paquets essentiels. UNE TELLE BOUCLE -NE DOIT JAMAIS SE PRODUIRE : C'EST UN BOGUE SRIEUX. Cette option -fonctionne si les paquets essentiels ne sont pas tar, gzip, libc, dpkg, bash -ou tous les paquets dont ces paquets dpendent. - - - -Cache-Limit - -APT utilise un fichier de cache charg en mmoire avec mmap pour ranger les -informations sur les paquets disponibles. Cette option fixe la taille mmoire -alloue pour le chargement de ce cache. - - - -Build-Essential - - Cette option dfinit les paquets qui sont considrs comme faisant partie -des dpendances essentielles pour la construction de paquets. - - - -Get -La sous-section Get contrle l'outil &apt-get;, -veuillez consulter sa documentation pour avoir plus d'informations sur les options -en question. - - - -Cache -La sous-section Cache contrle l'outil -&apt-cache;, veuillez consulter sa documentation pour avoir plus d'informations -sur les options en question. - - - -CDROM -La sous-section CDROM contrle l'outil -&apt-cdrom;, veuillez consulter sa documentation pour avoir plus d'informations -sur les options en question. - - - - - -Le groupe Acquire - -Le groupe d'options Acquire contrle le tlchargement des paquets et -les gestionnaires d'URI. - - -PDiffs -Essayer de tlcharger les fichiers diffrentiels appels -PDiffs pour les paquets ou les fichiers sources, plutt que -de les tlcharger entirement. Par dfaut  true . - - - -Queue-Mode - -Le mode de file d'attente ; Queue-Mode peut prendre les -valeurs host ou access et cela dtermine -comment APT paralllise les connexions sortantes. Host signifie -qu'une connexion par cible sera initie, tandis que access signifie -qu'une connexion par type d'URI sera initie. - - - -Retries - -Nombre d'essais effectuer. Si ce nombre n'est pas nul, APT essaie de -rcuprer, le nombre donn de fois, les fichiers dont la rcupration a chou. - - - -Source-Symlinks - -Utilise des liens symboliques pour les archives de sources. Positionne - true , cette option cre si possible des liens symboliques vers -les archives de sources au lieu de les copier. -Par dfaut  true . - - - -http - -URI HTTP ; http::Proxy est le mandataire (proxy) HTTP utiliser par dfaut. -Il se prsente sous la forme standard : -http://[[user][:pass]@]host[:port]/. On peut spcifier un -mandataire particulier par hte distant en utilisant la syntaxe : -http::Proxy::<hte>. Le mot-cl spcial -DIRECT indique alors de n'utiliser aucun mandataire pour -l'hte. -Lorsqu'elle est dfinie, la variable d'environnement http_proxy -annule et remplace toutes les options de mandataire HTTP. - - -Trois options de configuration sont fournies pour le contrle des caches compatibles -avec HTTP/1.1. No-Cache signifie que le mandataire ne doit jamais -utiliser les rponses qu'il a stockes ; Max-Age -sert uniquement pour les fichiers d'index : cela demande au cache de les -mettre jour quand leur anciennet est suprieure au nombre de secondes -donn. Debian met jour ses fichiers d'index de manire quotidienne ; la -valeur par dfaut est donc de 1 jour. No-Store sert uniquement -pour les fichiers d'archive  et demande au cache de ne jamais garder -la requte. Cela peut viter de polluer un cache mandataire avec des -fichiers .deb trs grands. Note : Squid 2.0.2 ne prend en compte aucune de -ces options. - - -L'option timeout positionne le compteur de temps mort (timeout) -utilis par la mthode. Cela vaut pour tout, connexion et donnes. - - -Une option de configuration est fournie pour contrler la profondeur du tube -pour le cas o un serveur distant n'est pas conforme la RFC ou est bogu -(comme Squid 2.0.2). Acquire::http::Pipeline-Depth a une valeur -comprise entre 0 et 5 : elle indique le nombre de requtes en attente qui -peuvent tre mises. Quand la machine distante ne conserve pas correctement -les connexions TCP, on DOIT donner une valeur gale 0 -- sinon des -donnes seront corrompues. Les machines qui ont besoin de cette option -ne respectent pas la RFC 2068. - - - -https - -URI HTTPS. Les options de contrle de cache et de mandataire (proxy) sont les -mmes que pour la mthode http. L'option -Pipeline-Depth n'est pas encore supporte. - - -La sous-option CaInfo spcifie le fichier contenant -les informations sur les certificats de confiance. -La sous-option boolenne Verify-Peer prcise si le -certificat d'hte du serveur doit tre confront aux certificats de confiance -ou pas. La sous-option boolenne Verify-Host prcise s'il -faut vrifier ou pas le nom d'hte du serveur. SslCert -dtermine le certificat utiliser pour l'authentification du client. -SslKey dtermine quelle clef prive doit tre utilise pour -l'authentification du client. SslForceVersion surcharge la -valeur par dfaut pour la version de SSL utiliser et peut contenir l'une des -chanes 'TLSv1' ou 'SSLv3'. - -Chacune de ces options peut tre spcifie pour un hte particulier en -utilisant <hte>::CaInfo, -<hte>::Verify-Peer, -<hte>::Verify-Host, -<hte>::SslCert, -<hte>::SslKey et -<hte>::SslForceVersion respectivement. - - - -ftp - -URI FTP ; ftp::Proxy est le mandataire (proxy) FTP utiliser par dfaut. -Il se prsente sous la forme standard : -ftp://[[user][:pass]@]host[:port]/. On peut spcifier un -mandataire particulier par hte distant en utilisant la syntaxe : -ftp::Proxy::<hte>. Le mot-cl spcial -DIRECT indique alors de n'utiliser aucun mandataire pour -l'hte. Lorsqu'elle est dfinie, la variable d'environnement -ftp_proxy annule et replace toutes les options de mandataire -FTP. Pour utiliser un mandataire FTP, vous devrez renseigner l'entre -ftp::ProxyLogin dans le fichier de configuration. Cette -entre spcifie les commandes envoyer au mandataire pour lui prciser quoi -il doit se connecter. Voyez &configureindex; pour savoir comment faire. Les -variables de substitution disponibles sont : -$(PROXY_USER), $(PROXY_PASS), -$(SITE_USER), $(SITE_PASS), -$(SITE) et $(SITE_PORT). Chacune -correspond l'lment respectif de l'URI. - - -L'option timeout positionne le compteur de temps mort -(timeout) utilis par la mthode. Cela vaut pour tout, connexion et donnes. - - -Plusieurs options de configuration sont fournies pour contrler le mode -passif. Il est gnralement plus sr d'activer le mode passif et cela -marche dans presque tous les environnements. Cependant, certaines situations -ncessitent que le mode passif soit dsactiv et que le mode - port  de ftp -soit utilis la place. On peut le faire globalement, pour des -connexions qui passent par un mandataire ou pour une machine -spcifique (examinez le modle de fichier de configuration). - - -Il est possible de faire transiter le trafic FTP par un mandataire HTTP en -positionnant la variable d'environnement ftp_proxy une URL -HTTP -- -consultez la mthode http ci-dessus pour la syntaxe. On ne peut pas le faire -dans le fichier de configuration et il n'est de toute faon pas recommand -d'utiliser FTP au travers de HTTP en raison la faible efficacit de cette -mthode. - - -L'option ForceExtended contrle l'utilisation des commandes lies - la RFC 2428, EPSV et EPRT. Par dfaut, elle vaut - false  ce qui signifie que ces commandes ne sont -utilises que pour une connexion de type IPv6. Quand elle vaut - true , on les utilise mme si la connexion est de type IPv4. La -plupart des serveurs FTP ne suivent pas la RFC 2428. - - - -cdrom - -URI cdrom ; la seule option de configuration pour les URI de cdrom -est le point de montage : cdrom::Mount ; il doit -reprsenter le point de montage du lecteur de cdrom indiqu dans -/etc/fstab. -On peut fournir d'autres commandes de montage et de dmontage quand le -point de montage ne peut tre list dans le fichier /etc/fstab -(par exemple, un montage SMB). Syntaxiquement, il faut placer -"/cdrom/"::Mount "foo"; dans le bloc cdrom. -La barre oblique finale est importante. Les commandes de dmontage -peuvent tre spcifies en utilisant UMount. - - - - gpgv - -URI GPGV ; la seule option pour les URI GPGV est celle qui permet de - passer des paramtres gpgv. - gpgv::Options : options supplmentaires passes - gpgv. - - - - - - - -Les rpertoires - -Les rpertoires de la section Dir::State concernent le systme -local. lists est le rpertoire o placer les listes de paquets -tlchargs et status est le nom du fichier d'tat de -&dpkg;. -preferences concerne APT : c'est le nom du fichier des -prfrences. -Dir::State contient le rpertoire par dfaut prfix tous les -sous-lments, quand ceux-ci ne commencent pas par / -ou ./. - - -Dir::Cache contient les emplacements qui renseignent sur le -cache local : par exemple, les deux caches de paquets -srcpkgcache et pkgcache, et aussi l'endroit o sont -places les archives tlcharges, Dir::Cache::archives. On peut -empcher la cration des caches en saisissant un nom vide. Cela ralentit -le dmarrage mais sauve de l'espace disque. Il vaut mieux se passer du -cache pkgcache plutt que se passer du cache srcpkgcache. -Comme pour Dir::State, le rpertoire par dfaut est contenu dans -Dir::Cache. - - -Dir::Etc contient l'emplacement des fichiers de configuration, -sourcelist indique l'emplacement de la liste de sources et -main est le fichier de configuration par dfaut (le modifier -n'a aucun effet, moins qu'on ne le modifie avec le fichier de -configuration indiqu par la variable APT_CONFIG). - - -Dir::Parts lit, par ordre d'entre, tous les fragments de -configuration dans le rpertoire indiqu. Ensuite, le fichier principal -de configuration est charg. - - -Les programmes binaires sont points par Dir::Bin. -L'emplacement des gestionnaires de mthodes est indiqu par -Dir::Bin::Methods ; gzip, -dpkg, apt-get, -dpkg-source, dpkg-buildpackage -et apt-cache -indiquent l'emplacement des programmes correspondants. - - -L'option de configuration RootDir a une signification -particulire. Lorsqu'elle est dfinie, tous les chemins dclars dans -Dir:: sont considrs relativement -RootDir, mme les chemins spcifis de manire -absolue. Ainsi par exemple si RootDir est -dfini comme /tmp/staging, et que chemin du fichier d'tat -Dir::State::status est dclar comme -/var/lib/dpkg/status alors ce fichier sera cherch -dans /tmp/staging/var/lib/dpkg/status. - - - -APT et DSelect - -Quand APT est utilis comme une mthode de &dselect;, plusieurs directives -contrlent le comportement par dfaut. On les trouve dans la section -DSelect. - - - -Clean - -Mode de nettoyage du cache ; cette variable peut prendre l'une des valeurs -suivantes :  always ,  prompt , - auto ,  pre-auto  et  never . - always  et  prompt  suppriment tous les paquets du -cache aprs la mise niveau ;  prompt  (valeur par dfaut) -les supprime aprs une demande et  auto  ne supprime que les -archives qui ne peuvent plus tre tlcharges (remplaces, par exemple, par -une nouvelle version).  pre-auto  les supprime avant de rcuprer -de nouveaux paquets. - - - -Options - -Le contenu de cette variable est pass comme options de ligne de commande -&apt-get; lors de la phase d'installation. - - -UpdateOptions - -Le contenu de cette variable est pass comme options de ligne de commande -&apt-get; lors de la phase de mise jour. - - - -PromptAfterUpdate - -Si cette option est  vraie , l'opration [U]pdate de &dselect; -interroge toujours l'utilisateur avant de continuer. Par dfaut, ce n'est -qu'en cas d'erreur que l'on propose l'utilisateur d'intervenir. - - - - - -Comment APT appelle &dpkg; - -Plusieurs directives de configuration contrlent la manire dont APT -invoque &dpkg; : elles figurent dans la section DPkg. - - -Options - -Il s'agit d'une liste d'options passer &dpkg;. Les options doivent tre -dclares en utilisant la notation de liste et chaque lment de la liste est -pass comme un seul argument &dpkg;. - - -Pre-InvokePost-Invoke - -Il s'agit d'une liste de commandes shell excuter avant ou aprs l'appel de -&dpkg;. Tout comme pour Options, on doit utiliser la notation de -liste. Les commandes sont appeles dans l'ordre, en utilisant -/bin/sh : APT s'arrte ds que l'une d'elles choue. - - -Pre-Install-Pkgs - -Il s'agit d'une liste de commandes shell excuter avant d'appeler &dpkg;. -Tout comme pour Options, on doit utiliser la notation de liste. -Les commandes sont appeles dans l'ordre, en utilisant -/bin/sh : APT s'arrte ds que l'une d'elles choue. Sur -l'entre standard, APT transmet aux commandes les noms de tous les fichiers -.deb qu'il va installer, raison d'un par ligne. - - -La deuxime version de ce protocole donne plus de renseignements : on -obtient la version du protocole, la configuration de APT et les paquets, -fichiers ou versions qui ont chang. On autorise cette version en positionnant -DPkg::Tools::Options::cmd::Version 2. cmd est une -commande passe Pre-Install-Pkgs. - - -Run-Directory - -APT se place dans ce rpertoire avant d'appeler &dpkg; ; par dfaut c'est -le rpertoire /. - - -Build-Options - -Ces options sont passes &dpkg-buildpackage; lors de la compilation des -paquets ; par dfaut la signature est dsactive et tous les binaires sont -crs. - - - - - - -Options  Periodic  et  Archive  - -Les groupes d'options APT::Periodic et -APT::Archive configurent les comportements priodiques -raliss par le script /etc/cron.daily/apt, lanc -quotidiennement. - - -APT::Periodic -Les options de cette section permettent de configurer la frquence -d'excution des tches APT lances automatiquement. Ces paramtre prennent -comme valeurs des priodicits d'excution en nombre de jours. - - -Update-Package-List : priodicit de mise jour de la -liste des paquets disponibles. (0 = dsactiv) - - -Download-Upgradable-Packages : priodicit de -tlchargement dans le cache des paquets pour lesquels une mise jour est -disponible. (0 = dsactiv) - - -AutocleanInterval : priodicit des - autoclean , c'est dire de la suppression du cache des paquets -qui ne peuvent plus tre tlchargs. (0 = dsactiv) - - -Unattended-Upgrade : priodicit de mise jour -automatique du systme sans intervention humaine. Le paquet -unattended-upgrades doit tre install pour que cette tche -s'excute. Le cas chant un fichier journal est crit dans -/var/log/unattended-upgrades. (0 = dsactiv) - - -APT::Archive -Les options de la section APT::Archive permettent de contrler la taille -du cache de paquets. - - -MaxAge : anciennet maximale d'un paquet dans le cache, -en nombre de jours. Les paquets plus anciens sont supprims. (0 = dsactiv) - - -MaxSize : taille maximale du cache en Mo. (0 = -dsactive) Si ce maximum est dpass, des paquets sont supprims jusqu' ce -que la taille du cache repasse sous la limite. Les paquets les plus volumineux -sont supprims en premier. - - -MinAge : age minimum d'un paquet du cache, en nombre de -jours (0 = dsactiv). Un paquet plus rcent ne sera pas supprim. Cette option -est utile pour garder disposition une version des paquets en cas de problme -grave. - - - - - -Les options de dbogage - -Les options de la section Debug:: servent soit provoquer -l'affichage d'informations de dbogage sur la sortie d'erreur standard du -programme qui utilise les librairies APT, soit activer des modes de -fonctionnement spciaux qui sont principalement utiles pour dboguer le -comportement de APT. La plupart de ces options n'ont pas -d'intrt pour un utilisateur normal, mais certaines peuvent tout de mme tre -utiles : - - - -Debug::pkgProblemResolver affiche d'intressantes -informations sur les dcisions prises par les commandes dist-upgrade, -upgrade, install, remove et purge. - - -Debug::NoLocking dsactive le verrouillage de fichier de -manire ce que APT puisse effectuer quelques oprations (telles que -apt-get -s install) sans tre  root . - - -Debug::pkgDPkgPM affiche la ligne de commande chaque appel -de &dpkg;. - - -Debug::IdentCdrom dsactive l'inclusion de donnes de type -statfs dans les ID de cdrom. - - - -Voici une liste complte des options de dbogage de APT. - -Debug::Acquire::cdrom - -Affiche les informations concernant les sources de type cdrom:// - - -Debug::Acquire::ftp - -Affiche les informations concernant le tlchargement de paquets par FTP. - - -Debug::Acquire::http - -Affiche les informations concernant le tlchargement de paquets par HTTP. - - -Debug::Acquire::https - -Affiche les informations concernant le tlchargement de paquets par HTTPS. - - -Debug::Acquire::gpgv - -Affiche les informations relatives la vrification de signatures -cryptographiques avec gpg. - - -Debug::aptcdrom - -Affiche des informations concernant l'accs aux collections de paquets -stockes sur cdrom. - - -Debug::BuildDeps - -Dcrit le processus de rsolution des dpendances pour la construction de -paquets source (  build-dependencies  ) par &apt-get;. - - -Debug::Hashes - -Affiche toutes les clefs de hachage cryptographiques gnres par les -librairies APT. - - -Debug::IdentCdrom -Dsactive l'inclusion des donnes de type -statfs pour la gnration des ID de cdrom, savoir le -nombre de blocs libres et utiliss sur le systme de fichier du cdrom. - - -Debug::NoLocking - -Dsactive le verrouillage de fichiers. Cela permet par exemple de lancer deux -instances de  apt-get update  en mme temps. - - -Debug::pkgAcquire - -Trace les ajouts et suppressions d'lments de la queue globale de -tlchargement. - - -Debug::pkgAcquire::Auth - -Affiche les dtails de la vrification des sommes de contrle et des signatures -cryptographiques des fichiers tlchargs, ainsi que les erreurs ventuelles. - - -Debug::pkgAcquire::Diffs - -Affiche les informations de tlchargement et de prise en compte des fichiers -diffrentiels des indexes de paquets, ainsi que les erreurs ventuelles. - - -Debug::pkgAcquire::RRed - -Affiche les dtails de la vrification des sommes de contrle et des signatures -cryptographiques des fichiers tlchargs, ainsi que les erreurs ventuelles. - - -Debug::pkgAcquire::Worker - -Affiche toutes les interactions avec les processus enfants qui se chargent -effectivement des tlchargements. - - -Debug::pkgAcquire::pkgAutoRemove - -Affiche les changements concernant le marquage des paquets comme installs -automatiquement, et la suppression des paquets inutiles. - - -Debug::pkgDepCache::AutoInstall - -Gnre les informations de dbogage dcrivant quels paquets sont installs -automatiquement pour satisfaire les dpendances. Cela concerne la passe -initiale d'installation automatique effectue par exemple par -apt-get install et pas le systme de rsolution de -dpendances complet de APT ; voir -Debug::pkgProblemResolver pour ce dernier. - - -Debug::pkgInitConfig - -Au lancement, affiche l'ensemble de la configuration sur la sortie d'erreur -standard. - - -Debug::pkgDPkgPM - -Affiche la commande exacte d'invocation de &dpkg; chaque appel ; les -arguments sont spars par des espaces. - - -Debug::pkgDPkgProgressReporting - Affiche l'ensemble des informations reues de &dpkg; par -l'intermdiaire du descripteur de fichier d'tat, et les ventuelles erreurs -d'analyse de ce fichier. - - -Debug::pkgOrderList - -Affiche les tapes de l'algorithme utilis pour choisir l'ordre dans lequel APT -passe les paquets &dpkg;. - - -Debug::pkgPackageManager - -Affiche le dtail des oprations lies l'invocation de &dpkg;. - - -Debug::pkgPolicy - -Au lancement, affiche la priorit de chaque liste de paquets. - - -Debug::pkgProblemResolver - -Affiche la trace d'excution du systme de rsolution de dpendances (ne -concerne que les cas o un problme de dpendances complexe se prsente). - - -Debug::sourceList - -Affiche les fournisseurs dclars dans le fichier -/etc/apt/vendors.list. - - - - - - - -Exemples - -Le fichier &configureindex; contient un modle de fichier montrant des exemples -pour toutes les options existantes. - - - -Fichiers - /etc/apt/apt.conf - - -Voir aussi - -&apt-cache;, &apt-config;, &apt-preferences;. - - -&manbugs; -&deux-traducteurs; - diff --git a/doc/fr/apt.ent.fr b/doc/fr/apt.ent.fr deleted file mode 100644 index 651100497..000000000 --- a/doc/fr/apt.ent.fr +++ /dev/null @@ -1,272 +0,0 @@ - - - - -&docdir;examples/configure-index.gz"> -/etc/apt.conf"> - - - - - - apt.conf - 5 - " -> - - - apt-get - 8 - " -> - - - apt-config - 8 - " -> - - - apt-cdrom - 8 - " -> - - - apt-cache - 8 - " -> - - - apt_preferences - 5 - " -> - - - apt-key - 8 - " -> - - - apt-secure - 8 - " -> - - - apt-ftparchive - 1 - " -> - - - sources.list - 5 - -"> - - - reportbug - 1 - " -> - - - dpkg - 8 - " -> - - - dpkg-buildpackage - 1 - " -> - - - gzip - 1 - " -> - - - dpkg-scanpackages - 8 - " -> - - - dpkg-scansources - 8 - " -> - - - dselect - 8 - " -> - - - aptitude - 8 - " -> - - - synaptic - 8 - " -> - - - debsign - 1 - " -> - - - debsig-verify - 1 - " -> - - - gpg - 1 - " -> - - - -
apt@packages.debian.org
- Jason Gunthorpe - 1998-2001 Jason Gunthorpe - 14 dcembre 2003 - Linux -
-"> - - - apt@packages.debian.org - -"> - - - Jason - Gunthorpe - -"> - - - APT team - -"> - -Linux -"> - - apt@packages.debian.org - -"> - - - Jason Gunthorpe - 1998-2001 - -"> - - - -Bogues - -Voyez la page concernant les bogues d'APT. - Si vous voulez signaler un bogue, consultez le texte - /usr/share/doc/debian/bug-reporting.txt ou utilisez la -commande &reportbug;. - " -> - - -Auteur - - APT a t crit par l'quipe APT apt@packages.debian.org. - - " -> - - -Traduction - -Jrme Marant. 2000 ; mise jour : Philippe Batailler. 2005. -debian-l10n-french@lists.debian.org. -" -> - -Traduction - -Philippe Batailler. debian-l10n-french@lists.debian.org. 2005. - -"> - - - - - -Affiche un mode d'emploi succinct. - - - - - - -Affiche la version du programme. - - - - - - -Fichier de configuration ; indique quel fichier de configuration utiliser. -Le programme lit le fichier de configuration par dfaut, puis celui-ci. -Voyez &apt-conf; pour la syntaxe. - - - - - - -Donne une option de configuration ; cela fixe une option de configuration -arbitraire. La syntaxe est : . - - -"> - - - -Toutes les options en ligne de commande peuvent tre positionnes via le -fichier de configuration ; les descriptifs indiquent l'option de -configuration positionner. En ce qui concerne les options boolennes, -on peut annuler le fichier de configuration en utilisant quelque chose comme -,, -ou d'autres variantes. - -"> diff --git a/doc/fr/apt_preferences.fr.5.xml b/doc/fr/apt_preferences.fr.5.xml deleted file mode 100644 index aba9f0d06..000000000 --- a/doc/fr/apt_preferences.fr.5.xml +++ /dev/null @@ -1,581 +0,0 @@ - - -%aptent; - -]> - - - - - &apt-author.team; - &apt-email; - &apt-product; - - 29 Fvrier 2004 - - - -apt_preferences -5 - - - -apt_preferences -Un fichier de contrle des prfrences pour APT - - -Description - -Le fichier d'APT, /etc/apt/preferences, peut tre utilis pour -choisir la version des paquets que l'on veut installer. - -Quand le fichier &sources-list; contient des rfrences plusieurs -distributions (par exemple, stable et -testing), plusieurs versions d'un paquet peuvent tre -installes. APT affecte une priorit chaque version disponible. La commande -apt-get, tenant compte des contraintes de -dpendance, installe la version qui possde la priorit la plus haute. -Le fichier des prfrences annule les priorits assignes par dfaut -aux versions des paquets : ainsi l'utilisateur peut choisir la version -qu'il veut installer. - - -Si le fichier &sources-list; contient, pour une mme distribution, -des rfrences plusieurs sites de tlchargement, il peut exister plusieurs -exemplaires de la mme version d'un paquet. Dans ce cas, -apt-get tlcharge l'exemplaire qui apparat en premier -dans le fichier &sources-list;. Le fichier des prfrences n'influe pas sur -le choix des exemplaires, seulement sur le choix de la version. - - -Les priorits affectes par dfaut - -Quand le fichier des prfrences n'existe pas, ou quand aucune entre -de ce fichier ne s'applique une version prcise, la priorit affecte -cette version est la priorit de la distribution laquelle elle appartient. -On peut distinguer une distribution et lui donner une priorit plus haute -que celle des autres distributions : on l'appelle la distribution par -dfaut ou  target release  et elle peut tre dfinie sur la ligne -de commande de apt-get ou dans le fichier de configuration -d'APT, /etc/apt/apt.conf. -Par exemple : - - -apt-get install -t testing paquet - - - -APT::Default-Release "stable"; - - - -Quand une distribution par dfaut a t indique, APT utilise -l'algorithme suivant pour dterminer la priorit des versions d'un -paquet : - - -une priorit gale 100 -est affecte la version dj installe (si elle existe). - - -une priorit gale 500 -est affecte aux versions qui ne sont pas installes et -qui n'appartiennent pas la distribution par dfaut. - - -une priorit gale 990 -est affecte aux versions qui ne sont pas installes et -qui appartiennent la distribution par dfaut. - - - - -Quand aucune distribution par dfaut n'a t indique, APT affecte -simplement une priorit gale 100 toute version installe d'un paquet -et une priorit gale 500 tout version non installe. - - -Puis APT applique les rgles suivantes pour dterminer la version -du paquet qu'il faut installer (elles sont listes par ordre de priorit) : - - - -Ne jamais revenir en arrire, sauf si la priorit d'une -version disponible dpasse 1000.  Revenir en arrire  signifie -installer une version moins rcente que la version installe. Il -faut noter qu'aucune des priorits par dfaut n'excde 1000 ; de telles -valeurs ne peuvent tre dfinies que dans le fichier des prfrences. Notez -aussi qu'il est risqu de revenir en arrire. - - -Installer la version qui possde la priorit la plus -haute. - - -Quand deux (ou plus) versions ont la mme priorit, -installer la version la plus rcente (c.--d. celle dont le numro de -version est le plus grand). - - -Quand deux (ou plus) versions ont la mme priorit et le -mme numro de version, mais soit les paquets diffrent par certaines -mtadonnes, soit l'option --reinstall a t donne, installer la -version qui n'est pas installe. - - - - -En gnral, la version installe d'un paquet (priorit 100) n'est -pas aussi rcente que les versions disponibles dans les sources -listes dans le fichier &sources-list; (priorit 500 ou 990). Et donc le -paquet sera mis niveau avec la commande : -apt-get install paquet ou -apt-get dist-upgrade. - - -La version installe d'un paquet peut tre - rarement - -plus rcente que tout autre version disponible. Les commandes -apt-get install paquet ou -apt-get upgrade ne provoquent pas de retour en arrire. - - -Parfois, la version installe d'un paquet est plus rcente que la -version appartenant la distribution par dfaut, mais moins rcente que -la version appartenant une autre distribution. Une telle version sera mise - niveau par les commandes -apt-get install paquet ou -apt-get upgrade car au moins l'une des versions -disponibles possde une plus haute priorit que celle de la version installe. - - - -Consquences des prfrences - -Le fichier des prfrences permet l'administrateur systme de -contrler l'affectation des priorits. Ce fichier est constitu d'une ou -plusieurs entres spares par des lignes blanches. Ces entres peuvent avoir -deux formes, une forme particulire et une forme gnrale. - - -La forme particulire affecte une priorit -(Pin-Priority) un paquet prcis, une version prcise -ou un intervalle spcifiant plusieurs versions. Par exemple, l'entre -suivante affecte une priorit haute toutes les versions du paquet -perl dont le numro de version commence par 5.8. - - - -Package: perl -Pin: version 5.8* -Pin-Priority: 1001 - - - - -La forme gnrale affecte une priorit toutes les versions d'un paquet dans -une distribution donne (c'est--dire, toutes les versions d'un paquet qui -sont listes dans un fichier Release), ou toutes les versions -d'un paquet provenant d'un site internet identifi par un nom compltement -qualifi. - - -Cette forme gnrale des entres du fichier des prfrences -s'applique seulement aux groupes de paquets. Par exemple, l'entre suivante -affecte une priorit haute toutes les versions disponibles dans le -site local. - - - -Package: * -Pin: origin "" -Pin-Priority: 999 - - -Attention ! le mot-cl utilis ici, origin, ne doit pas -tre confondu avec l'Origine d'une distribution indique dans -un fichier Release. Ce qui suit l'tiquette  Origin:  -dans un fichier Release n'est pas une adresse internet -mais le nom d'un auteur ou d'un distributeur, comme Debian ou Ximian. - -L'entre suivante affecte une priorit basse toutes les versions -d'un paquet appartenant toute distribution dont le nom -d' Archive  est unstable. - - - -Package: * -Pin: release a=unstable -Pin-Priority: 50 - - -L'entre suivante affecte une priorit haute toutes les versions -d'un paquet appartenant toute distribution dont le nom -d' Archive  est stable et dont le numro -de  Version  est 3.0. - - - -Package: * -Pin: release a=stable, v=3.0 -Pin-Priority: 500 - - - - - - - -Comment APT interprte-t-il les priorits ? - -Les priorits (P) indiques dans le fichier des prfrences doivent -tre des entiers positifs ou ngatifs. Ils sont interprts peu prs -comme suit : - - -P > 1000 - -Cette priorit entrane l'installation du paquet mme s'il -s'agit d'un retour en arrire. - - - -990 < P <=1000 - -La version sera installe, mme si elle n'appartient pas -la distribution par dfaut ; mais elle ne sera pas installe si la -version installe est plus rcente. - - - -500 < P <=990 - -La version sera installe, sauf s'il existe une version -appartenant la distribution par dfaut ou si la version installe est plus -rcente. - - - -100 < P <=500 - -La version sera installe, sauf s'il existe une version -appartenant une autre distribution ou si la version installe est plus -rcente. - - - -0 < P <=100 - -La version sera installe si aucune version du paquet -n'est installe. - - - -P < 0 - -Cette priorit empche l'installation de la version. - - - - - -Si l'une des entres de forme particulire correspond la version -disponible d'un paquet, la premire entre trouve dtermine la priorit de -cette version. S'il n'en existe pas, et si l'une des entres de forme gnrale -correspond la version disponible d'un paquet, la premire entre trouve -dtermine la priorit. - - -Supposons par exemple que le fichier des prfrences contienne les trois -entres dcrites ci-dessous : - - - -Package: perl -Pin: version 5.8* -Pin-Priority: 1001 - -Package: * -Pin: origin "" -Pin-Priority: 999 - -Package: * -Pin: release unstable -Pin-Priority: 50 - - - -Alors : - - - -La version la plus rcente du paquet perl sera -install pour autant que son numro de version commence par 5.8. -Si l'une des versions 5.8* existe et si la version installe est -une version 5.9*, il y aura un retour en arrire. - - -Les versions des paquets (autres que perl) -disponibles dans le site local ont priorit sur les autres versions, -mme celles appartenant la distribution par dfaut. - - -La version d'un paquet dont l'origine n'est pas le site -local mais un site internet list dans &sources-list; et qui appartient une -distribution unstable, ne sera installe que si aucune version -du paquet n'est dj installe. - - - - - -Dtermination de la version des paquets et des proprits des -distributions - -Chaque source liste dans le fichier &sources-list; doit fournir -les fichiers Packages et Release -qui dcrivent les paquets disponibles cet endroit. - -Le fichier Packages se trouve normalement dans le -rpertoire -.../dists/dist-name/component/arch, par exemple, -.../dists/stable/main/binary-i386/Packages. Il consiste -en entres composes de lignes, une pour chaque paquet disponible dans le -rpertoire. Seules deux lignes des entres sont pertinentes pour la -dtermination des priorits : - - -La ligne Package: - -donne le nom du paquet - - - -La ligne Version: - -donne le numro de version du paquet - - - - - -Le fichier Release se trouve normalement dans le -rpertoire -.../dists/dist-name, par exemple, .../dists/stable/Release, ou .../dists/woody/Release. -Il consiste en une seule entre compose de plusieurs lignes qui s'applique -tous les paquets situs dans les rpertoires sous -le rpertoire parent. Contrairement au fichier Packages, presque -toutes les lignes du fichier Release sont pertinentes pour -dterminer les priorits : - - - -La ligne Archive: - -nomme l'archive laquelle appartiennent tous les -paquets situs dans les rpertoires. Par exemple, la ligne -Archive: stable indique que tous les paquets dans les rpertoires -situs sous le rpertoire parent du fichier Release appartiennent - l'archive stable. Indiquer cette valeur dans le fichier des -prfrences demanderait cette ligne : - - -Pin: release a=stable - - - - - -La ligne Version: - -indique la version de la distribution. Par exemple, les -paquets dans les rpertoires peuvent appartenir la -distribution Debian GNU/Linux version 3.0. Il n'y a pas de numro de version -pour les distributions testing et unstable car elles -n'ont pas encore t publies. Indiquer cette valeur dans le fichier des prfrences demanderait -ces lignes : - - -Pin: release v=3.0 -Pin: release a=stable, v=3.0 -Pin: release 3.0 - - - - - -La ligne Component: - -nomme un composant qui indique le type de licence associe -aux paquets situs dans les rpertoires sous le fichier -Release. Par exemple, la ligne Component: main indique -que tous les exemplaires dans les rpertoires appartiennent au composant -main, c'est--dire que leur licence est en accord avec les -Directives Debian pour le logiciel libre. Indiquer ce composant dans le -fichier des prfrences demanderait cette ligne : - - -Pin: release c=main - - - - - -La ligne Origin: - -nomme l'origine des paquets situs -dans les rpertoires sous le fichier Release. En gnral, c'est -Debian. Indiquer cette origine dans le fichier des prfrences -demanderait cette ligne : - - -Pin: release o=Debian - - - - - -La ligne Label: - -indique un label pour les paquets qui se trouvent -dans les rpertoires sous le fichier Release. En gnral, c'est -Debian. Indiquer cette origine dans le fichier des prfrences -demanderait cette ligne : - - -Pin: release l=Debian - - - - - -Tous les fichiers Packages et -Release rcuprs dans des sources listes par le -fichier &sources-list; sont conservs dans le rpertoire -/var/lib/apt/lists ou dans le fichier spcifi par la -variable Dir::State::Lists dans le fichier apt.conf. -Par exemple, le fichier -debian.lcs.mit.edu_debian_dists_unstable_contrib_binary-i386_Release -contient le fichier Release du site -debian.lcs.mit.edu, architecture binary-i386 et -composant contrib de la distribution unstable. - - - -Lignes facultatives dans le fichier des prfrences - -Toute entre du fichier des prfrences peut commencer par une ou -plusieurs lignes contenant le mot Explanation:. Cela permet des -commentaires. - -La ligne Pin-Priority: d'une entre est facultative. Si elle -n'existe pas, APT affecte une priorit infrieure de 1 la valeur spcifie -sur une ligne commenant par Pin-Priority: release .... - - - - - -Exemples -Comment suivre Stable ? - -Le fichier des prfrences suivant affecte une priorit plus haute que -la priorit par dfaut (500) tous les exemplaires appartenant la -distribution stable et une priorit prohibitivement basse tous -les exemplaires appartenant d'autres distributions Debian. - - -Explanation: Ne pas installer des exemplaires d'origine Debian -Explanation: sauf ceux de la distribution stable -Package: * -Pin: release a=stable -Pin-Priority: 900 - -Package: * -Pin: release o=Debian -Pin-Priority: -10 - - - -Avec le fichier des prfrences ci-dessus et un fichier &sources-list; -adquat, les commandes suivantes utiliseront les versions les plus rcentes -de stable pour faire la mise niveau : - - -apt-get install paquet -apt-get upgrade -apt-get dist-upgrade - - - -La commande suivante utilisera la version la plus rcente de la -distribution testing pour mettre niveau le paquet spcifi ; -cependant les mises niveau ultrieures du paquet ne se feront pas - moins de relancer la commande. - - -apt-get install paquet/testing - - - - -Comment suivre Testing ou Unstable ? - -Le fichier des prfrences suivant affecte une priorit haute aux -versions des paquets appartenant la distribution testing, une -priorit moindre aux versions appartenant la distribution unstable -et une priorit prohibitivement basse aux versions appartenant d'autres -distributions Debian. - - -Package: * -Pin: release a=testing -Pin-Priority: 900 - -Package: * -Pin: release a=unstable -Pin-Priority: 800 - -Package: * -Pin: release o=Debian -Pin-Priority: -10 - - - -Avec un fichier &sources-list; appropri et le fichier des prfrences -ci-dessus, les commandes suivantes -utiliseront les versions les plus rcentes de testing pour faire -la mise niveau : - - -apt-get install paquet -apt-get upgrade -apt-get dist-upgrade - - - -La commande suivante utilisera la version la plus rcente de la -distribution unstable pour mettre niveau le paquet spcifi ; -Par la suite, apt-get upgrade mettra le paquet jour -avec la plus rcente version dans testing si elle est plus rcente -que la version installe ou avec la plus rcente version dans -unstable si elle est plus rcente que la version installe. - - -apt-get install paquet/unstable - - - - - -See Also - -&apt-get; &apt-cache; &apt-conf; &sources-list; - - - - &manbugs; -&traducteur; - diff --git a/doc/fr/makefile b/doc/fr/makefile index c650dc03a..214534736 100644 --- a/doc/fr/makefile +++ b/doc/fr/makefile @@ -5,59 +5,7 @@ SUBDIR=doc/fr # Bring in the default rules include ../../buildlib/defaults.mak -# Do not use XMLTO, build the manpages directly with XSLTPROC -XSLTPROC=/usr/bin/xsltproc -STYLESHEET=./style.fr.xsl - - -# Man pages -SOURCE = apt-cache.fr.8 apt-get.fr.8 apt-cdrom.fr.8 apt.conf.fr.5 \ - sources.list.fr.5 apt-config.fr.8 apt-sortpkgs.fr.1 \ - apt-ftparchive.fr.1 apt_preferences.fr.5 apt-extracttemplates.fr.1 \ - apt-key.fr.8 apt-secure.fr.8 - -INCLUDES = apt.ent.fr - -doc: $(SOURCE) - -$(SOURCE) :: % : %.xml $(INCLUDES) - echo Creating man page $@ - $(XSLTPROC) -o $@ $(STYLESHEET) $< - -apt-cache.fr.8:: apt-cache.8 - cp $< $@ - -apt-get.fr.8:: apt-get.8 - cp $< $@ - -apt-cdrom.fr.8:: apt-cdrom.8 - cp $< $@ - -apt.conf.fr.5:: apt.conf.5 - cp $< $@ - -apt-config.fr.8:: apt-config.8 - cp $< $@ - -sources.list.fr.5:: sources.list.5 - cp $< $@ - -apt-sortpkgs.fr.1:: apt-sortpkgs.1 - cp $< $@ - -apt-ftparchive.fr.1:: apt-ftparchive.1 - cp $< $@ - -apt_preferences.fr.5:: apt_preferences.5 - cp $< $@ - -apt-extracttemplates.fr.1:: apt-extracttemplates.1 - cp $< $@ - -apt-key.fr.8:: apt-key.8 - cp $< $@ - -apt-secure.fr.8:: apt-secure.8 - cp $< $@ - +# Language Code of this translation +LC=fr +include $(PO4A_MANPAGE_H) diff --git a/doc/fr/sources.list.fr.5.xml b/doc/fr/sources.list.fr.5.xml deleted file mode 100644 index 4235480f8..000000000 --- a/doc/fr/sources.list.fr.5.xml +++ /dev/null @@ -1,257 +0,0 @@ - - -%aptent; - -]> - - - - - &apt-author.jgunthorpe; - &apt-author.team; - &apt-email; - &apt-product; - - 29 February 2004 - - - -sources.list -5 - - - -sources.list -Liste des sources de paquets - - -Description - -La liste des sources de paquets indique o trouver les archives -du systme de distribution de paquets utilis. Pour l'instant, cette page -de manuel ne documente que le systme d'empaquetage utilis par le systme -Debian GNU/Linux. Ce fichier de contrle est /etc/apt/sources.list. - - -La liste des sources est conue pour prendre en compte un nombre quelconque -de sources actives et diffrents mdia. Le fichier prsente -une source par ligne et la source prfre apparat en premier. Le format de -chaque ligne est : type uri args. Le premier lment, -type, dtermine le format des args. -uri est un -identificateur universel de ressources (URI), qui est un sur-ensemble du plus -spcifique et bien connu repre universel de ressources, ou URL. La fin de la -ligne peut tre un commentaire commenant par un caractre #. - - - -sources.list.d - Le rpertoire /etc/apt/sources.list.d permet de -lister des sources de paquets dans des fichiers distincts qui se terminent -par .list. Leur format est le mme que celui du fichier -sources.list. - - - -Les types deb et deb-src. - -Le type deb dcrit une archive Debian classique deux niveaux, -distribution/composant. distribution peut prendre -l'une des valeurs suivantes : stable, unstable, ou -testing, et composant : main, -contrib, -non-free, ou non-us. -Le type deb-src dcrit le -code source pour une distribution Debian dans le mme format que le type -deb. Une ligne deb-src est ncessaire pour rcuprer les -index des sources. - - -Le format d'une entre dans sources.list utilisant les types -deb et deb-src est de la forme : - - deb uri distribution [composant1] [composant2] [...] - -L'URI de type deb doit indiquer la base de la distribution Debian -dans laquelle APT trouvera les informations dont il a besoin. -distribution peut spcifier le chemin exact : dans ce cas, on -doit omettre les composants et distribution doit se terminer par une -barre oblique (/). C'est utile quand seule une sous-section particulire de -l'archive dcrite par cet URI est intressante. Quand distribution -n'indique pas un chemin exact, un composant au moins doit tre -prsent. - - -distribution peut aussi contenir une variable $(ARCH), -qui sera remplace par l'architecture Debian (i386, m68k, powerpc, ...) -sur laquelle s'excute le systme. On peut ainsi utiliser un fichier -sources.list qui ne dpend pas d'une architecture. En gnral, -ce n'est intressant que si l'on indique un chemin exact ; sinon -APT cre automatiquement un URI en fonction de l'architecture -effective. - - -Puisqu'on ne peut indiquer qu'une seule distribution par ligne, il peut tre -ncessaire de disposer le mme URI sur plusieurs lignes quand on veut -accder un sous-ensemble des distributions ou composants disponibles cette -adresse. APT trie les URI aprs avoir cre pour lui-mme la liste -complte ; il regroupe les rfrences multiples au mme hte Internet -en vue d'une connexion unique et il vite ainsi, par exemple, d'tablir une -connexion FTP, de la fermer, faire autre chose, puis d'tablir encore cette -connexion. Cette fonctionnalit permet l'accs des sites FTP surchargs qui -limitent le nombre de connexions simultanes pour les utilisateurs anonymes. -APT paralllise aussi les connexions diffrents htes pour tirer plus -efficacement parti des sites faible bande passante. - - -Il est important d'indiquer les sources par ordre de prfrence, -la source principale apparaissant en premier. Un tri est fait, de la plus -rapide la plus lente ; par exemple, un cdrom suivi par les htes d'un -rseau local, puis les htes distants. - -Voici quelques exemples : - - - -deb http://http.us.debian.org/debian stable main contrib non-free -deb http://http.us.debian.org/debian dists/stable-updates/ - - - -La spcification des URI - -Les URI actuellement reconnus sont : cdrom, file, http et ftp. - -file - -Le procd file permet qu'un rpertoire arbitraire au sein du -systme de fichier soit considr comme une archive. On s'en sert avec les -montages NFS, les miroirs et les archives locaux. - - - -cdrom - -Le procd cdrom permet l'utilisation d'un lecteur de cdrom -avec la possibilit de changer de media. Utilisez le programme &apt-cdrom; -pour crer des entres dans la liste des sources. - - - - -http - -Le procd http indique un serveur HTTP comme archive. Si une -variable d'environnement http_proxy (au format http://server:port/) -existe, le serveur mandataire indiqu par http_proxy est utilis. -Quand un serveur mandataire HTTP/1.1 demande une authentification, on peut -utiliser la chane http://user:pass@server:port/. Notez qu'il s'agit d'une -mthode d'authentification peu sre. - - - - -ftp - -Le procd ftp indique un serveur FTP comme archive. Le -fonctionnement en mode ftp est largement configurable ; rfrez-vous - la page de manuel de &apt-cdrom; pour d'autres informations. On -remarquera qu'on peut indiquer un mandataire ftp avec la variable -d'environnement ftp_proxy. On peut aussi spcifier un mandataire http -(les serveurs mandataires http comprennent souvent les URL ftp) en utilisant -cette mthode et SEULEMENT cette mthode. Les mandataires ftp utilisant http -et qui sont spcifis dans le fichier de configuration seront ignors. - - - - -copy - -Le procd copy est identique au procd file -except que -les paquets sont copis dans le cache du rpertoire au lieu d'tre utiliss -directement depuis leur emplacement. C'est utile aux gens qui utilisent un -disque zip pour recopier des fichiers avec APT. - - - -rshssh - -Le procd rsh/ssh utilise rsh/ssh pour se connecter une -machine distante en tant que tel utilisateur donn et pour accder aux -fichiers. Aucune authentification par mot de passe n'est possible : il -faut au pralable rgler ce problme avec des cls RSA ou bien rhosts. Pour -l'accs aux fichiers de la machine distante et le transfert, on utilise les -commandes standard find et dd. - - - - - - -Exemples - -Utiliser l'archive stocke localement (ou monte via NFS) dans -/home/jason/debian pour stable/main, stable/contrib et stable/non-free. - - deb file:/home/jason/debian stable main contrib non-free - - -Comme ci-dessus, except que cette ligne utilise la distribution - unstable  (dveloppement). - - deb file:/home/jason/debian unstable main contrib non-free - - -La prcdente ligne, mais pour les sources. - -deb-src file:/home/jason/debian unstable main contrib non-free - - -Utiliser HTTP pour accder l'archive situe archive.debian.org, et -n'utiliser que la section hamm/main. - - deb http://archive.debian.org/debian-archive hamm main - - -Utiliser FTP pour accder l'archive situe ftp.debian.org, dans le -rpertoire debian, et n'utiliser que la section stable/contrib. - - deb ftp://ftp.debian.org/debian stable contrib - - -Utiliser FTP pour accder l'archive situe ftp.debian.org, dans le -rpertoire debian, et n'utiliser que la section unstable/contrib. Si cette -ligne et celle de l'exemple prcdent dans sources.list -apparaissent, une seule session FTP sera utilise pour les deux lignes. - - deb ftp://ftp.debian.org/debian unstable contrib - - -Utiliser HTTP pour accder l'archive situe nonus.debian.org, dans le -rpertoire debian-non-US. - - deb http://nonus.debian.org/debian-non-US stable/non-US main contrib non-free - - -Utiliser HTTP pour accder l'archive situe nonus.debian.org, dans le -rpertoire debian-non-US, et n'utiliser que les fichiers trouvs dans -unstable/binary-i386 pour les machines i386, dans -unstable/binary-m68k pour les machines m68k et ainsi de suite -pour les autres architectures reconnues. [Notez que cet exemple montre -seulement la manire d'utiliser la variable substituer, non-us n'tant plus -structur de cette manire.] - - deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/ - - -Voir aussi -&apt-cache; &apt-conf; - - -&manbugs; -&traducteur; - \ No newline at end of file diff --git a/doc/po/fr.po b/doc/po/fr.po new file mode 100644 index 000000000..7a9c63c2c --- /dev/null +++ b/doc/po/fr.po @@ -0,0 +1,8823 @@ +# Translation of apt package man pages +# Copyright (C) 2000-2009 Debian French l10n team +# This file is distributed under the same license as the apt package. +# +# Translators: +# Jérôme Marant, 2000. +# Philippe Batailler, 2005. +# Christian Perrier , 2009. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: 2009-07-30 22:55+0900\n" +"PO-Revision-Date: 2009-09-04 20:23+0200\n" +"Last-Translator: Christian Perrier \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: ENCODING\n" +"X-Generator: Lokalize 1.0\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. type: TH +#: apt.8:17, no-wrap +msgid "apt" +msgstr "apt" + +#. type: TH +#: apt.8:17 +#, no-wrap +msgid "16 June 1998" +msgstr "16 Juin 1998" + +#. type: TH +#: apt.8:17 +#, no-wrap +msgid "Debian GNU/Linux" +msgstr "Debian GNU/Linux" + +#. type: SH +#: apt.8:18 +#, no-wrap +msgid "NAME" +msgstr "NOM" + +#. type: Plain text +#: apt.8:20 +msgid "apt - Advanced Package Tool" +msgstr "apt - Outil complet de gestion de paquets" + +#. type: SH +#: apt.8:20 +#, no-wrap +msgid "SYNOPSIS" +msgstr "RÉSUMÉ" + +#. type: Plain text +#: apt.8:22 +msgid "B" +msgstr "B" + +#. type: SH +#: apt.8:22 +#, no-wrap +msgid "DESCRIPTION" +msgstr "DESCRIPTION" + +#. type: Plain text +#: apt.8:31 +msgid "" +"APT is a management system for software packages. For normal day to day " +"package management there are several frontends available, such as B" +"(8) for the command line or B(8) for the X Window System. Some " +"options are only implemented in B(8) though." +msgstr "" +"APT est un système de gestion de paquets logiciels. Pour la gestion au quotidien des paquets, il existe plusieurs frontaux comme B(9) à " +"la ligne de commande ou B(8) pour X Window. Cependant, certaines options ne sont disponibles que dans B(8)." + +#. type: SH +#: apt.8:31 +#, no-wrap +msgid "OPTIONS" +msgstr "OPTIONS" + +#. type: Plain text +#: apt.8:33 apt.8:35 +msgid "None." +msgstr "Aucune." + +#. type: SH +#: apt.8:33 +#, no-wrap +msgid "FILES" +msgstr "FICHIERS" + +#. type: SH +#: apt.8:35 +#, no-wrap +msgid "SEE ALSO" +msgstr "VOIR AUSSI" + +#. type: Plain text +#: apt.8:42 +msgid "" +"B(8), B(8), B(5), B(5), " +"B(5), B(8)" +msgstr "" +"B(8), B(8), B(5), B(5), " +"B(5), B(8)" + +#. type: SH +#: apt.8:42 +#, no-wrap +msgid "DIAGNOSTICS" +msgstr "DIAGNOSTIQUE" + +#. type: Plain text +#: apt.8:44 +msgid "apt returns zero on normal operation, decimal 100 on error." +msgstr "" +"apt-get renvoie zéro après une opération normale et la " +"valeur décimale 100 en cas d'erreur." + +#. type: SH +#: apt.8:44 +#, no-wrap +msgid "BUGS" +msgstr "BOGUES" + +#. type: Plain text +#: apt.8:46 +msgid "This manpage isn't even started." +msgstr "Cette page de manuel n'a même pas commencé à être rédigée." + +#. type: Plain text +#: apt.8:55 +msgid "" +"See Ehttp://bugs.debian.org/aptE. If you wish to report a bug in " +"B, please see I or the " +"B(1) command." +msgstr "" +"Voir Ehttp://bugs.debian.org/aptE. Si vous souhaitez remonter un bogue dans B, veuillez lire I" +" ou utiliser la commande B(1)." + +#. type: SH +#: apt.8:55 +#, no-wrap +msgid "AUTHOR" +msgstr "AUTEURS" + +#. type: Plain text +#: apt.8:56 +msgid "apt was written by the APT team Eapt@packages.debian.orgE." +msgstr "apt a été écrit par l'équipe de développement APT Eapt@packages.debian.orgE." + +#. type: Plain text +#: apt.ent:2 +msgid "" +msgstr "" + +#. type: Plain text +#: apt.ent:10 +msgid "" +" &docdir;examples/configure-index.gz\"> /etc/apt.conf\"> " +msgstr "" +" &docdir;examples/configure-index.gz\"> /etc/apt.conf\"> " + +#. type: Plain text +#: apt.ent:17 +#, no-wrap +msgid "" +"\n" +"\n" +" apt.conf\n" +" 5\n" +" \"\n" +">\n" +msgstr "" +"\n" +"\n" +" apt.conf\n" +" 5\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:23 +#, no-wrap +msgid "" +"\n" +" apt-get\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" apt-get\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:29 +#, no-wrap +msgid "" +"\n" +" apt-config\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" apt-config\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:35 +#, no-wrap +msgid "" +"\n" +" apt-cdrom\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" apt-cdrom\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:41 +#, no-wrap +msgid "" +"\n" +" apt-cache\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" apt-cache\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:47 +#, no-wrap +msgid "" +"\n" +" apt_preferences\n" +" 5\n" +" \"\n" +">\n" +msgstr "" +"\n" +" apt_preferences\n" +" 5\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:53 +#, no-wrap +msgid "" +"\n" +" apt-key\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" apt-key\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:59 +#, no-wrap +msgid "" +"\n" +" apt-secure\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" apt-secure\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:65 +#, no-wrap +msgid "" +"\n" +" apt-ftparchive\n" +" 1\n" +" \"\n" +">\n" +msgstr "" +"\n" +" apt-ftparchive\n" +" 1\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:72 +#, no-wrap +msgid "" +"\n" +" sources.list\n" +" 5\n" +" \"\n" +">\n" +msgstr "" +"\n" +" sources.list\n" +" 5\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:78 +#, no-wrap +msgid "" +"\n" +" reportbug\n" +" 1\n" +" \"\n" +">\n" +msgstr "" +"\n" +" reportbug\n" +" 1\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:84 +#, no-wrap +msgid "" +"\n" +" dpkg\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" dpkg\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:90 +#, no-wrap +msgid "" +"\n" +" dpkg-buildpackage\n" +" 1\n" +" \"\n" +">\n" +msgstr "" +"\n" +" dpkg-buildpackage\n" +" 1\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:96 +#, no-wrap +msgid "" +"\n" +" gzip\n" +" 1\n" +" \"\n" +">\n" +msgstr "" +"\n" +" gzip\n" +" 1\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:102 +#, no-wrap +msgid "" +"\n" +" dpkg-scanpackages\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" dpkg-scanpackages\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:108 +#, no-wrap +msgid "" +"\n" +" dpkg-scansources\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" dpkg-scansources\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:114 +#, no-wrap +msgid "" +"\n" +" dselect\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" dselect\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:120 +#, no-wrap +msgid "" +"\n" +" aptitude\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" aptitude\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:126 +#, no-wrap +msgid "" +"\n" +" synaptic\n" +" 8\n" +" \"\n" +">\n" +msgstr "" +"\n" +" synaptic\n" +" 8\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:132 +#, no-wrap +msgid "" +"\n" +" debsign\n" +" 1\n" +" \"\n" +">\n" +msgstr "" +"\n" +" debsign\n" +" 1\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:138 +#, no-wrap +msgid "" +"\n" +" debsig-verify\n" +" 1\n" +" \"\n" +">\n" +msgstr "" +"\n" +" debsig-verify\n" +" 1\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:144 +#, no-wrap +msgid "" +"\n" +" gpg\n" +" 1\n" +" \"\n" +">\n" +msgstr "" +"\n" +" gpg\n" +" 1\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:150 +#, no-wrap +msgid "" +"\n" +" gnome-apt\n" +" 1\n" +" \"\n" +">\n" +msgstr "" +"\n" +" gnome-apt\n" +" 1\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:156 +#, no-wrap +msgid "" +"\n" +" wajig\n" +" 1\n" +" \"\n" +">\n" +msgstr "" +"\n" +" wajig\n" +" 1\n" +" \"\n" +">\n" + +#. type: Plain text +#: apt.ent:165 +#, no-wrap +msgid "" +"\n" +"\n" +"
apt@packages.debian.org
\n" +" Jason Gunthorpe\n" +" 1998-2001 Jason Gunthorpe\n" +" 28 October 2008\n" +" Linux\n" +msgstr "" +"\n" +"\n" +"
apt@packages.debian.org
\n" +" Jason Gunthorpe\n" +" 1998-2001 Jason Gunthorpe\n" +" 28 octobre 2008\n" +" Linux\n" + +#. type: Plain text +#: apt.ent:168 +#, no-wrap +msgid "" +" \n" +"\"> \n" +msgstr "" +" \n" +"\"> \n" + +#. type: Plain text +#: apt.ent:174 apt.ent:204 +#, no-wrap +msgid "" +"\n" +" apt@packages.debian.org\n" +" \n" +"\">\n" +msgstr "" +"\n" +" apt@packages.debian.org\n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:181 apt.ent:211 +#, no-wrap +msgid "" +"\n" +" Jason\n" +" Gunthorpe\n" +" \n" +"\">\n" +msgstr "" +"\n" +" Jason\n" +" Gunthorpe\n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:188 +#, no-wrap +msgid "" +"\n" +" Mike\n" +" O'Connor\n" +" \n" +"\">\n" +msgstr "" +"\n" +" Mike\n" +" O'Connor\n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:194 apt.ent:217 +#, no-wrap +msgid "" +"\n" +" APT team\n" +" \n" +"\">\n" +msgstr "" +"\n" +" Équipe de développement d'APT\n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:198 apt.ent:228 +#, no-wrap +msgid "" +"Linux\n" +"\">\n" +msgstr "" +"Linux\n" +"\">\n" + +#. type: Plain text +#: apt.ent:224 +#, no-wrap +msgid "" +"\n" +" Jason Gunthorpe\n" +" 1998-2001\n" +" \n" +"\">\n" +msgstr "" +"\n" +" Jason Gunthorpe\n" +" 1998-2001\n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:234 +#, no-wrap +msgid "" +"\n" +"\t\tQA Page\n" +"\t\n" +"\">\n" +msgstr "" +"\n" +"\t\tPage qualité\n" +"\t\n" +"\">\n" + +#. type: Plain text +#: apt.ent:245 +#, no-wrap +msgid "" +"\n" +"Bugs\n" +" APT bug page. \n" +" If you wish to report a bug in APT, please see\n" +" /usr/share/doc/debian/bug-reporting.txt or the\n" +" &reportbug; command.\n" +" \n" +" \n" +"\">\n" +msgstr "" +"\n" +"Bogues\n" +" Page des bogues d'APT. \n" +" Si vous souhaitez remonter un bogue à propos d'APT, veuillez lire\n" +" /usr/share/doc/debian/bug-reporting.txt ou utiliser\n" +" la commande &reportbug;.\n" +" \n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:253 +#, no-wrap +msgid "" +"\n" +"Author\n" +" APT was written by the APT team apt@packages.debian.org.\n" +" \n" +" \n" +"\">\n" +msgstr "" +"\n" +"Author\n" +" APT a été écrit par l'équipe de développement APT apt@packages.debian.org.\n" +" \n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:263 +#, no-wrap +msgid "" +"\n" +"\n" +" \n" +" Show a short usage summary.\n" +" \n" +" \n" +" \n" +msgstr "" +"\n" +"\n" +" \n" +" Afficher un bref résumé de l'utilisation.\n" +" \n" +" \n" +" \n" + +#. type: Plain text +#: apt.ent:271 +#, no-wrap +msgid "" +" \n" +" \n" +" \n" +" Show the program version.\n" +" \n" +" \n" +" \n" +msgstr "" +" \n" +" \n" +" \n" +" Afficher la version du programme.\n" +" \n" +" \n" +" \n" + +#. type: Plain text +#: apt.ent:281 +#, no-wrap +msgid "" +" \n" +" \n" +" \n" +" Configuration File; Specify a configuration file to use. \n" +" The program will read the default configuration file and then this \n" +" configuration file. See &apt-conf; for syntax information. \n" +" \n" +" \n" +" \n" +msgstr "" +" \n" +" \n" +" \n" +" Fichier de configuration ; indique le fichier de configuration à utiliser. \n" +" Les programme lira le fichier de configuration par défaut puis le fichier indiqué ici. \n" +" Veuillez consulter &apt-conf; pour des informations sur la syntaxe d'utilisation. \n" +" \n" +" \n" +" \n" + +#. type: Plain text +#: apt.ent:293 +#, no-wrap +msgid "" +" \n" +" \n" +" \n" +" Set a Configuration Option; This will set an arbitrary\n" +" configuration option. The syntax is .\n" +" and can be used multiple\n" +" times to set different options.\n" +" \n" +" \n" +" \n" +"\">\n" +msgstr "" +" \n" +" \n" +" \n" +" Définir une option de configuration ; permet de régler\n" +" une option de configuration donnée. La syntaxe est .\n" +" et peuvent être utilisées plusieurs fois\n" +" pour définir des options différentes.\n" +" \n" +" \n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:304 +#, no-wrap +msgid "" +"\n" +"All command line options may be set using the configuration file, the\n" +" descriptions indicate the configuration option to set. For boolean\n" +" options you can override the config file by using something like \n" +" ,, \n" +" or several other variations.\n" +" \n" +"\">\n" +msgstr "" +"\n" +"Toutes les options de la ligne de commande peuvent être définies dans le fichier de configuration, \n" +" les descriptions indiquant l'option de configuration concernée. Pour les options\n" +" booléennes, vous pouvez inverser les réglages du fichiers de configuration avec \n" +" ,, \n" +" et d'autres variantes analogues.\n" +" \n" +"\">\n" + +#. The last update date +#. type: Content of: +#: apt-cache.8.xml:13 apt-config.8.xml:13 apt-extracttemplates.1.xml:13 +#: apt-ftparchive.1.xml:13 apt-sortpkgs.1.xml:13 sources.list.5.xml:13 +msgid "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 29 " +"February 2004" +msgstr "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 29 " +"février 2004" + +#. type: Content of: +#: apt-cache.8.xml:22 apt-cache.8.xml:28 +msgid "apt-cache" +msgstr "apt-cache" + +#. type: Content of: +#: apt-cache.8.xml:23 apt-cdrom.8.xml:22 apt-config.8.xml:23 apt-get.8.xml:23 +#: apt-key.8.xml:15 apt-mark.8.xml:23 apt-secure.8.xml:15 +msgid "8" +msgstr "8" + +#. type: Content of: +#: apt-cache.8.xml:29 +msgid "APT package handling utility -- cache manipulator" +msgstr "Gestionnaire de paquets APT - manipulation du cache" + +#. type: Content of: +#: apt-cache.8.xml:35 +msgid "" +"apt-cache " +"add file gencaches showpkg pkg " +"showsrc pkg stats dump dumpavail unmet search regex show pkg depends pkg " +"rdepends pkg pkgnames prefix dotty pkg " +"xvcg pkg policy pkgs madison pkgs " +msgstr "" +"apt-cache " +" add fichier gencaches " +"showpkg paquet showsrc paquet stats dump dumpavail unmet search regex show paquet depends " +"paquet rdepends paquet pkgnames prefix dotty paquet policy paquets madison paquets " + +#. type: Content of: +#: apt-cache.8.xml:61 apt-cdrom.8.xml:46 apt-config.8.xml:46 +#: apt-extracttemplates.1.xml:42 apt-ftparchive.1.xml:54 apt-get.8.xml:114 +#: apt-key.8.xml:33 apt-mark.8.xml:43 apt-secure.8.xml:39 +#: apt-sortpkgs.1.xml:43 apt.conf.5.xml:38 apt_preferences.5.xml:32 +#: sources.list.5.xml:32 +msgid "Description" +msgstr "Description" + +#. type: Content of: <refentry><refsect1><para> +#: apt-cache.8.xml:62 +msgid "" +"<command>apt-cache</command> performs a variety of operations on APT's " +"package cache. <command>apt-cache</command> does not manipulate the state of " +"the system but does provide operations to search and generate interesting " +"output from the package metadata." +msgstr "" +"<command>apt-cache</command> réalise différentes opérations sur le cache de " +"paquet d'APT. <command>apt-cache</command> ne manipule pas l'état du " +"système mais fournit des moyens de recherche dans les métadonnées d'un " +"paquet desquelles il extrait les informations intéressantes." + +#. type: Content of: <refentry><refsect1><para> +#: apt-cache.8.xml:67 apt-get.8.xml:120 +msgid "" +"Unless the <option>-h</option>, or <option>--help</option> option is given, " +"one of the commands below must be present." +msgstr "" +"À moins que l'option <option>-h</option> ou <option>--help</option> ne soit " +"donnée, l'une des commandes suivantes doit être présente." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:71 +msgid "add <replaceable>file(s)</replaceable>" +msgstr "add <replaceable>fichier(s)</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:72 +msgid "" +"<literal>add</literal> adds the named package index files to the package " +"cache. This is for debugging only." +msgstr "" +"La commande <literal>add</literal> ajoute des fichiers indexant des paquets " +"au cache des paquets. Cela sert uniquement pour le débogage." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:76 +msgid "gencaches" +msgstr "gencaches" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:77 +msgid "" +"<literal>gencaches</literal> performs the same operation as <command>apt-get " +"check</command>. It builds the source and package caches from the sources in " +"&sources-list; and from <filename>/var/lib/dpkg/status</filename>." +msgstr "" +"La commande <literal>gencaches</literal> fait la même chose que <command>apt-" +"get check</command>. Elle construit les caches des sources et des paquets à " +"partir des sources répertoriées dans &sources-list; et dans <filename>/var/" +"lib/dpkg/status</filename>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:83 +msgid "showpkg <replaceable>pkg(s)</replaceable>" +msgstr "showpkg <replaceable>paquet(s)</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:84 +msgid "" +"<literal>showpkg</literal> displays information about the packages listed on " +"the command line. Remaining arguments are package names. The available " +"versions and reverse dependencies of each package listed are listed, as well " +"as forward dependencies for each version. Forward (normal) dependencies are " +"those packages upon which the package in question depends; reverse " +"dependencies are those packages that depend upon the package in question. " +"Thus, forward dependencies must be satisfied for a package, but reverse " +"dependencies need not be. For instance, <command>apt-cache showpkg " +"libreadline2</command> would produce output similar to the following:" +msgstr "" +"La commande <literal>showpkg</literal> affiche des informations sur les " +"paquets donnés en argument. Les arguments restants sont les noms de paquets. " +"Les versions disponibles et les dépendances inverses de chaque paquet " +"répertorié sont listées, ainsi que les dépendances normales pour chaque " +"version. Les dépendances normales d'un paquet sont constituées par les " +"paquets dont il dépend ; les dépendances inverses sont les paquets qui " +"dépendent du paquet en question. Les dépendances normales doivent donc être " +"satisfaites et les dépendances inverses n'ont pas besoin de l'être. Ainsi, " +"la commande <command>apt-cache showpkg libreadline2</command> donnera ce " +"résultat :" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> +#: apt-cache.8.xml:96, no-wrap +msgid "" +"Package: libreadline2\n" +"Versions: 2.1-12(/var/state/apt/lists/foo_Packages),\n" +"Reverse Depends: \n" +" libreadlineg2,libreadline2\n" +" libreadline2-altdev,libreadline2\n" +"Dependencies:\n" +"2.1-12 - libc5 (2 5.4.0-0) ncurses3.0 (0 (null))\n" +"Provides:\n" +"2.1-12 - \n" +"Reverse Provides: \n" +msgstr "" +"Package: libreadline2\n" +"Versions: 2.1-12(/var/state/apt/lists/foo_Packages),\n" +"Reverse Depends: \n" +" libreadlineg2,libreadline2\n" +" libreadline2-altdev,libreadline2\n" +"Dependencies:\n" +"2.1-12 - libc5 (2 5.4.0-0) ncurses3.0 (0 (null))\n" +"Provides:\n" +"2.1-12 - \n" +"Reverse Provides: \n" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:108 +msgid "" +"Thus it may be seen that libreadline2, version 2.1-12, depends on libc5 and " +"ncurses3.0 which must be installed for libreadline2 to work. In turn, " +"libreadlineg2 and libreadline2-altdev depend on libreadline2. If " +"libreadline2 is installed, libc5 and ncurses3.0 (and ldso) must also be " +"installed; libreadlineg2 and libreadline2-altdev do not have to be " +"installed. For the specific meaning of the remainder of the output it is " +"best to consult the apt source code." +msgstr "" +"On peut voir que libreadline2, version 2.1-12, dépend de libc5 et " +"ncurses3.0 ; ces paquets doivent être installés au préalable pour que " +"libreadline2 fonctionne. À leur tour, libreadlineg2 et libreadline2-altdev " +"dépendent de libreadline2. Si libreadline2 est installé, libc5 et ncurses3.0 " +"doivent être installés ; libreadlineg2 et libreadline2-altdev n'ont pas " +"à l'être. Pour connaître le sens de la fin de chaîne, il est préférable de " +"consulter le code source d'APT." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:117 +msgid "stats" +msgstr "stats" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:117 +msgid "" +"<literal>stats</literal> displays some statistics about the cache. No " +"further arguments are expected. Statistics reported are:" +msgstr "" +"La commande <literal>stats</literal> affiche des statistiques à propos du " +"cache. Aucun autre argument n'est attendu. Voici les informations " +"rapportées :" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:120 +msgid "" +"<literal>Total package names</literal> is the number of package names found " +"in the cache." +msgstr "" +"<literal>Total package names</literal> est le nombre de paquets trouvés dans " +"le cache." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:124 +msgid "" +"<literal>Normal packages</literal> is the number of regular, ordinary " +"package names; these are packages that bear a one-to-one correspondence " +"between their names and the names used by other packages for them in " +"dependencies. The majority of packages fall into this category." +msgstr "" +"<literal>Normal packages</literal> est le nombre de paquets simples, " +"ordinaires ; ces paquets tolèrent une correspondance bijective entre " +"leur nom et le nom utilisé par les autres paquets pour les qualifier comme " +"dépendance. La majorité des paquets appartient à cette catégorie." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:130 +msgid "" +"<literal>Pure virtual packages</literal> is the number of packages that " +"exist only as a virtual package name; that is, packages only \"provide\" the " +"virtual package name, and no package actually uses the name. For instance, " +"\"mail-transport-agent\" in the Debian GNU/Linux system is a pure virtual " +"package; several packages provide \"mail-transport-agent\", but there is no " +"package named \"mail-transport-agent\"." +msgstr "" +"<literal>Pure virtual packages</literal> est le nombre de paquets qui " +"n'existent que sous la forme d'un nom représentant un paquet virtuel ; " +"ces paquets « fournissent » seulement un nom de paquet virtuel et " +"aucun paquet n'utilise véritablement ce nom. Par exemple, au sein du système " +"Debian GNU/Linux, le nom « mail-transport-agent » est un paquet " +"virtuel pur ; plusieurs paquets peuvent « fournir » ce nom " +"« mail-transport-agent », mais il n'existe aucun paquet nommé « " +"mail-transport-agent »." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:138 +msgid "" +"<literal>Single virtual packages</literal> is the number of packages with " +"only one package providing a particular virtual package. For example, in the " +"Debian GNU/Linux system, \"X11-text-viewer\" is a virtual package, but only " +"one package, xless, provides \"X11-text-viewer\"." +msgstr "" +"<literal>Single virtual packages</literal> est le nombre de paquets virtuels " +"qui ne peuvent être remplis que par un seul paquet. Par exemple, au sein du " +"système Debian GNU/Linux, « X11-text-viewer » est un paquet " +"virtuel ; seul le paquet « xless » remplit « X11-text-" +"viewer »." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:144 +msgid "" +"<literal>Mixed virtual packages</literal> is the number of packages that " +"either provide a particular virtual package or have the virtual package name " +"as the package name. For instance, in the Debian GNU/Linux system, \"debconf" +"\" is both an actual package, and provided by the debconf-tiny package." +msgstr "" +"<literal>Mixed virtual packages</literal> est le nombre de paquets qui " +"remplissent un paquet virtuel particulier ou dont le nom est un nom de " +"paquet virtuel. Par exemple, au sein du système Debian GNU/Linux, « " +"debconf » est un paquet réel et il est aussi fourni par « debconf-" +"tiny »." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:151 +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." +msgstr "" +"<literal>Missing</literal> est le nombre de paquets référencés dans une " +"dépendance mais qui ne sont fournis par aucun paquet. Les paquets manquants " +"peuvent être mis en évidence quand on n'accède pas à une distribution " +"complète ou si un paquet (réel ou virtuel) a été sorti d'une distribution. " +"Habituellement on les trouve dans les champs « Conflicts »." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:158 +msgid "" +"<literal>Total distinct</literal> versions is the number of package versions " +"found in the cache; this value is therefore at least equal to the number of " +"total package names. If more than one distribution (both \"stable\" and " +"\"unstable\", for instance), is being accessed, this value can be " +"considerably larger than the number of total package names." +msgstr "" +"<literal>Total distinct versions</literal> est le nombre de versions de " +"paquets trouvées dans le cache ; cette valeur est par conséquent au " +"moins égale au nombre total de paquets. Quand on accède à plus d'une " +"distribution (« stable » et « unstable », par exemple), " +"cette valeur peut être considérablement plus grande que le nombre total de " +"paquets." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:165 +msgid "" +"<literal>Total dependencies</literal> is the number of dependency " +"relationships claimed by all of the packages in the cache." +msgstr "" +"<literal>Total dependencies</literal> est le nombre de relations de " +"dépendances déclarées par tous les paquets présents dans le cache." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:172 +msgid "showsrc <replaceable>pkg(s)</replaceable>" +msgstr "showsrc <replaceable>paquet(s)</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:173 +msgid "" +"<literal>showsrc</literal> displays all the source package records that " +"match the given package names. All versions are shown, as well as all " +"records that declare the name to be a Binary." +msgstr "" +"<literal>showsrc</literal> affiche toutes les entrées de paquets source qui " +"correspondent aux noms donnés. Toutes les versions sont affichées et toutes " +"les entrées qui déclarent que ces noms correspondent à des paquets binaires." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:178 apt-config.8.xml:83 +msgid "dump" +msgstr "dump" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:179 +msgid "" +"<literal>dump</literal> shows a short listing of every package in the cache. " +"It is primarily for debugging." +msgstr "" +"La commande <literal>dump</literal> affiche un court résumé sur chaque " +"paquet du cache. Elle est d'abord destinée au débogage." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:183 +msgid "dumpavail" +msgstr "dumpavail" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:184 +msgid "" +"<literal>dumpavail</literal> prints out an available list to stdout. This is " +"suitable for use with &dpkg; and is used by the &dselect; method." +msgstr "" +"La commande <literal>dumpavail</literal> affiche sur la sortie standard la " +"liste des paquets disponibles. Elle convient à une utilisation avec &dpkg; " +"et la méthode &dselect; s'en sert." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:188 +msgid "unmet" +msgstr "unmet" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:189 +msgid "" +"<literal>unmet</literal> displays a summary of all unmet dependencies in the " +"package cache." +msgstr "" +"La commande <literal>unmet</literal> affiche un résumé concernant toutes les " +"dépendances absentes dans le cache de paquets." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:193 +msgid "show <replaceable>pkg(s)</replaceable>" +msgstr "show <replaceable>paquet(s)</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:194 +msgid "" +"<literal>show</literal> performs a function similar to <command>dpkg --print-" +"avail</command>; it displays the package records for the named packages." +msgstr "" +"La commande <literal>show</literal> est semblable à <command>dpkg --print-" +"avail</command> ; elle affiche des informations sur les paquets donnés " +"en argument." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:199 +msgid "search <replaceable>regex [ regex ... ]</replaceable>" +msgstr "search <replaceable>expression [ expression ... ]</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:200 +msgid "" +"<literal>search</literal> performs a full text search on all available " +"package lists for the POSIX regex pattern given, see " +"<citerefentry><refentrytitle><command>regex</command></refentrytitle> " +"<manvolnum>7</manvolnum></citerefentry>. It searches the package names and " +"the descriptions for an occurrence of the regular expression and prints out " +"the package name and the short description, including virtual package " +"names. If <option>--full</option> is given then output identical to " +"<literal>show</literal> is produced for each matched package, and if " +"<option>--names-only</option> is given then the long description is not " +"searched, only the package name is." +msgstr "" +"La commande <literal>search</literal> recherche l'expression rationnelle " +"donnée en paramètre sur tous les paquets disponibles. Elle cherche une " +"occurrence de la chaîne dans les noms de paquets et dans les descriptions " +"puis elle affiche le nom du paquet et sa description courte. Quand on donne " +"l'option <option>--full</option>, la sortie est identique à <literal>show</" +"literal> pour chaque paquet ; l'option <option>--names-only</option> ne " +"recherche pas la chaîne dans les descriptions longues mais seulement dans " +"les noms de paquets." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:213 +msgid "" +"Separate arguments can be used to specify multiple search patterns that are " +"and'ed together." +msgstr "" +"On peut utiliser des arguments distincts pour indiquer des expressions " +"rationnelles différentes sur lesquelles sera réalisé un « et » " +"logique." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:217 +msgid "depends <replaceable>pkg(s)</replaceable>" +msgstr "depends <replaceable>paquet(s)</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:218 +msgid "" +"<literal>depends</literal> shows a listing of each dependency a package has " +"and all the possible other packages that can fulfill that dependency." +msgstr "" +"La commande <literal>depends</literal> affiche la liste de toutes les " +"dépendances d'un paquet et la liste de tous les paquets possibles qui " +"satisfont ces dépendances." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:222 +msgid "rdepends <replaceable>pkg(s)</replaceable>" +msgstr "rdepends <replaceable>paquet(s)</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:223 +msgid "" +"<literal>rdepends</literal> shows a listing of each reverse dependency a " +"package has." +msgstr "" +"La commande <literal>rdepends</literal> affiche la liste de toutes les " +"dépendances inverses d'un paquet." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:227 +msgid "pkgnames <replaceable>[ prefix ]</replaceable>" +msgstr "pkgnames <replaceable>[ préfixe ]</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:228 +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." +msgstr "" +"Cette commande affiche le nom de chaque paquet du système. Un préfixe pour " +"filtrer la liste des noms peut être donné en paramètre. La sortie est " +"adaptée à une utilisation au sein d'une fonction complète de shell ; " +"elle est produite très rapidement. On utilise au mieux cette commande avec " +"l'option <option>--generate</option>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:235 +msgid "dotty <replaceable>pkg(s)</replaceable>" +msgstr "dotty <replaceable>paquet(s)</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:236 +msgid "" +"<literal>dotty</literal> takes a list of packages on the command line and " +"generates output suitable for use by dotty from the <ulink url=\"http://www." +"research.att.com/sw/tools/graphviz/\">GraphViz</ulink> package. The result " +"will be a set of nodes and edges representing the relationships between the " +"packages. By default the given packages will trace out all dependent " +"packages; this can produce a very large graph. To limit the output to only " +"the packages listed on the command line, set the <literal>APT::Cache::" +"GivenOnly</literal> option." +msgstr "" +"La commande <literal>dotty</literal> prend une liste de paquets sur la ligne " +"de commande et affiche une sortie appropriée à une utilisation par la " +"commande dotty du paquet <ulink url=\"http://www.research.att.com/sw/tools/" +"graphviz/\">GraphViz</ulink>. Il en résulte un ensemble de noeuds et d'arcs " +"représentant les relations entre les paquets. Par défaut les paquets donnés " +"en argument suivent toutes leurs dépendances, ce qui peut produire un graphe " +"très volumineux. Pour limiter la sortie aux seuls paquets listés sur la " +"ligne de commande, positionnez l'option <literal>APT::Cache::GivenOnly</" +"literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:245 +msgid "" +"The resulting nodes will have several shapes; normal packages are boxes, " +"pure provides are triangles, mixed provides are diamonds, missing packages " +"are hexagons. Orange boxes mean recursion was stopped [leaf packages], blue " +"lines are pre-depends, green lines are conflicts." +msgstr "" +"Les noeuds résultants ont plusieurs formes ; les paquets normaux sont " +"des boîtes, les « provides » purs sont des triangles, les « " +"provides » mixtes sont des diamants et les paquets manquants sont des " +"hexagones. Les boîtes oranges expriment un arrêt de la récursivité [paquet " +"feuille], les lignes bleues représentent des prédépendances et les lignes " +"vertes représentent des conflits." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:250 +msgid "Caution, dotty cannot graph larger sets of packages." +msgstr "" +"Attention, dotty ne peut pas représenter des ensembles très grands de " +"paquets." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:253 +msgid "xvcg <replaceable>pkg(s)</replaceable>" +msgstr "xvcg <replaceable>paquet(s)</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:254 +msgid "" +"The same as <literal>dotty</literal>, only for xvcg from the <ulink url=" +"\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." +msgstr "" +"Identique à <literal>dotty</literal>, mais réservé à xvcg fourni avec <ulink url=" +"\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:258 +msgid "policy <replaceable>[ pkg(s) ]</replaceable>" +msgstr "policy <replaceable>[ paquet(s) ]</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:259 +msgid "" +"<literal>policy</literal> is meant to help debug issues relating to the " +"preferences file. With no arguments it will print out the priorities of each " +"source. Otherwise it prints out detailed information about the priority " +"selection of the named package." +msgstr "" +"<literal>policy</literal> sert à déboguer des problèmes relatifs au fichier " +"des préférences. Sans argument, la commande affiche la priorité de chaque " +"source. Sinon, elle affiche des informations précises sur la priorité du " +"paquet donné en argument." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:265 +msgid "madison <replaceable>/[ pkg(s) ]</replaceable>" +msgstr "madison <replaceable>[ paquet(s) ]</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:266 +msgid "" +"<literal>apt-cache</literal>'s <literal>madison</literal> command attempts " +"to mimic the output format and a subset of the functionality of the Debian " +"archive management tool, <literal>madison</literal>. It displays available " +"versions of a package in a tabular format. Unlike the original " +"<literal>madison</literal>, it can only display information for the " +"architecture for which APT has retrieved package lists (<literal>APT::" +"Architecture</literal>)." +msgstr "" +"La commande <literal>madison</literal> d'<literal>apt-cache</literal> " +"cherche à mimer le format de sortie propre à l'outil debian de gestion " +"d'archives, <literal>madison</literal>, ainsi qu'une partie de ses " +"fonctionnalités. Elle affiche les versions disponibles d'un paquet dans un " +"tableau. Contrairement au programme original <literal>madison</literal>, " +"elle n'affiche que des informations concernant l'architecture pour laquelle " +"Apt a lu la liste des paquets disponibles (<literal>APT::Architecture</" +"literal>)." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:277 apt-config.8.xml:92 apt-extracttemplates.1.xml:55 +#: apt-ftparchive.1.xml:491 apt-get.8.xml:299 apt-mark.8.xml:73 +#: apt-sortpkgs.1.xml:53 apt.conf.5.xml:373 apt.conf.5.xml:395 +msgid "options" +msgstr "options" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:281 +msgid "<option>-p</option>" +msgstr "<option>-p</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:281 +msgid "<option>--pkg-cache</option>" +msgstr "<option>--pkg-cache</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:282 +msgid "" +"Select the file to store the package cache. The package cache is the primary " +"cache used by all operations. Configuration Item: <literal>Dir::Cache::" +"pkgcache</literal>." +msgstr "" +"Indique le fichier servant de cache des paquets. Le cache des paquets est le " +"cache primaire utilisé par toutes les opérations. Élément de " +"configuration : <literal>Dir::Cache::pkgcache</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:287 apt-ftparchive.1.xml:534 apt-get.8.xml:356 +#: apt-sortpkgs.1.xml:57 +msgid "<option>-s</option>" +msgstr "<option>-s</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:287 +msgid "<option>--src-cache</option>" +msgstr "<option>--src-cache</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:288 +msgid "" +"Select the file to store the source cache. The source is used only by " +"<literal>gencaches</literal> and it stores a parsed version of the package " +"information from remote sources. When building the package cache the source " +"cache is used to avoid reparsing all of the package files. Configuration " +"Item: <literal>Dir::Cache::srcpkgcache</literal>." +msgstr "" +"Indique le fichier servant de cache des sources. Ce cache n'est utilisé que " +"par <literal>gencaches</literal> ; une version des informations sur les " +"paquets, issue d'une analyse de sources distantes, est conservée. " +"Quand le cache des paquets est créé, le cache des sources est utilisé afin " +"d'éviter d'analyser à nouveau tous les paquets. Élément de " +"configuration : <literal>Dir::Cache::srcpkgcache</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:295 apt-ftparchive.1.xml:508 apt-get.8.xml:346 +msgid "<option>-q</option>" +msgstr "<option>-q</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:295 apt-ftparchive.1.xml:508 apt-get.8.xml:346 +msgid "<option>--quiet</option>" +msgstr "<option>--quiet</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:296 +msgid "" +"Quiet; produces output suitable for logging, omitting progress indicators. " +"More q's will produce more quietness up to a maximum of 2. You can also use " +"<option>-q=#</option> to set the quietness level, overriding the " +"configuration file. Configuration Item: <literal>quiet</literal>." +msgstr "" +"Mode silencieux ; produit une sortie pertinente pour l'enregistrement " +"dans un fichier-journal, sans afficher d'indicateur de progression. Un plus " +"grand nombre de q produira un plus grand silence, avec un maximum de 2. Vous " +"pouvez aussi utiliser <option>-q=#</option> pour positionner le niveau de " +"silence, annulant le fichier de configuration. Élément de " +"configuration : <literal>quiet</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:302 +msgid "<option>-i</option>" +msgstr "<option>-i</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:302 +msgid "<option>--important</option>" +msgstr "<option>--important</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:303 +msgid "" +"Print only important dependencies; for use with unmet and depends. Causes " +"only Depends and Pre-Depends relations to be printed. Configuration Item: " +"<literal>APT::Cache::Important</literal>." +msgstr "" +"N'affiche que les dépendances importantes ; à utiliser avec les commandes " +"unmet et depends pour n'afficher que les relations Depends et Pre-Depends. Élément de " +"configuration : <literal>APT::Cache::Important</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:308 apt-cdrom.8.xml:120 apt-get.8.xml:313 +msgid "<option>-f</option>" +msgstr "<option>-f</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:308 +msgid "<option>--full</option>" +msgstr "<option>--full</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:309 +msgid "" +"Print full package records when searching. Configuration Item: " +"<literal>APT::Cache::ShowFull</literal>." +msgstr "" +"Affiche la totalité des champs d'information sur le paquet lors d'une " +"recherche. Élément de configuration : <literal>APT::Cache::ShowFull</" +"literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:313 apt-cdrom.8.xml:130 +msgid "<option>-a</option>" +msgstr "<option>-a</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:313 +msgid "<option>--all-versions</option>" +msgstr "<option>--all-versions</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:314 +msgid "" +"Print full records for all available versions. This is the default; to turn " +"it off, use <option>--no-all-versions</option>. If <option>--no-all-" +"versions</option> is specified, only the candidate version will displayed " +"(the one which would be selected for installation). This option is only " +"applicable to the <literal>show</literal> command. Configuration Item: " +"<literal>APT::Cache::AllVersions</literal>." +msgstr "" +"Affiche la totalité des champs d'information pour toutes les versions " +"disponibles : c'est la valeur par défaut. Pour la désactiver, utilisez " +"l'option <option>--no-all-versions</option>. Quand l'option <option>--no-all-" +"versions</option> est choisie, seuls les éléments de la version choisie " +"(celle qui serait installée) seront affichés. Cette option concerne " +"seulement la commande <literal>show</literal>. Élément de " +"configuration : <literal>APT::Cache::AllVersions</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:322 +msgid "<option>-g</option>" +msgstr "<option>-g</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:322 +msgid "<option>--generate</option>" +msgstr "<option>--generate</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:323 +msgid "" +"Perform automatic package cache regeneration, rather than use the cache as " +"it is. This is the default; to turn it off, use <option>--no-generate</" +"option>. Configuration Item: <literal>APT::Cache::Generate</literal>." +msgstr "" +"Réalise une mise à jour automatique du cache des paquets plutôt que de se " +"servir du cache tel qu'il est. Pour désactiver cette option (option par défaut), " +"utilisez l'option <option>--no-generate</option>. Élément de " +"configuration : <literal>APT::Cache::Generate</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:328 +msgid "<option>--names-only</option>" +msgstr "<option>--names-only</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:328 apt-cdrom.8.xml:138 +msgid "<option>-n</option>" +msgstr "<option>-n</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:329 +msgid "" +"Only search on the package names, not the long descriptions. Configuration " +"Item: <literal>APT::Cache::NamesOnly</literal>." +msgstr "" +"N'effectue une recherche que sur les noms de paquets et pas sur les " +"descriptions longues. Élément de configuration : <literal>APT::Cache::" +"NamesOnly</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:333 +msgid "<option>--all-names</option>" +msgstr "<option>--all-names</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:334 +msgid "" +"Make <literal>pkgnames</literal> print all names, including virtual packages " +"and missing dependencies. Configuration Item: <literal>APT::Cache::" +"AllNames</literal>." +msgstr "" +"Avec cette option, <literal>pkgnames</literal> affiche tous les noms, les " +"noms des paquets virtuels et les dépendances manquantes. Élément de " +"configuration : <literal>APT::Cache::AllNames</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:339 +msgid "<option>--recurse</option>" +msgstr "<option>--recurse</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:340 +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>." +msgstr "" +"Avec cette option, <literal>depends</literal> et <literal>rdepends</literal> " +"sont récursives de manière à n'afficher qu'une seule fois les paquets " +"mentionnés. Élément de configuration : <literal>APT::Cache::" +"RecurseDepends</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:345 +msgid "<option>--installed</option>" +msgstr "<option>--installed</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:347 +msgid "" +"Limit the output of <literal>depends</literal> and <literal>rdepends</" +"literal> to packages which are currently installed. Configuration Item: " +"<literal>APT::Cache::Installed</literal>." +msgstr "" +"Cette option limite la sortie de <literal>depends</literal> et de " +"<literal>rdepends</literal> aux paquets qui sont actuellement installés. " +"Élément de configuration : <literal>APT::Cache::Installed</literal>." + +#. type: Content of: <refentry><refsect1><variablelist> +#: apt-cache.8.xml:352 apt-cdrom.8.xml:149 apt-config.8.xml:97 +#: apt-extracttemplates.1.xml:66 apt-ftparchive.1.xml:546 apt-get.8.xml:534 +#: apt-sortpkgs.1.xml:63 +msgid "&apt-commonoptions;" +msgstr "&apt-commonoptions;" + +#. type: Content of: <refentry><refsect1><title> +#: apt-cache.8.xml:357 apt-get.8.xml:539 apt-key.8.xml:137 apt.conf.5.xml:824 +msgid "Files" +msgstr "Fichiers" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:359 apt-get.8.xml:541 +msgid "<filename>/etc/apt/sources.list</filename>" +msgstr "<filename>/etc/apt/sources.list</filename>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:360 apt-get.8.xml:542 +msgid "" +"Locations to fetch packages from. Configuration Item: <literal>Dir::Etc::" +"SourceList</literal>." +msgstr "" +"Emplacements où aller chercher les paquets. Élément de configuration : " +"<literal>Dir::Etc::SourceList</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:364 apt-get.8.xml:575 +msgid "<filename>&statedir;/lists/</filename>" +msgstr "<filename>&statedir;/lists/</filename>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:365 apt-get.8.xml:576 +msgid "" +"Storage area for state information for each package resource specified in " +"&sources-list; Configuration Item: <literal>Dir::State::Lists</literal>." +msgstr "" +"Zone de stockage pour les informations qui concernent chaque ressource de " +"paquet spécifiée dans &sources-list; Élément de configuration : " +"<literal>Dir::State::Lists</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:370 apt-get.8.xml:581 +msgid "<filename>&statedir;/lists/partial/</filename>" +msgstr "<filename>&statedir;/lists/partial/</filename>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:371 apt-get.8.xml:582 +msgid "" +"Storage area for state information in transit. Configuration Item: " +"<literal>Dir::State::Lists</literal> (implicit partial)." +msgstr "" +"Zone de stockage pour les informations en transit. Élément de " +"configuration : <literal>Dir::State::Lists</literal> (partial est " +"implicite)." + +#. type: Content of: <refentry><refsect1><title> +#: apt-cache.8.xml:377 apt-cdrom.8.xml:154 apt-config.8.xml:102 +#: apt-extracttemplates.1.xml:73 apt-ftparchive.1.xml:562 apt-get.8.xml:588 +#: apt-key.8.xml:161 apt-mark.8.xml:104 apt-secure.8.xml:180 +#: apt-sortpkgs.1.xml:68 apt.conf.5.xml:828 apt_preferences.5.xml:613 +#: sources.list.5.xml:220 +msgid "See Also" +msgstr "Voir aussi" + +#. type: Content of: <refentry><refsect1><para> +#: apt-cache.8.xml:378 +msgid "&apt-conf;, &sources-list;, &apt-get;" +msgstr "&apt-conf;, &sources-list;, &apt-get;." + +#. type: Content of: <refentry><refsect1><title> +#: apt-cache.8.xml:382 apt-cdrom.8.xml:159 apt-config.8.xml:107 +#: apt-extracttemplates.1.xml:77 apt-ftparchive.1.xml:566 apt-get.8.xml:594 +#: apt-mark.8.xml:108 apt-sortpkgs.1.xml:72 +msgid "Diagnostics" +msgstr "Diagnostique" + +#. type: Content of: <refentry><refsect1><para> +#: apt-cache.8.xml:383 +msgid "" +"<command>apt-cache</command> returns zero on normal operation, decimal 100 " +"on error." +msgstr "" +"<command>apt-cache</command> retourne zéro après un déroulement normal et " +"le nombre décimal 100 en cas d'erreur." + +#. type: Content of: <refentry><refentryinfo> +#: apt-cdrom.8.xml:13 +msgid "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>14 " +"February 2004</date>" +msgstr "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>14 " +"février 2004</date>" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-cdrom.8.xml:21 apt-cdrom.8.xml:27 +msgid "apt-cdrom" +msgstr "apt-cdrom" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-cdrom.8.xml:28 +msgid "APT CDROM management utility" +msgstr "Utilitaire de gestion des CD d'APT" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-cdrom.8.xml:34 +msgid "" +"<command>apt-cdrom</command> <arg><option>-hvrmfan</option></arg> " +"<arg><option>-d=<replaceable>cdrom mount point</replaceable></option></arg> " +"<arg><option>-o=<replaceable>config string</replaceable></option></arg> " +"<arg><option>-c=<replaceable>file</replaceable></option></arg> <group> " +"<arg>add</arg> <arg>ident</arg> </group>" +msgstr "" +"<command>apt-cdrom</command> <arg><option>-hvrmfan</option></arg> " +"<arg><option>-d=<replaceable>point de montage du CD</replaceable></" +"option></arg> <arg><option>-o=<replaceable>option de configuration</" +"replaceable></option></arg> <arg><option>-c=<replaceable>fichier</" +"replaceable></option></arg> <group> <arg>add</arg> <arg>ident</arg> </group>" + +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:47 +msgid "" +"<command>apt-cdrom</command> is used to add a new CDROM to APTs list of " +"available sources. <command>apt-cdrom</command> takes care of determining " +"the structure of the disc as well as correcting for several possible mis-" +"burns and verifying the index files." +msgstr "" +"<command>apt-cdrom</command> est utilisé pour ajouter un nouveau CD à " +"la liste des sources disponibles. <command>apt-cdrom</command> prend soin de " +"déterminer la structure du disque, de corriger de possibles erreurs de " +"gravure et de vérifier les fichiers d'index." + +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:54 +msgid "" +"It is necessary to use <command>apt-cdrom</command> to add CDs to the APT " +"system, it cannot be done by hand. Furthermore each disk in a multi-cd set " +"must be inserted and scanned separately to account for possible mis-burns." +msgstr "" +"Il est nécessaire d'utiliser <command>apt-cdrom</command> pour ajouter des " +"CD au système APT car cela ne peut être réalisé manuellement. " +"Par ailleurs, chaque disque d'un ensemble de CD doit être séparément " +"inséré et parcouru pour prendre en compte de possibles erreurs de gravure." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:64 +msgid "add" +msgstr "add" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:65 +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." +msgstr "" +"La commande <literal>add</literal> est utilisée pour ajouter un nouveau " +"disque à la liste des sources. Elle démonte le CD, réclame l'insertion " +"d'un disque, parcourt ensuite le disque et copie les fichiers d'index. Si le " +"disque ne possède pas de répertoire <filename>disk/</filename> correct, un " +"titre descriptif est demandé." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:73 +msgid "" +"APT uses a CDROM ID to track which disc is currently in the drive and " +"maintains a database of these IDs in <filename>&statedir;/cdroms.list</" +"filename>" +msgstr "" +"APT utilise un identifiant de CD pour reconnaître le disque qui se " +"trouve actuellement dans le lecteur et maintient une base de données de ces " +"identifiants dans <filename>&statedir;/cdroms.list</filename>." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:80 +msgid "ident" +msgstr "ident" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:81 +msgid "" +"A debugging tool to report the identity of the current disc as well as the " +"stored file name" +msgstr "" +"Cette commande de débogage retourne l'identifiant du disque actuel ainsi que " +"le nom du fichier stocké." + +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:60 +msgid "" +"Unless the <option>-h</option>, or <option>--help</option> option is given " +"one of the commands below must be present. <placeholder type=\"variablelist" +"\" id=\"0\"/>" +msgstr "" +"À moins que l'option <option>-h</option> ou <option>--help</option> ne soit " +"donnée, l'une des commandes suivantes doit être présente. <placeholder type=" +"\"variablelist\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><title> +#: apt-cdrom.8.xml:90 +msgid "Options" +msgstr "Options" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:94 apt-ftparchive.1.xml:502 apt-get.8.xml:308 +msgid "<option>-d</option>" +msgstr "<option>-d</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:94 +msgid "<option>--cdrom</option>" +msgstr "<option>--cdrom</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:95 +msgid "" +"Mount point; specify the location to mount the cdrom. This mount point must " +"be listed in <filename>/etc/fstab</filename> and properly configured. " +"Configuration Item: <literal>Acquire::cdrom::mount</literal>." +msgstr "" +"Point de montage ; spécifie l'emplacement de montage du CD. Ce " +"point de montage doit être spécifié dans <filename>/etc/fstab</filename> et " +"correctement configuré. Élément de configuration : <literal>Acquire::" +"cdrom::mount</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:103 +msgid "<option>-r</option>" +msgstr "<option>-r</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:103 +msgid "<option>--rename</option>" +msgstr "<option>--rename</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:104 +msgid "" +"Rename a disc; change the label of a disk or override the disks given label. " +"This option will cause <command>apt-cdrom</command> to prompt for a new " +"label. Configuration Item: <literal>APT::CDROM::Rename</literal>." +msgstr "" +"Change le nom d'un disque ; change le nom d'un disque ou remplace un disque pour un nom " +"donné. Cette option oblige <command>apt-cdrom</command> à " +"demander un nouveau nom à l'utilisateur. Élément de configuration : " +"<literal>APT::CDROM::Rename</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:112 apt-get.8.xml:327 +msgid "<option>-m</option>" +msgstr "<option>-m</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:112 +msgid "<option>--no-mount</option>" +msgstr "<option>--no-mount</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:113 +msgid "" +"No mounting; prevent <command>apt-cdrom</command> from mounting and " +"unmounting the mount point. Configuration Item: <literal>APT::CDROM::" +"NoMount</literal>." +msgstr "" +"Pas de montage ; empêche <command>apt-cdrom</command> de monter ou " +"démonter le point de montage. Élément de configuration : <literal >APT::" +"CDROM::NoMount</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:120 +msgid "<option>--fast</option>" +msgstr "<option>--fast</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:121 +msgid "" +"Fast Copy; Assume the package files are valid and do not check every " +"package. This option should be used only if <command>apt-cdrom</command> has " +"been run on this disc before and did not detect any errors. Configuration " +"Item: <literal>APT::CDROM::Fast</literal>." +msgstr "" +"Copie rapide ; suppose que les fichiers de paquets sont valables et ne vérifie pas " +"chaque paquet. Cette option ne devrait être utilisée que si <command>apt-" +"cdrom</command> a préalablement utilisé ce disque et n'a trouvé aucune " +"erreur. Élément de configuration : <literal>APT::CDROM::Fast</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:130 +msgid "<option>--thorough</option>" +msgstr "<option>--thorough</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:131 +msgid "" +"Thorough Package Scan; This option may be needed with some old Debian " +"1.1/1.2 discs that have Package files in strange places. It takes much " +"longer to scan the CD but will pick them all up." +msgstr "" +"Parcours minutieux des paquets ; cette option peut être nécessaire avec " +"des CD d'anciens systèmes Debian 1.1 ou 1.2 dont les fichiers Packages " +"sont situés dans des endroits inhabituels. Il faudra plus de temps pour " +"parcourir le CD mais tous les paquets seront repérés." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:139 apt-get.8.xml:358 +msgid "<option>--just-print</option>" +msgstr "<option>--just-print</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:140 apt-get.8.xml:360 +msgid "<option>--recon</option>" +msgstr "<option>--recon</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:141 apt-get.8.xml:361 +msgid "<option>--no-act</option>" +msgstr "<option>--no-act</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:142 +msgid "" +"No Changes; Do not change the &sources-list; file and do not write index " +"files. Everything is still checked however. Configuration Item: " +"<literal>APT::CDROM::NoAct</literal>." +msgstr "" +"Aucune modification ; ne pas modifier le fichier &sources-list; ni les " +"fichiers d'index. Cependant, tout est vérifié. Élément de " +"configuration : <literal>APT::CDROM::NoAct</literal>." + +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:155 +msgid "&apt-conf;, &apt-get;, &sources-list;" +msgstr "&apt-conf;, &apt-get;, &sources-list;." + +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:160 +msgid "" +"<command>apt-cdrom</command> returns zero on normal operation, decimal 100 " +"on error." +msgstr "" +"<command>apt-cdrom</command> renvoie zéro après un déroulement normal, et " +"le nombre décimal 100 en cas d'erreur." + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-config.8.xml:22 apt-config.8.xml:28 +msgid "apt-config" +msgstr "apt-config" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-config.8.xml:29 +msgid "APT Configuration Query program" +msgstr "Programme d'interrogation de la configuration d'APT" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-config.8.xml:35 +msgid "" +"<command>apt-config</command> <arg><option>-hv</option></arg> <arg><option>-" +"o=<replaceable>config string</replaceable></option></arg> <arg><option>-" +"c=<replaceable>file</replaceable></option></arg> <group choice=\"req\"> " +"<arg>shell</arg> <arg>dump</arg> </group>" +msgstr "" +"<command>apt-config</command> <arg><option>-hv</option></arg> <arg><option>-" +"o=<replaceable>option de configuration</replaceable></option></arg> " +"<arg><option>-c=<replaceable>fichier</replaceable></option></arg> <group " +"choice=\"req\"> <arg>shell</arg> <arg>dump</arg> </group>" + +#. type: Content of: <refentry><refsect1><para> +#: apt-config.8.xml:47 +msgid "" +"<command>apt-config</command> is an internal program used by various " +"portions of the APT suite to provide consistent configurability. It accesses " +"the main configuration file <filename>/etc/apt/apt.conf</filename> in a " +"manner that is easy to use by scripted applications." +msgstr "" +"<command>apt-config</command> est un programme interne utilisé par " +"différents composants d'APT ; il offre la possibilité d'une " +"configuration cohérente et permet aux applications conçues sous forme de " +"script une utilisation simple du fichier de configuration principal " +"<filename>/etc/apt/apt.conf</filename>." + +#. type: Content of: <refentry><refsect1><para> +#: apt-config.8.xml:52 apt-ftparchive.1.xml:70 +msgid "" +"Unless the <option>-h</option>, or <option>--help</option> option is given " +"one of the commands below must be present." +msgstr "" +"À moins que l'option <option>-h</option> ou <option>--help</option> ne soit " +"donnée, l'une des commandes suivantes doit être présente." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-config.8.xml:57 +msgid "shell" +msgstr "shell" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-config.8.xml:59 +msgid "" +"shell is used to access the configuration information from a shell script. " +"It is given pairs of arguments, the first being a shell variable and the " +"second the configuration value to query. As output it lists a series of " +"shell assignments commands for each present value. In a shell script it " +"should be used like:" +msgstr "" +"Le terme shell est utilisé pour accéder aux informations de configuration " +"depuis un script shell. Deux arguments doivent lui être donnés ; le " +"premier est une variable du shell et le second une valeur de configuration à " +"demander. La sortie standard consiste en une liste de commandes " +"d'assignation de shell pour chaque valeur présente. Dans un script shell, " +"cette commande devrait être utilisée comme suit :" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> +#: apt-config.8.xml:67, no-wrap +msgid "" +"OPTS=\"-f\"\n" +"RES=`apt-config shell OPTS MyApp::options`\n" +"eval $RES\n" +msgstr "" +"OPTS=\"-f\"\n" +"RES=`apt-config shell OPTS MyApp::Options`\n" +"eval $RES\n" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-config.8.xml:72 +msgid "" +"This will set the shell environment variable $OPTS to the value of MyApp::" +"options with a default of <option>-f</option>." +msgstr "" +"La variable d'environnement du shell $OPTS sera définie par la valeur de " +"MyApp::Options ou, par défaut, la valeur -f." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-config.8.xml:76 +msgid "" +"The configuration item may be postfixed with a /[fdbi]. f returns file " +"names, d returns directories, b returns true or false and i returns an " +"integer. Each of the returns is normalized and verified internally." +msgstr "" +"L'élément de configuration peut être suivi par /[fdbi]. « f » " +"renvoie un nom de fichier, « d » un nom de répertoire, « " +"b » renvoie « true » ou « false » et « i » " +"renvoie un entier. Chacune de ses valeurs est normalisée et vérifiée." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-config.8.xml:85 +msgid "Just show the contents of the configuration space." +msgstr "Affiche seulement le contenu de l'espace de configuration." + +#. type: Content of: <refentry><refsect1><para> +#: apt-config.8.xml:103 apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 +#: apt-mark.8.xml:105 apt-sortpkgs.1.xml:69 +msgid "&apt-conf;" +msgstr "&apt-conf;" + +#. type: Content of: <refentry><refsect1><para> +#: apt-config.8.xml:108 +msgid "" +"<command>apt-config</command> returns zero on normal operation, decimal 100 " +"on error." +msgstr "" +"<command>apt-config</command> retourne zéro après un déroulement normal, et " +"le nombre 100 en cas d'erreur." + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-extracttemplates.1.xml:22 apt-extracttemplates.1.xml:28 +msgid "apt-extracttemplates" +msgstr "apt-extracttemplates" + +#. type: Content of: <refentry><refmeta><manvolnum> +#: apt-extracttemplates.1.xml:23 apt-ftparchive.1.xml:23 apt-sortpkgs.1.xml:23 +msgid "1" +msgstr "1" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-extracttemplates.1.xml:29 +msgid "Utility to extract DebConf config and templates from Debian packages" +msgstr "" +"Outil d'extraction des textes de configuration pour " +"DebConf dans un paquet Debian" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-extracttemplates.1.xml:35 +msgid "" +"<command>apt-extracttemplates</command> <arg><option>-hv</option></arg> " +"<arg><option>-t=<replaceable>temporary directory</replaceable></option></" +"arg> <arg choice=\"plain\" rep=\"repeat\"><replaceable>file</replaceable></" +"arg>" +msgstr "" +"<command>apt-extracttemplates</command> <arg><option>-hv</option></arg> " +"<arg><option>-t=<replaceable>répertoire temporaire</replaceable></option></" +"arg> <arg choice=\"plain\" rep=\"repeat\"><replaceable>fichier</" +"replaceable></arg>" + +#. type: Content of: <refentry><refsect1><para> +#: apt-extracttemplates.1.xml:43 +msgid "" +"<command>apt-extracttemplates</command> will take one or more Debian package " +"files as input and write out (to a temporary directory) all associated " +"config scripts and template files. For each passed in package that contains " +"config scripts and templates, one line of output will be generated in the " +"format:" +msgstr "" +"<command>Apt-extracttemplates</command> prend un ou plusieurs paquets Debian " +"en paramètre et extrait (dans un répertoire temporaire) tous les scripts et " +"guides de configuration associés. Pour chaque paquet traité contenant des " +"scripts et guides de configuration, une ligne est affichée au format " +"suivant :" + +#. type: Content of: <refentry><refsect1><para> +#: apt-extracttemplates.1.xml:48 +msgid "package version template-file config-script" +msgstr "paquet version guide-de-configuration script-de-configuration" + +#. type: Content of: <refentry><refsect1><para> +#: apt-extracttemplates.1.xml:49 +msgid "" +"template-file and config-script are written to the temporary directory " +"specified by the -t or --tempdir (<literal>APT::ExtractTemplates::TempDir</" +"literal>) directory, with filenames of the form <filename>package.template." +"XXXX</filename> and <filename>package.config.XXXX</filename>" +msgstr "" +"Les scripts et guides de configuration sont écrits dans le répertoire " +"temporaire indiqué par l'option <option>-t</option> ou <option>--tempdir</" +"option> (<literal>APT::ExtractTemplates::TempDir</literal>) ; les noms " +"de fichier sont de la forme <filename>package.template.XXXX</filename> ou " +"<filename>package.config.XXXX</filename>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-extracttemplates.1.xml:59 apt-get.8.xml:468 +msgid "<option>-t</option>" +msgstr "<option>-t</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-extracttemplates.1.xml:59 +msgid "<option>--tempdir</option>" +msgstr "<option>--tempdir</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-extracttemplates.1.xml:61 +msgid "" +"Temporary directory in which to write extracted debconf template files and " +"config scripts Configuration Item: <literal>APT::ExtractTemplates::TempDir</" +"literal>" +msgstr "" +"Répertoire temporaire dans lequel écrire les scripts et guides de " +"configuration pour Debconf. Élément de configuration : <literal>APT::" +"ExtractTemplates::TempDir</literal>." + +#. type: Content of: <refentry><refsect1><para> +#: apt-extracttemplates.1.xml:78 +msgid "" +"<command>apt-extracttemplates</command> returns zero on normal operation, " +"decimal 100 on error." +msgstr "" +"<command>apt-extracttemplates</command> retourne zéro si tout se passe bien, " +"le nombre 100 en cas d'erreur." + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-ftparchive.1.xml:22 apt-ftparchive.1.xml:28 +msgid "apt-ftparchive" +msgstr "apt-ftparchive" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-ftparchive.1.xml:29 +msgid "Utility to generate index files" +msgstr "Outil de création de fichiers d'index" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-ftparchive.1.xml:35 +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>" +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>option de configuration</replaceable></" +"option></arg> <arg><option>-c=<replaceable>fichier</replaceable></option></" +"arg> <group choice=\"req\"> <arg>packages<arg choice=\"plain\" rep=\"repeat" +"\"><replaceable>chemin</replaceable></arg><arg><replaceable>override</" +"replaceable><arg><replaceable>préfixe-de-chemin</replaceable></arg></arg></" +"arg> <arg>sources<arg choice=\"plain\" rep=\"repeat\"><replaceable>chemin</" +"replaceable></arg><arg><replaceable>override</" +"replaceable><arg><replaceable>préfixe-de-chemin</replaceable></arg></arg></" +"arg> <arg>contents <arg choice=\"plain\"><replaceable>chemin</replaceable></" +"arg></arg> <arg>release <arg choice=\"plain\"><replaceable>chemin</" +"replaceable></arg></arg> <arg>generate <arg choice=\"plain" +"\"><replaceable>fichier-de-configuration</replaceable></arg><arg choice=" +"\"plain\" rep=\"repeat\"><replaceable>section</replaceable></arg></arg> " +"<arg>clean <arg choice=\"plain\"><replaceable>fichier-de-configuration</" +"replaceable></arg></arg> </group>" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:55 +msgid "" +"<command>apt-ftparchive</command> is the command line tool that generates " +"the index files that APT uses to access a distribution source. The index " +"files should be generated on the origin site based on the content of that " +"site." +msgstr "" +"<command>apt-ftparchive</command> est l'outil en ligne de commande qui crée " +"les index dont APT se sert pour accéder aux sources des distributions. Un " +"index doit être créé pour un site et basé sur le contenu de ce site." + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:59 +msgid "" +"<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; " +"program, incorporating its entire functionality via the <literal>packages</" +"literal> command. It also contains a contents file generator, " +"<literal>contents</literal>, and an elaborate means to 'script' the " +"generation process for a complete archive." +msgstr "" +"<command>apt-ftparchive</command> est un ensemble comprenant le programme " +"&dpkg-scanpackages; et toutes ses fonctionnalités via la commande " +"<literal>packages</literal> ; il comprend aussi un générateur de " +"fichier « Contents », la commande <literal>contents</literal>, et " +"une technique élaborée pour « scripter » le processus de création " +"d'une archive complète." + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:65 +msgid "" +"Internally <command>apt-ftparchive</command> can make use of binary " +"databases to cache the contents of a .deb file and it does not rely on any " +"external programs aside from &gzip;. When doing a full generate it " +"automatically performs file-change checks and builds the desired compressed " +"output files." +msgstr "" +"<command>Apt-ftparchive</command> peut utiliser lui-même des bases de " +"données binaires pour « cacher » le contenu d'un fichier ." +"deb ; il n'a pas besoin de programmes extérieurs, sauf &gzip;. Lors " +"d'une exécution, il vérifie les changements dans les fichiers et crée les " +"fichiers compressés voulus." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:74 +msgid "packages" +msgstr "packages" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:76 +msgid "" +"The packages command generates a package file from a directory tree. It " +"takes the given directory and recursively searches it for .deb files, " +"emitting a package record to stdout for each. This command is approximately " +"equivalent to &dpkg-scanpackages;." +msgstr "" +"La commande <literal>packages</literal> crée un fichier « " +"Packages » à partir d'une arborescence. Elle recherche récursivement à " +"travers le répertoire donné les fichiers .deb et, pour chaque fichier " +"trouvé, envoie une entrée pour ce paquet sur la sortie standard. Cette " +"commande est approximativement équivalente à &dpkg-scanpackages;." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:81 apt-ftparchive.1.xml:105 +msgid "The option <option>--db</option> can be used to specify a binary caching DB." +msgstr "" +"On peut se servir de l'option <option>--db</option> pour demander un cache " +"binaire." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:84 +msgid "sources" +msgstr "sources" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:86 +msgid "" +"The <literal>sources</literal> command generates a source index file from a " +"directory tree. It takes the given directory and recursively searches it " +"for .dsc files, emitting a source record to stdout for each. This command is " +"approximately equivalent to &dpkg-scansources;." +msgstr "" +"La commande <literal>sources</literal> crée un index des sources à partir " +"d'une arborescence. Elle recherche récursivement à travers le répertoire " +"donné les fichiers .dsc et, pour chaque fichier trouvé, envoie une entrée " +"pour ce paquet sur la sortie standard. Cette commande est approximativement " +"équivalente à &dpkg-scansources;." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:91 +msgid "" +"If an override file is specified then a source override file will be looked " +"for with an extension of .src. The --source-override option can be used to " +"change the source override file that will be used." +msgstr "" +"Quand on précise un fichier « override », c'est un fichier source " +"avec une extension .src qui est recherché. On peut se servir de l'option " +"<option>--source-override</option> pour changer de fichier source d'« " +"override »." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:96 +msgid "contents" +msgstr "contents" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:98 +msgid "" +"The <literal>contents</literal> command generates a contents file from a " +"directory tree. It takes the given directory and recursively searches it " +"for .deb files, and reads the file list from each file. It then sorts and " +"writes to stdout the list of files matched to packages. Directories are not " +"written to the output. If multiple packages own the same file then each " +"package is separated by a comma in the output." +msgstr "" +"La commande <literal>contents</literal> crée un fichier « " +"Contents » à partir d'une arborescence. Elle recherche récursivement à " +"travers le répertoire donné les fichiers .deb et, pour chaque fichier " +"trouvé, lit la liste des fichiers. Elle trie la liste des fichiers " +"correspondant à des paquets et l'envoie sur la sortie standard. Les " +"répertoires ne font pas partie du résultat. Quand un fichier appartient à " +"plusieurs paquets, une virgule sépare les paquets." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:108 +msgid "release" +msgstr "release" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:110 +msgid "" +"The <literal>release</literal> command generates a Release file from a " +"directory tree. It recursively searches the given directory for Packages, " +"Packages.gz, Packages.bz2, Sources, Sources.gz, Sources.bz2, Release and " +"md5sum.txt files. It then writes to stdout a Release file containing an MD5 " +"digest and SHA1 digest for each file." +msgstr "" +"La commande <literal>release</literal> crée un fichier Releases à partir " +"d'un répertoire. Elle cherche récursivement dans ce répertoire les fichiers " +"Packages, Packages.gz, Packages.bz2, Sources, Sources.gz, Sources.bz2, " +"Release et md5sum.txt. Elle envoie alors un fichier Release sur la sortie " +"standard avec un résumé MD5 et un résumé SHA1 pour chaque fichier." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:117 +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>." +msgstr "" +"La valeur des autres champs du fichier Release est tirée de la valeur " +"correspondante dans <literal>APT::FTPArchive::Release</literal>, p. ex. " +"<literal>APT::FTPArchive::Release::Origin</literal>. Les champs reconnus " +"sont : <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>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:127 +msgid "generate" +msgstr "generate" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:129 +msgid "" +"The <literal>generate</literal> command is designed to be runnable from a " +"cron script and builds indexes according to the given config file. The " +"config language provides a flexible means of specifying which index files " +"are built from which directories, as well as providing a simple means of " +"maintaining the required settings." +msgstr "" +"La commande <literal>generate</literal> est conçue pour être exécutable par " +"le programme cron et elle crée un index en suivant le fichier de " +"configuration donné. Le langage de configuration fournit un moyen souple de " +"préciser index et répertoires aussi bien que les paramètres requis." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:136 apt-get.8.xml:272 +msgid "clean" +msgstr "clean" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:138 +msgid "" +"The <literal>clean</literal> command tidies the databases used by the given " +"configuration file by removing any records that are no longer necessary." +msgstr "" +"La commande <literal>clean</literal> nettoie les bases de données utilisées " +"par le fichier de configuration en supprimant les enregistrements qui ne " +"sont plus nécessaires." + +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:144 +msgid "The Generate Configuration" +msgstr "Configuration de la commande generate" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:146 +msgid "" +"The <literal>generate</literal> command uses a configuration file to " +"describe the archives that are going to be generated. It follows the typical " +"ISC configuration format as seen in ISC tools like bind 8 and dhcpd. &apt-" +"conf; contains a description of the syntax. Note that the generate " +"configuration is parsed in sectional manner, but &apt-conf; is parsed in a " +"tree manner. This only effects how the scope tag is handled." +msgstr "" +"La commande <literal>generate</literal> utilise un fichier de configuration " +"pour décrire l'archive qui va être créée. Le format de ce fichier est le " +"format ISC classique utilisé par des outils ISC comme bind 8 et dhcpd. Le " +"fichier &apt-conf; décrit ce format. Il faut noter que l'analyse de ce " +"fichier se fait par section tandis que celle d'&apt-conf; se fait par " +"arborescence. Cela n'affecte que l'usage de l'étiquette de visée (scope tag)." + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:154 +msgid "The generate configuration has 4 separate sections, each described below." +msgstr "Ce fichier de configuration possède quatre sections, décrites ci-dessous." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:156 +msgid "Dir Section" +msgstr "La section Dir" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:158 +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." +msgstr "" +"La section <literal>Dir</literal> définit les répertoires standards où " +"situer les fichiers nécessaires au processus de création. Ces répertoires " +"sont précédés de chemins relatifs définis dans les sections suivantes de " +"manière à produire un chemin absolu et complet." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:163 +msgid "ArchiveDir" +msgstr "ArchiveDir" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:165 +msgid "" +"Specifies the root of the FTP archive, in a standard Debian configuration " +"this is the directory that contains the <filename>ls-LR</filename> and dist " +"nodes." +msgstr "" +"Indique la racine de l'archive FTP ; Pour une configuration Debian " +"classique, c'est le répertoire qui contient le fichier <filename>ls-LR</" +"filename> et les noeuds des distributions." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:170 +msgid "OverrideDir" +msgstr "OverrideDir" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:172 +msgid "Specifies the location of the override files." +msgstr "Indique l'emplacement des fichiers d'« override »." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:175 +msgid "CacheDir" +msgstr "CacheDir" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:177 +msgid "Specifies the location of the cache files" +msgstr "Indique l'emplacement des fichiers de cache." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:180 +msgid "FileListDir" +msgstr "FileListDir" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:182 +msgid "" +"Specifies the location of the file list files, if the <literal>FileList</" +"literal> setting is used below." +msgstr "" +"Indique l'emplacement des fichiers contenant la liste des fichiers (si on se " +"sert de la valeur <literal>FileList</literal> définie plus bas)." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:188 +msgid "Default Section" +msgstr "La section Default" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:190 +msgid "" +"The <literal>Default</literal> section specifies default values, and " +"settings that control the operation of the generator. Other sections may " +"override these defaults with a per-section setting." +msgstr "" +"La section <literal>Default</literal> précise les valeurs par défaut et les " +"paramètres qui contrôlent la marche du générateur. Ces valeurs peuvent être " +"annulées dans d'autres sections (paramètrage par section)." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:194 +msgid "Packages::Compress" +msgstr "Packages::Compress" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:196 +msgid "" +"Sets the default compression schemes to use for the Package index files. It " +"is a string that contains a space separated list of at least one of: '.' (no " +"compression), 'gzip' and 'bzip2'. The default for all compression schemes is " +"'. gzip'." +msgstr "" +"Indique comment sont compressés les fichiers d'index. C'est une chaîne qui " +"contient des valeurs séparées par des espaces ; elle contient au moins " +"l'une des valeurs suivantes : « . » (pas de compression), " +"« gzip », « bzip2 ». Par défaut, c'est la chaîne « . " +"gzip »." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:202 +msgid "Packages::Extensions" +msgstr "Packages::Extensions" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:204 +msgid "" +"Sets the default list of file extensions that are package files. This " +"defaults to '.deb'." +msgstr "" +"Indique la liste par défaut des extensions de fichier qui constituent des " +"paquets. Par défaut, c'est « .deb »." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:208 +msgid "Sources::Compress" +msgstr "Sources::Compress" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:210 +msgid "" +"This is similar to <literal>Packages::Compress</literal> except that it " +"controls the compression for the Sources files." +msgstr "" +"Identique à <literal>Packages::Compress</literal> mais précise comment sont " +"compressés les fichiers sources." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:214 +msgid "Sources::Extensions" +msgstr "Sources::Extensions" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:216 +msgid "" +"Sets the default list of file extensions that are source files. This " +"defaults to '.dsc'." +msgstr "" +"Indique la liste par défaut des extensions de fichier qui constituent des " +"fichiers sources. Par défaut, c'est « .dsc »." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:220 +msgid "Contents::Compress" +msgstr "Contents::Compress" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:222 +msgid "" +"This is similar to <literal>Packages::Compress</literal> except that it " +"controls the compression for the Contents files." +msgstr "" +"Identique à <literal>Packages::Compress</literal> mais précise comment sont " +"compressés les fichiers « Contents »." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:226 +msgid "DeLinkLimit" +msgstr "DeLinkLimit" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:228 +msgid "" +"Specifies the number of kilobytes to delink (and replace with hard links) " +"per run. This is used in conjunction with the per-section <literal>External-" +"Links</literal> setting." +msgstr "" +"Indique le nombre de kilo-octets à délier (et à remplacer par des liens en " +"dur) pour chaque exécution. On s'en sert, pour chaque section, avec le " +"paramètre <literal>External-Links</literal>." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:233 +msgid "FileMode" +msgstr "FileMode" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:235 +msgid "" +"Specifies the mode of all created index files. It defaults to 0644. All " +"index files are set to this mode with no regard to the umask." +msgstr "" +"Indique le système de permissions des fichiers d'index créés. Par défaut, " +"c'est le mode 0644. Tous les fichiers d'index ont ce mode et le masque " +"utilisateur (umasq) est ignoré." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:242 +msgid "TreeDefault Section" +msgstr "La section TreeDefault" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:244 +msgid "" +"Sets defaults specific to <literal>Tree</literal> sections. All of these " +"variables are substitution variables and have the strings $(DIST), " +"$(SECTION) and $(ARCH) replaced with their respective values." +msgstr "" +"Indique les valeurs par défaut particulières à la section <literal>Tree</" +"literal>. Toutes ces variables sont des variables de substitution ; les " +"chaînes $(DIST), $(SECTION) et $(ARCH) sont remplacées par leur valeur " +"respective." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:249 +msgid "MaxContentsChange" +msgstr "MaxContentsChange" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:251 +msgid "" +"Sets the number of kilobytes of contents files that are generated each day. " +"The contents files are round-robined so that over several days they will all " +"be rebuilt." +msgstr "" +"Indique le nombre de kilo-octets de fichiers « Contents » qui sont " +"créés chaque jour. Les fichiers « Contents » sont tirés au sort " +"selon le système <emphasis>round-robin</emphasis> de manière que, sur " +"plusieurs jours, tous soient reconstruits." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:256 +msgid "ContentsAge" +msgstr "ContentsAge" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:258 +msgid "" +"Controls the number of days a contents file is allowed to be checked without " +"changing. If this limit is passed the mtime of the contents file is updated. " +"This case can occur if the package file is changed in such a way that does " +"not result in a new contents file [override edit for instance]. A hold off " +"is allowed in hopes that new .debs will be installed, requiring a new file " +"anyhow. The default is 10, the units are in days." +msgstr "" +"Contrôle le nombre de jours pendant lequel un fichier « Contents » " +"peut être utilisé sans actualisation. Quand cette limite est franchie, le " +"« mtime » du fichier « Contents » est mis à jour. Cela " +"peut arriver quand un fichier est modifié sans que cela modifie le fichier " +"« Contents » (modification par « override » par exemple). " +"Un délai est permis dans l'espoir que de nouveaux « .deb » seront " +"installés, exigeant un nouveau « Contents ». Par défaut ce nombre " +"vaut 10, l'unité étant le jour." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:267 +msgid "Directory" +msgstr "Directory" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:269 +msgid "" +"Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/" +"$(SECTION)/binary-$(ARCH)/</filename>" +msgstr "" +"Indique la racine de l'arborescence des « .deb ». Par défaut, c'est " +"<filename>$(DIST)/$(SECTION)/binary-$(ARCH)/</filename>." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:273 +msgid "SrcDirectory" +msgstr "SrcDirectory" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:275 +msgid "" +"Sets the top of the source package directory tree. Defaults to <filename>" +"$(DIST)/$(SECTION)/source/</filename>" +msgstr "" +"Indique la racine de l'arborescence des paquets source. Par défaut, c'est " +"<filename>$(DIST)/$(SECTION)/source/</filename>." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:279 apt-ftparchive.1.xml:405 +msgid "Packages" +msgstr "Packages" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:281 +msgid "" +"Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" +"binary-$(ARCH)/Packages</filename>" +msgstr "" +"Indique le fichier « Packages » créé. Par défaut, c'est <filename>" +"$(DIST)/$(SECTION)/binary-$(ARCH)/Packages</filename>." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:285 apt-ftparchive.1.xml:410 +msgid "Sources" +msgstr "Sources" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:287 +msgid "" +"Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" +"source/Sources</filename>" +msgstr "" +"Indique le fichier « Packages » crée. Par défaut, c'est <filename>" +"$(DIST)/$(SECTION)/source/Sources</filename>." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:291 +msgid "InternalPrefix" +msgstr "InternalPrefix" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:293 +msgid "" +"Sets the path prefix that causes a symlink to be considered an internal link " +"instead of an external link. Defaults to <filename>$(DIST)/$(SECTION)/</" +"filename>" +msgstr "" +"Indique un préfixe de chemin ; ce préfixe fait qu'un lien symbolique " +"sera considéré comme un lien interne plutôt que comme un lien externe. Par " +"défaut, c'est <filename>$(DIST)/$(SECTION)/</filename>." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:298 apt-ftparchive.1.xml:416 +msgid "Contents" +msgstr "Contents" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:300 +msgid "" +"Sets the output Contents file. Defaults to <filename>$(DIST)/Contents-$(ARCH)" +"</filename>. If this setting causes multiple Packages files to map onto a " +"single Contents file (such as the default) then <command>apt-ftparchive</" +"command> will integrate those package files together automatically." +msgstr "" +"Indique le fichier « Contents » créé. Par défaut, c'est <filename>" +"$(DIST)/Contents-$(ARCH)</filename>. Quand le paramètrage fait que " +"différents fichiers « Packages » se réfèrent à un seul fichier " +"« Contents », <command>apt-ftparchive</command> les intègre " +"automatiquement." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:307 +msgid "Contents::Header" +msgstr "Contents::Header" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:309 +msgid "Sets header file to prepend to the contents output." +msgstr "Indique l'en-tête à préfixer au fichier « Contents » créé." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:312 apt-ftparchive.1.xml:441 +msgid "BinCacheDB" +msgstr "BinCacheDB" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:314 +msgid "" +"Sets the binary cache database to use for this section. Multiple sections " +"can share the same database." +msgstr "" +"Indique la base de données binaire servant de cache pour cette section. " +"Différentes sections peuvent partager cette base de données." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:318 +msgid "FileList" +msgstr "FileList" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:320 +msgid "" +"Specifies that instead of walking the directory tree, <command>apt-" +"ftparchive</command> should read the list of files from the given file. " +"Relative files names are prefixed with the archive directory." +msgstr "" +"Indique qu'au lieu de lire l'arborescence, <command>apt-ftparchive</command> " +"doit lire la liste de fichiers dans le fichier donné en paramètre. Les noms " +"relatifs sont préfixés par le répertoire de l'archive." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:325 +msgid "SourceFileList" +msgstr "SourceFileList" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:327 +msgid "" +"Specifies that instead of walking the directory tree, <command>apt-" +"ftparchive</command> should read the list of files from the given file. " +"Relative files names are prefixed with the archive directory. This is used " +"when processing source indexes." +msgstr "" +"Indique qu'au lieu de lire l'arborescence, <command>apt-ftparchive</command> " +"doit lire la liste de fichiers dans le fichier donné en paramètre. Les noms " +"relatifs sont préfixés par le répertoire de l'archive. On s'en sert pour " +"traiter les index de sources." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:335 +msgid "Tree Section" +msgstr "La section Tree" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:337 +msgid "" +"The <literal>Tree</literal> section defines a standard Debian file tree " +"which consists of a base directory, then multiple sections in that base " +"directory and finally multiple Architectures in each section. The exact " +"pathing used is defined by the <literal>Directory</literal> substitution " +"variable." +msgstr "" +"La section <literal>Tree</literal> définit une arborescence debian classique " +"avec un répertoire de base, différentes sections dans ce répertoire et " +"différentes architectures dans chaque section. Le chemin exact est défini " +"par la variable de substitution <literal>Directory</literal>." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:342 +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>." +msgstr "" +"La section <literal>Tree</literal> accepte une étiquette de visée (scope " +"tag) qui détermine la variable <literal>$(DIST)</literal> et la racine de " +"l'arborescence (le chemin est préfixé par <literal>ArchiveDir</literal>). " +"C'est par exemple : <filename>dists/woody</filename>." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:347 +msgid "" +"All of the settings defined in the <literal>TreeDefault</literal> section " +"can be use in a <literal>Tree</literal> section as well as three new " +"variables." +msgstr "" +"Tous les paramètres définis dans la section <literal>TreeDefault</literal> " +"peuvent s'utiliser dans la section <literal>Tree</literal> ainsi que les " +"trois nouvelles variables suivantes." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:350 +msgid "" +"When processing a <literal>Tree</literal> section <command>apt-ftparchive</" +"command> performs an operation similar to:" +msgstr "" +"Quand il exécute la section <literal>Tree</literal>, <command>apt-" +"ftparchive</command> agit ainsi :" + +#. type: Content of: <refentry><refsect1><refsect2><para><informalexample><programlisting> +#: apt-ftparchive.1.xml:353, 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 Sections do \n" +" for j in Architectures do\n" +" Generate for DIST=scope SECTION=i ARCH=j\n" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:359 +msgid "Sections" +msgstr "Sections" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:361 +msgid "" +"This is a space separated list of sections which appear under the " +"distribution, typically this is something like <literal>main contrib non-" +"free</literal>" +msgstr "" +"C'est une liste de sections séparées par des espaces qui appartiennent à une " +"distribution ; classiquement, on trouve <literal>main contrib non-free</" +"literal>." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:366 +msgid "Architectures" +msgstr "Architectures" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:368 +msgid "" +"This is a space separated list of all the architectures that appear under " +"search section. The special architecture 'source' is used to indicate that " +"this tree has a source archive." +msgstr "" +"C'est une liste de toutes les architectures qui appartiennent à chaque " +"section. L'architecture spéciale « source » indique que " +"l'arborescence est une arborescence de sources." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:373 apt-ftparchive.1.xml:421 +msgid "BinOverride" +msgstr "BinOverride" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:375 +msgid "" +"Sets the binary override file. The override file contains section, priority " +"and maintainer address information." +msgstr "" +"Indique le fichier binaire d'« override ». Ce fichier contient des " +"informations sur la section, la priorité et le responsable du paquet." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:379 apt-ftparchive.1.xml:426 +msgid "SrcOverride" +msgstr "SrcOverride" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:381 +msgid "" +"Sets the source override file. The override file contains section " +"information." +msgstr "" +"Indique le fichier source d'« override ». Ce fichier contient des " +"informations sur la section." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:385 apt-ftparchive.1.xml:431 +msgid "ExtraOverride" +msgstr "ExtraOverride" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:387 apt-ftparchive.1.xml:433 +msgid "Sets the binary extra override file." +msgstr "Indique un autre fichier d'« override » pour les binaires." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:390 apt-ftparchive.1.xml:436 +msgid "SrcExtraOverride" +msgstr "SrcExtraOverride" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:392 apt-ftparchive.1.xml:438 +msgid "Sets the source extra override file." +msgstr "Indique un autre fichier d'« override » pour les sources." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:397 +msgid "BinDirectory Section" +msgstr "La section BinDirectory" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:399 +msgid "" +"The <literal>bindirectory</literal> section defines a binary directory tree " +"with no special structure. The scope tag specifies the location of the " +"binary directory and the settings are similar to the <literal>Tree</literal> " +"section with no substitution variables or <literal>Section</" +"literal><literal>Architecture</literal> settings." +msgstr "" +"La section <literal>bindirectory</literal> définit une arborescence binaire " +"sans structure particulière. L'étiquette de visée (scope tag) indique " +"l'emplacement du répertoire binaire et le paramètrage est identique à celui " +"pour la section <literal>Tree</literal> sans substitution de variables ou au " +"paramètrage de <literal>Section</literal><literal>Architecture</literal>." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:407 +msgid "Sets the Packages file output." +msgstr "Définit le fichier « Packages » créé." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:412 +msgid "" +"Sets the Sources file output. At least one of <literal>Packages</literal> or " +"<literal>Sources</literal> is required." +msgstr "" +"Définit le fichier « Sources » créé. L'un des deux fichiers, " +"<literal>Packages</literal> ou <literal>Sources</literal> est nécessaire." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:418 +msgid "Sets the Contents file output. (optional)" +msgstr "Définit le fichier « Contents » créé." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:423 +msgid "Sets the binary override file." +msgstr "Définit le fichier d'« override » pour les binaires." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:428 +msgid "Sets the source override file." +msgstr "Définit le fichier d'« override » pour les sources." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:443 +msgid "Sets the cache DB." +msgstr "Définit la base de données cache." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:446 +msgid "PathPrefix" +msgstr "PathPrefix" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:448 +msgid "Appends a path to all the output paths." +msgstr "Ajoute un chemin à tous les chemins créés." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:451 +msgid "FileList, SourceFileList" +msgstr "FileList, SourceFileList" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:453 +msgid "Specifies the file list file." +msgstr "Définit le fichier contenant la liste des fichiers." + +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:460 +msgid "The Binary Override File" +msgstr "Le fichier d'« Override » pour les binaires." + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:461 +msgid "" +"The binary override file is fully compatible with &dpkg-scanpackages;. It " +"contains 4 fields separated by spaces. The first field is the package name, " +"the second is the priority to force that package to, the third is the the " +"section to force that package to and the final field is the maintainer " +"permutation field." +msgstr "" +"Le fichier d'« Override » est pleinement compatible avec &dpkg-" +"scanpackages;. Il contient quatre champs séparés par des espaces. Le premier " +"est le nom du paquet ; le deuxième est la priorité à donner à ce " +"paquet ; le troisième est sa section et le dernier champ est un champ " +"pour changer le nom du responsable de paquet." + +#. type: Content of: <refentry><refsect1><para><literallayout> +#: apt-ftparchive.1.xml:467, no-wrap +msgid "old [// oldn]* => new" +msgstr "old [// oldn]* => new" + +#. type: Content of: <refentry><refsect1><para><literallayout> +#: apt-ftparchive.1.xml:469, no-wrap +msgid "new" +msgstr "new" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:466 +msgid "" +"The general form of the maintainer field is: <placeholder type=" +"\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" " +"id=\"1\"/> The first form allows a double-slash separated list of old email " +"addresses to be specified. If any of those are found then new is substituted " +"for the maintainer field. The second form unconditionally substitutes the " +"maintainer field." +msgstr "" +"Le champ du responsable est de cette forme : <placeholder type=" +"\"literallayout\" id=\"0\"/> ou simplement, <placeholder type=\"literallayout" +"\" id=\"1\"/> La première forme permet de spécifier de vieilles adresses " +"dans une liste (le séparateur est la double barre oblique). Si l'une de ces " +"deux formes est rencontrée, la valeur de new remplace la valeur du champ. La " +"deuxième forme remplace inconditionnellement le champ." + +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:477 +msgid "The Source Override File" +msgstr "Le fichier d'« Override » pour les sources" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:479 +msgid "" +"The source override file is fully compatible with &dpkg-scansources;. It " +"contains 2 fields separated by spaces. The first fields is the source " +"package name, the second is the section to assign it." +msgstr "" +"Le fichier d'« Override » est pleinement compatible avec &dpkg-" +"scansources;. Il contient deux champs. Le premier est le nom du paquet " +"source ; le second, sa section." + +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:484 +msgid "The Extra Override File" +msgstr "Le fichier supplémentaire d'« Override »" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:486 +msgid "" +"The extra override file allows any arbitrary tag to be added or replaced in " +"the output. It has 3 columns, the first is the package, the second is the " +"tag and the remainder of the line is the new value." +msgstr "" +"Le fichier supplémentaire d'« Override » permet d'ajouter ou de " +"remplacer des étiquettes sur la sortie. Il possède trois colonnes : la " +"première représente le paquet, la seconde est une étiquette et la troisième " +"en fin de ligne est la nouvelle valeur." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:495 +msgid "<option>--md5</option>" +msgstr "<option>--md5</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:497 +msgid "" +"Generate MD5 sums. This defaults to on, when turned off the generated index " +"files will not have MD5Sum fields where possible. Configuration Item: " +"<literal>APT::FTPArchive::MD5</literal>" +msgstr "" +"Créer la somme de contrôle MD5. Cette option est activée par défaut. Quand " +"elle est désactivée, les fichiers d'index n'ont pas les champs MD5Sum là où " +"c'est possible. Élément de configuration : <literal>APT::FTPArchive::" +"MD5</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:502 +msgid "<option>--db</option>" +msgstr "<option>--db</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:504 +msgid "" +"Use a binary caching DB. This has no effect on the generate command. " +"Configuration Item: <literal>APT::FTPArchive::DB</literal>." +msgstr "" +"Utiliser une base de données binaire pour cache. Cela n'a aucun effet sur la " +"commande generate. Élément de configuration : <literal>APT::" +"FTPArchive::DB</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:510 +msgid "" +"Quiet; produces output suitable for logging, omitting progress indicators. " +"More q's will produce more quiet up to a maximum of 2. You can also use " +"<option>-q=#</option> to set the quiet level, overriding the configuration " +"file. Configuration Item: <literal>quiet</literal>." +msgstr "" +"Mode silencieux ; cette commande produit une sortie destinée à " +"l'enregistrement dans un fichier-journal en omettant les indicateurs de " +"progression. Un plus grand nombre de « q » (2 au plus) produit un " +"plus grand silence. On peut aussi utiliser <option>-q=#</option> pour " +"positionner le niveau de silence, et annuler le fichier de configuration. " +"Élément de configuration : <literal>quiet</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:516 +msgid "<option>--delink</option>" +msgstr "<option>--delink</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:518 +msgid "" +"Perform Delinking. If the <literal>External-Links</literal> setting is used " +"then this option actually enables delinking of the files. It defaults to on " +"and can be turned off with <option>--no-delink</option>. Configuration " +"Item: <literal>APT::FTPArchive::DeLinkAct</literal>." +msgstr "" +"Défaire une liaison. Si <literal>External-Links</literal> est activé, cette " +"option permet réellement de délier les fichiers. Par défaut, elle est " +"activée mais elle peut être désactivée avec l'option <option>--no-delink</" +"option>. Élément de configuration : <literal>APT::FTPArchive::" +"DeLinkAct</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:524 +msgid "<option>--contents</option>" +msgstr "<option>--contents</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:526 +msgid "" +"Perform contents generation. When this option is set and package indexes are " +"being generated with a cache DB then the file listing will also be extracted " +"and stored in the DB for later use. When using the generate command this " +"option also allows the creation of any Contents files. The default is on. " +"Configuration Item: <literal>APT::FTPArchive::Contents</literal>." +msgstr "" +"Permettre la création d'un fichier « Contents ». Quand cette option " +"est activée et que les index sont créés sous forme de base de données " +"binaire, la liste des fichiers est aussi extraite et conservée dans la base " +"de données pour un usage futur. Avec la commande generate, cette option " +"permet la création de fichiers « Contents ». Par défaut, elle est " +"activée. Élément de configuration : <literal>APT::FTPArchive::" +"Contents</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:534 +msgid "<option>--source-override</option>" +msgstr "<option>--source-override</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:536 +msgid "" +"Select the source override file to use with the <literal>sources</literal> " +"command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</" +"literal>." +msgstr "" +"Indique le fichier d'« override » à utiliser avec la commande " +"<literal>sources</literal>. Élément de configuration : <literal>APT::" +"FTPArchive::SourceOverride</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:540 +msgid "<option>--readonly</option>" +msgstr "<option>--readonly</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:542 +msgid "" +"Make the caching databases read only. Configuration Item: <literal>APT::" +"FTPArchive::ReadOnlyDB</literal>." +msgstr "" +"N'autoriser que la lecture pour les bases de données de cache. Élément de " +"configuration : <literal>APT::FTPArchive::ReadOnlyDB</literal>." + +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:551 apt.conf.5.xml:818 apt_preferences.5.xml:460 +#: sources.list.5.xml:180 +msgid "Examples" +msgstr "Exemples" + +#. type: Content of: <refentry><refsect1><para><programlisting> +#: apt-ftparchive.1.xml:557 +#, no-wrap +msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" +msgstr "" +"<command>apt-ftparchive</command> packages <replaceable>répertoire</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:553 +msgid "" +"To create a compressed Packages file for a directory containing binary " +"packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" +msgstr "" +"Création d'un fichier « Packages » compressé pour un répertoire contenant des paquets binaires (.deb): <placeholder type=\"programlisting\" " +"id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:567 +msgid "" +"<command>apt-ftparchive</command> returns zero on normal operation, decimal " +"100 on error." +msgstr "" +"<command>apt-ftparchive</command> retourne zéro si tout se passe bien, le " +"nombre 100 en cas d'erreur." + +#. The last update date +#. type: Content of: <refentry><refentryinfo> +#: apt-get.8.xml:13 +msgid "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>08 " +"November 2008</date>" +msgstr "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>08 " +"Novembre 2008</date>" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-get.8.xml:22 apt-get.8.xml:28 +msgid "apt-get" +msgstr "apt-get" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-get.8.xml:29 +msgid "APT package handling utility -- command-line interface" +msgstr "" +"Utilitaire APT pour la manipulation de paquets -- interface en ligne de " +"commande." + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-get.8.xml:35 +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>" +msgstr "" +"<command>apt-get</command> <arg><option>-sqdyfmubV</option></arg> <arg> " +"<option>-o= <replaceable>option_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> <arg choice='plain'> " +"<replaceable>expression_numéro_version_cible</replaceable> </arg> <arg " +"choice='plain'> <replaceable>nom_code_version_cible</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>numero_version_paquet</" +"replaceable> </arg> <arg choice='plain'> /<replaceable>nom_version_cible</" +"replaceable> </arg> <arg choice='plain'> /" +"<replaceable>nom_code_version_cible</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>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>" + +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:115 +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;." +msgstr "" +"<command>Apt-get</command> est l'outil en ligne de commande pour manipuler " +"les paquets. Il peut être considéré comme l'outil de base (« backend ») pour les autres outils de la bibliothèque APT. Plusieurs interfaces " +"utilisateur existent, comme dselect, aptitude, synaptic, gnome-apt ou wajig." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:124 apt-key.8.xml:122 +msgid "update" +msgstr "update" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:125 +msgid "" +"<literal>update</literal> is used to resynchronize the package index files " +"from their sources. The indexes of available packages are fetched from the " +"location(s) specified in <filename>/etc/apt/sources.list</filename>. For " +"example, when using a Debian archive, this command retrieves and scans the " +"<filename>Packages.gz</filename> files, so that information about new and " +"updated packages is available. An <literal>update</literal> should always be " +"performed before an <literal>upgrade</literal> or <literal>dist-upgrade</" +"literal>. Please be aware that the overall progress meter will be incorrect " +"as the size of the package files cannot be known in advance." +msgstr "" +"La commande <literal>update</literal> permet de resynchroniser un fichier " +"d'index répertoriant les paquets disponibles et sa source. Ces fichiers sont " +"récupérés aux endroits spécifiés dans <filename>/etc/apt/sources.list</" +"filename>. Ainsi, lorsqu'on utilise une archive Debian, cette commande " +"récupère les fichiers <filename>Packages.gz</filename> et les analyse de " +"manière à rendre disponibles les informations concernant les nouveaux " +"paquets et les paquets mis à jour. On doit toujours exécuter une commande " +"<literal>update</literal> avant les commandes <literal>upgrade</literal> ou " +"<literal>dist-upgrade</literal>. Veuillez noter que l'indicateur de " +"progression d'ensemble peut être imprécis puisque la taille de ces fichiers " +"ne peut être connue à l'avance." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:136 +msgid "upgrade" +msgstr "upgrade" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:137 +msgid "" +"<literal>upgrade</literal> is used to install the newest versions of all " +"packages currently installed on the system from the sources enumerated in " +"<filename>/etc/apt/sources.list</filename>. Packages currently installed " +"with new versions available are retrieved and upgraded; under no " +"circumstances are currently installed packages removed, or packages not " +"already installed retrieved and installed. New versions of currently " +"installed packages that cannot be upgraded without changing the install " +"status of another package will be left at their current version. An " +"<literal>update</literal> must be performed first so that <command>apt-get</" +"command> knows that new versions of packages are available." +msgstr "" +"La commande <literal>upgrade</literal> permet d'installer les versions les " +"plus récentes de tous les paquets présents sur le système en utilisant les " +"sources énumérées dans <filename>/etc/apt/sources.list</filename>. Les " +"paquets installés dont il existe de nouvelles versions sont récupérés et mis " +"à niveau. En aucun cas des paquets déjà installés ne sont supprimés ; " +"de même, des paquets qui ne sont pas déjà installés ne sont ni récupérés ni " +"installés. Les paquets dont de nouvelles versions ne peuvent pas être " +"installées sans changer le statut d'installation d'un autre paquet sont " +"laissés dans leur version courante. On doit d'abord exécuter la commande " +"<literal>update</literal> pour que <command>apt-get</command> connaisse " +"l'existence de nouvelles versions des paquets." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:149 +msgid "dselect-upgrade" +msgstr "dselect-upgrade" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:150 +msgid "" +"<literal>dselect-upgrade</literal> is used in conjunction with the " +"traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</" +"literal> follows the changes made by &dselect; to the <literal>Status</" +"literal> field of available packages, and performs the actions necessary to " +"realize that state (for instance, the removal of old and the installation of " +"new packages)." +msgstr "" +"<literal>dselect-upgrade</literal> est utilisée conjointement avec " +"&dselect;, l'interface originelle Debian pour la gestion des paquets. " +"La commande <literal>dselect-upgrade</literal> suit les modifications faites " +"par &dselect; dans le champ <literal>Status</literal> des paquets " +"disponibles, et effectue les actions nécessaires à la réalisation de cet " +"état (par exemple, suppression d'anciens paquets, installation de nouveaux " +"paquets)." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:159 +msgid "dist-upgrade" +msgstr "dist-upgrade" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:160 +msgid "" +"<literal>dist-upgrade</literal> in addition to performing the function of " +"<literal>upgrade</literal>, also intelligently handles changing dependencies " +"with new versions of packages; <command>apt-get</command> has a \"smart\" " +"conflict resolution system, and it will attempt to upgrade the most " +"important packages at the expense of less important ones if necessary. So, " +"<literal>dist-upgrade</literal> command may remove some packages. The " +"<filename>/etc/apt/sources.list</filename> file contains a list of locations " +"from which to retrieve desired package files. See also &apt-preferences; " +"for a mechanism for overriding the general settings for individual packages." +msgstr "" +"La commande <literal>dist-upgrade</literal> effectue la fonction " +"<literal>upgrade</literal> en y ajoutant une gestion intelligente des " +"changements de dépendances dans les nouvelles versions des paquets ; " +"<command>apt-get</command> possède un système « intelligent » de " +"résolution des conflits et il essaye, quand c'est nécessaire, de mettre à " +"niveau les paquets les plus importants aux dépens des paquets les moins " +"importants. Le fichier <filename>/etc/apt/sources.list</filename> contient " +"une liste de sources où récupérer les paquets désirés. Voyez aussi &apt-" +"preferences; pour un mécanisme de remplacement des paramètres généraux pour " +"certains paquets." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:172 +msgid "install" +msgstr "install" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:174 +msgid "" +"<literal>install</literal> is followed by one or more packages desired for " +"installation or upgrading. Each package is a package name, not a fully " +"qualified filename (for instance, in a Debian GNU/Linux system, libc6 would " +"be the argument provided, not <literal>libc6_1.9.6-2.deb</literal>). All " +"packages required by the package(s) specified for installation will also be " +"retrieved and installed. The <filename>/etc/apt/sources.list</filename> " +"file is used to locate the desired packages. If a hyphen is appended to the " +"package name (with no intervening space), the identified package will be " +"removed if it is installed. Similarly a plus sign can be used to designate " +"a package to install. These latter features may be used to override " +"decisions made by apt-get's conflict resolution system." +msgstr "" +"La commande <literal>install</literal> est suivie par un ou plusieurs " +"paquets à installer. Chaque paquet est un nom de paquet ; ce n'est pas " +"un nom complet de fichier (par exemple, dans un système Debian " +"GNU/Linux, on indiquera libc6 et non pas <literal>libc6_1.9.6-2.deb</" +"literal>). Tous les paquets requis par le(s) paquet(s) que l'on veut " +"installer sont aussi récupérés et installés. Le fichier " +"<filename>/etc/apt/sources.list</filename> est utilisé pour retrouver les paquets " +"désirés. Quand un trait d'union est accolé (sans espace intermédiaire) au " +"nom d'un paquet déjà installé, ce paquet est supprimé. De même on peut " +"ajouter un signe « + » pour désigner un paquet à installer. Cette " +"dernière fonctionnalité peut être utilisée pour annuler les décisions prises " +"par le système de résolution des conflits d'apt-get." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:192 +msgid "" +"A specific version of a package can be selected for installation by " +"following the package name with an equals and the version of the package to " +"select. This will cause that version to be located and selected for install. " +"Alternatively a specific distribution can be selected by following the " +"package name with a slash and the version of the distribution or the Archive " +"name (stable, testing, unstable)." +msgstr "" +"On peut choisir d'installer une version particulière d'un paquet en faisant " +"suivre son nom par un signe égal et par la version. Cette version sera " +"recherchée et l'installation sera demandée. On peut aussi choisir une " +"distribution particulière en faisant suivre le nom du paquet par une barre " +"oblique et par le nom de la distribution ou de l'archive (stable, testing, " +"unstable)." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:199 +msgid "" +"Both of the version selection mechanisms can downgrade packages and must be " +"used with care." +msgstr "" +"Avec ces possibilités de choisir la version, de vieilles versions d'un " +"paquet peuvent être installées. Cette fonctionnalité est donc à utiliser avec précaution." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:202 +msgid "" +"This is also the target to use if you want to upgrade one or more already-" +"installed packages without upgrading every package you have on your system. " +"Unlike the \"upgrade\" target, which installs the newest version of all " +"currently installed packages, \"install\" will install the newest version of " +"only the package(s) specified. Simply provide the name of the package(s) " +"you wish to upgrade, and if a newer version is available, it (and its " +"dependencies, as described above) will be downloaded and installed." +msgstr "" +"Cette méthode est aussi utile pour mettre à jour un ou plusieurs paquets déjà installés sans mettre à jour les autres paquets du système. À la " +"différence de la commande « upgrade » qui installera le dernière version disponible de tous les paquets installés au moment de son exécution, « " +"install » n'installera la nouvelle version que pour le(s) paquet(s) indiqué(s). Il suffit de fournir le nom du(des) paquet(s) à mettre à jour et si " +"une nouvelle version est disponible, cette version (et ses dépendances, comme décrit plus haut) sera récupérée et installée." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:213 +msgid "" +"Finally, the &apt-preferences; mechanism allows you to create an alternative " +"installation policy for individual packages." +msgstr "" +"Enfin, le mécanisme d'&apt-preferences; permet de créer d'autres règles pour " +"l'installation des paquets." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:217 +msgid "" +"If no package matches the given expression and the expression contains one " +"of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and " +"it is applied to all package names in the database. Any matches are then " +"installed (or removed). Note that matching is done by substring so 'lo.*' " +"matches 'how-lo' and 'lowest'. If this is undesired, anchor the regular " +"expression with a '^' or '$' character, or create a more specific regular " +"expression." +msgstr "" +"Quand aucun paquet ne correspond à l'expression donnée en paramètre et que " +"cette expression contient l'un des caractères « . », « ? » " +"ou « * », elle est considérée comme une expression rationnelle POSIX " +"et elle est appliquée à tous les paquets de la base de données. Tout paquet " +"correspondant est installé (ou supprimé). Veuillez noter que la comparaison est " +"effectuée par sous-chaîne et « lo.* » correspond aussi bien à « " +"how-lo » qu'à « lowest ». Si ce n'est pas le comportement souhaité, l'expression peut être ancrée avec un caractère « ^ » ou un caractère « $ », " +"une autre possibilité étant d'utiliser une expression plus précise." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:226 +msgid "remove" +msgstr "remove" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:227 +msgid "" +"<literal>remove</literal> is identical to <literal>install</literal> except " +"that packages are removed instead of installed. Note the removing a package " +"leaves its configuration files in system. If a plus sign is appended to the " +"package name (with no intervening space), the identified package will be " +"installed instead of removed." +msgstr "" +"La commande <literal>remove</literal> est identique à la commande " +"<literal>install</literal>, les paquets étant alors supprimés et non installés. Veuillez noter que la suppression d'un paquet en laisse les " +"fichiers de configuration sur le système. Quand un signe plus est accolé (sans espace intermédiaire) au nom " +"du paquet, le paquet est installé au lieu d'être supprimé." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:234 +msgid "purge" +msgstr "purge" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:235 +msgid "" +"<literal>purge</literal> is identical to <literal>remove</literal> except " +"that packages are removed and purged (any configuration files are deleted " +"too)." +msgstr "" +"La commande <literal>purge</literal> est identique à <literal>remove</literal> mais les paquets indiqués sont supprimés et purgés (leur fichiers de " +"configuration sont également effacés)." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:239 +msgid "source" +msgstr "source" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:240 +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." +msgstr "" +"Avec la commande <literal>source</literal>, <command>apt-get</command> " +"récupère des paquets sources. APT examine les paquets disponibles pour " +"choisir le paquet source à récupérer. Il trouve ensuite et récupère dans " +"le répertoire courant leur version la plus récente. Les paquets source sont suivis séparément des paquets binaires en utilisant les lignes de type " +"<literal>deb-src</literal> dans le fichier &sources-list;. Cela signifie qu'il n'est pas garanti que vous récupérerez le paquet source " +"correspondant à un paquet binaire présent sur le système. Si l'option --compile est utilisée, e paquet sera compilé en paquet(s) .deb binaire(s) " +"avec dpkg-buildpackage. Si l'option --download-only est utilisée, le paquet source sera seulement récupéré et pas décompressé." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:251 +msgid "" +"A specific source version can be retrieved by postfixing the source name " +"with an equals and then the version to fetch, similar to the mechanism used " +"for the package files. This enables exact matching of the source package " +"name and version, implicitly enabling the <literal>APT::Get::Only-Source</" +"literal> option." +msgstr "" +"De la même façon qu'avec les paquets binaires, on peut récupérer une version " +"particulière d'un paquet source en faisant suivre son nom par un signe égal " +"et par la version. Cela permet une comparaison exacte entre le nom du paquet " +"source et la version ; l'option correspondante est : <literal>APT::Get::Only-Source</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:257 +msgid "" +"Note that source packages are not tracked like binary packages, they exist " +"only in the current directory and are similar to downloading source tar " +"balls." +msgstr "" +"Veuillez noter que les paquets sources ne sont pas suivis comme le sont les paquets " +"binaires. Ils ne sont présents que dans le répertoire courant et sont " +"semblables à des sources téléchargées sous forme d'archives tar." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:262 +msgid "build-dep" +msgstr "build-dep" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:263 +msgid "" +"<literal>build-dep</literal> causes apt-get to install/remove packages in an " +"attempt to satisfy the build dependencies for a source package." +msgstr "" +"Avec la commande <literal>build-dep</literal>, apt-get installe ou supprime " +"des paquets dans le but de satisfaire les dépendances de construction d'un " +"paquet source." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:267 +msgid "check" +msgstr "check" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:268 +msgid "" +"<literal>check</literal> is a diagnostic tool; it updates the package cache " +"and checks for broken dependencies." +msgstr "" +"La commande <literal>check</literal> est un outil de diagnostic ; il " +"met à jour le cache des paquets et cherche des dépendances défectueuses." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:273 +msgid "" +"<literal>clean</literal> clears out the local repository of retrieved " +"package files. It removes everything but the lock file from " +"<filename>&cachedir;/archives/</filename> and <filename>&cachedir;/archives/" +"partial/</filename>. When APT is used as a &dselect; method, <literal>clean</" +"literal> is run automatically. Those who do not use dselect will likely " +"want to run <literal>apt-get clean</literal> from time to time to free up " +"disk space." +msgstr "" +"La commande <literal>clean</literal> nettoie le référentiel local des " +"paquets récupérés. Elle supprime tout, excepté le fichier de verrou situé dans " +"<filename>&cachedir;/archives/</filename> et <filename>&cachedir;/archives/" +"partial/</filename>. Quand APT est utilisé comme mode de &dselect;, " +"<literal>clean</literal> est exécuté automatiquement. Quand on n'utilise " +"pas dselect, il faut exécuter <literal>apt-get clean</literal> de temps en " +"temps si l'on veut libérer de l'espace disque." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:282 +msgid "autoclean" +msgstr "autoclean" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:283 +msgid "" +"Like <literal>clean</literal>, <literal>autoclean</literal> clears out the " +"local repository of retrieved package files. The difference is that it only " +"removes package files that can no longer be downloaded, and are largely " +"useless. This allows a cache to be maintained over a long period without it " +"growing out of control. The configuration option <literal>APT::Clean-" +"Installed</literal> will prevent installed packages from being erased if it " +"is set to off." +msgstr "" +"Tout comme <literal>clean</literal>, <literal>autoclean</literal> nettoie le " +"référentiel local des paquets récupérés. La différence est qu'il supprime " +"uniquement les paquets qui ne peuvent plus être téléchargés et qui sont " +"grandement inutiles. On peut ainsi contrôler la taille de ce cache sur une " +"longue période. Tant qu'elle n'est pas activée, l'option de configuration " +"<literal>APT::Clean-Installed</literal> empêche la suppression de paquets " +"installés." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:292 +msgid "autoremove" +msgstr "autoremove" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:293 +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." +msgstr "" +"Avec la commande <literal>autoremove</literal>, apt-get supprime " +"les paquets installés dans le but de satisfaire les dépendances d'un paquet donné et qui ne sont plus nécessaires." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:303 apt-get.8.xml:409 +msgid "<option>--no-install-recommends</option>" +msgstr "<option>--no-install-recommends</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:304 +msgid "" +"Do not consider recommended packages as a dependency for installing. " +"Configuration Item: <literal>APT::Install-Recommends</literal>." +msgstr "" +"Ne pas considérer les paquets recommandés comme des dépendances à installer. Élément de configuration : <literal>APT::Install-Recommends</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:308 +msgid "<option>--download-only</option>" +msgstr "<option>--download-only</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:309 +msgid "" +"Download only; package files are only retrieved, not unpacked or installed. " +"Configuration Item: <literal>APT::Get::Download-Only</literal>." +msgstr "" +"Récupération seule ; les paquets sont récupérés mais ne sont ni " +"dépaquetés ni installés. Élément de configuration : <literal>APT::Get::" +"Download-Only</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:313 +msgid "<option>--fix-broken</option>" +msgstr "<option>--fix-broken</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:314 +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>." +msgstr "" +"Correction ; essaye de réparer un système dont les dépendances sont " +"défectueuses. Cette option, utilisée avec install ou remove, peut omettre " +"tout paquet de façon à permettre à APT de déduire une solution viable. " +"Chaque paquet spécifié doit complètement corriger le problème. Cette option " +"est quelquefois nécessaire lorsque l'on exécute APT pour la première " +"fois ; APT lui-même interdit les dépendances défectueuses dans un " +"système. Il est possible que la structure de dépendances d'un système soit " +"tellement corrompue qu'elle requiert une intervention manuelle (ce qui veut " +"dire la plupart du temps utiliser &dselect; ou <command>dpkg --remove</" +"command> pour éliminer les paquets en cause). L'utilisation de cette option " +"conjointement avec <option>-m</option> peut produire une erreur dans " +"certaines situations. Élément de configuration : <literal>APT::Get::" +"Fix-Broken</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:327 +msgid "<option>--ignore-missing</option>" +msgstr "<option>--ignore-missing</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:328 +msgid "<option>--fix-missing</option>" +msgstr "<option>--fix-missing</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:329 +msgid "" +"Ignore missing packages; If packages cannot be retrieved or fail the " +"integrity check after retrieval (corrupted package files), hold back those " +"packages and handle the result. Use of this option together with <option>-f</" +"option> may produce an error in some situations. If a package is selected " +"for installation (particularly if it is mentioned on the command line) and " +"it could not be downloaded then it will be silently held back. " +"Configuration Item: <literal>APT::Get::Fix-Missing</literal>." +msgstr "" +"Ignorer les paquets manquants ; si des paquets ne peuvent être " +"récupérés, ou, après récupération, ne satisfont pas au contrôle d'intégrité, " +"cette commande met ces paquets de côté et gère le résultat. Utiliser cette " +"option conjointement avec <option>-f</option> peut produire une erreur dans " +"certaines situations. Quand un paquet, sélectionné pour une installation " +"(particulièrement si c'est mentionné en ligne de commande), ne peut être " +"récupéré, il est mis silencieusement de côté. Élément de " +"configuration : <literal>APT::Get::Fix-Missing</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:339 +msgid "<option>--no-download</option>" +msgstr "<option>--no-download</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:340 +msgid "" +"Disables downloading of packages. This is best used with <option>--ignore-" +"missing</option> to force APT to use only the .debs it has already " +"downloaded. Configuration Item: <literal>APT::Get::Download</literal>." +msgstr "" +"Pas de récupération. Le mieux est d'utiliser cette option avec <option>--" +"ignore-missing</option> pour forcer APT à n'utiliser que les .deb qu'il a " +"déjà récupérés. Élément de configuration : <literal>APT::Get::" +"Download</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:347 +msgid "" +"Quiet; produces output suitable for logging, omitting progress indicators. " +"More q's will produce more quiet up to a maximum of 2. You can also use " +"<option>-q=#</option> to set the quiet level, overriding the configuration " +"file. Note that quiet level 2 implies <option>-y</option>, you should never " +"use -qq without a no-action modifier such as -d, --print-uris or -s as APT " +"may decided to do something you did not expect. Configuration Item: " +"<literal>quiet</literal>." +msgstr "" +"Mode silencieux ; cette commande produit une sortie destinée à " +"l'enregistrement dans un fichier-journal en omettant les indicateurs de " +"progression. Un plus grand nombre de « q » (2 au plus) produit un " +"plus grand silence. On peut aussi utiliser <option>-q=#</option> pour " +"positionner le niveau de silence, et annuler le fichier de configuration. " +"Notez qu'un niveau de silence égal à 2 implique <option>-y</option> et vous " +"ne devez jamais utiliser <option>-qq</option> sans l'accompagner d'un " +"modificateur tel que <option>-d</option>, <option>--print-uris</option> ou " +"<option>-s</option> : APT pourrait alors exécuter des actions " +"inattendues. Élément de configuration : <literal>quiet</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:357 +msgid "<option>--simulate</option>" +msgstr "<option>--simulate</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:359 +msgid "<option>--dry-run</option>" +msgstr "<option>--dry-run</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:362 +msgid "" +"No action; perform a simulation of events that would occur but do not " +"actually change the system. Configuration Item: <literal>APT::Get::" +"Simulate</literal>." +msgstr "" +"Pas d'action ; simule les événements qui devraient se produire sans effectuer de changement réel sur le système. Élément de " +"configuration : <literal>APT::Get::Simulate</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:366 +msgid "" +"Simulation run as user will deactivate locking (<literal>Debug::NoLocking</" +"literal>) automatical. Also a notice will be displayed indicating that this " +"is only a simulation, if the option <literal>APT::Get::Show-User-Simulation-" +"Note</literal> is set (Default: true) Neigther NoLocking nor the notice " +"will be triggered if run as root (root should know what he is doing without " +"further warnings by <literal>apt-get</literal>)." +msgstr "" +"Lorsque la simulation est effectuée par un utilisateur sans privilèges, le verrouillage (<literal>Debug::NoLocking</" +"literal>) sera désactivé automatiquement. Une mention explicite qu'il s'agit d'une simple simulation sera affichée si l'option <literal>" +"APT::Get::Show-User-Simulation-" +"Note</literal> est activée (elle est active par défaut). Ni la désactivation du verrou ni l'affichage de la mention de simulation ne seront " +"utilisées si la commande est lancée par l'utilisateur root (pour qui il n'est pas jugé utile qu'<literal>apt-get</literal> envoie de telles " +"notifications)." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:372 +#, 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)." +msgstr "" +"La simulation affiche une série de lignes représentant chacune une opération " +"de dpkg, Configure (Conf),Remove (Remv),Unpack (Inst). Les crochets " +"encadrent des paquets endommagés et des crochets n'encadrant rien indiquent " +"que les dommages n'ont aucune conséquence (rare)." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:379 +#, fuzzy +msgid "<option>-y</option>" +msgstr "<option>-y</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:379 +#, fuzzy +msgid "<option>--yes</option>" +msgstr "<option>--yes</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:380 +#, fuzzy +msgid "<option>--assume-yes</option>" +msgstr "<option>--assume-yes</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:381 +#, fuzzy +msgid "" +"Automatic yes to prompts; assume \"yes\" as answer to all prompts and run " +"non-interactively. If an undesirable situation, such as changing a held " +"package, trying to install a unauthenticated package or removing an " +"essential package occurs then <literal>apt-get</literal> will abort. " +"Configuration Item: <literal>APT::Get::Assume-Yes</literal>." +msgstr "" +"Répond automatiquement oui aux questions ; présume « oui » " +"comme réponse à toutes les questions et s'exécute de manière non " +"interactive. Dans le cas d'une situation indésirable, comme le changement " +"d'un paquet gelé, l'installation d'un paquet non authentifié ou la " +"suppression d'un paquet essentiel, <literal>apt-get</literal> s'interrompt. " +"Élément de configuration : <literal>APT::Get::Assume-Yes</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:388 +#, fuzzy +msgid "<option>-u</option>" +msgstr "<option>-u</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:388 +#, fuzzy +msgid "<option>--show-upgraded</option>" +msgstr "<option>--show-upgraded</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:389 +#, fuzzy +msgid "" +"Show upgraded packages; Print out a list of all packages that are to be " +"upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>." +msgstr "" +"Afficher les paquets mis à niveau ; affiche une liste de tous les " +"paquets à mettre à niveau. Élément de configuration : <literal>APT::" +"Get::Show-Upgraded</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:394 +#, fuzzy +msgid "<option>-V</option>" +msgstr "<option>-V</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:394 +#, fuzzy +msgid "<option>--verbose-versions</option>" +msgstr "<option>--verbose-versions</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:395 +#, fuzzy +msgid "" +"Show full versions for upgraded and installed packages. Configuration Item: " +"<literal>APT::Get::Show-Versions</literal>." +msgstr "" +"Afficher les versions complètes des paquets installés ou mis à niveau. " +"Élément de configuration : <literal>APT::Get::Show-Versions</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:399 +#, fuzzy +msgid "<option>-b</option>" +msgstr "<option>-b</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:399 +#, fuzzy +msgid "<option>--compile</option>" +msgstr "<option>--compile</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:400 +#, fuzzy +msgid "<option>--build</option>" +msgstr "<option>--build</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:401 +#, fuzzy +msgid "" +"Compile source packages after downloading them. Configuration Item: " +"<literal>APT::Get::Compile</literal>." +msgstr "" +"Cette commande compile un paquet source après l'avoir récupéré. Élément de " +"configuration : <literal>APT::Get::Compile</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:405 +#, fuzzy +msgid "<option>--install-recommends</option>" +msgstr "<option>--installed</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:406 +msgid "Also install recommended packages." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:410 +msgid "Do not install recommended packages." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:413 +#, fuzzy +msgid "<option>--ignore-hold</option>" +msgstr "<option>--ignore-hold</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:414 +#, fuzzy +msgid "" +"Ignore package Holds; This causes <command>apt-get</command> to ignore a " +"hold placed on a package. This may be useful in conjunction with " +"<literal>dist-upgrade</literal> to override a large number of undesired " +"holds. Configuration Item: <literal>APT::Ignore-Hold</literal>." +msgstr "" +"Cette commande ignore la marque « Hold » d'un paquet ; par ce " +"biais, <command>apt-get</command> ignore un « hold » placé sur un " +"paquet. cela peut être utile avec <literal>dist-upgrade</literal> pour " +"annuler un grand nombre de « hold » indésirables. Élément de " +"configuration : <literal>APT::Ignore-Hold</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:420 +#, fuzzy +msgid "<option>--no-upgrade</option>" +msgstr "<option>--no-upgrade</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:421 +#, 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>." +msgstr "" +"Aucune mise à niveau ; quand elle est utilisée avec <literal>install</" +"literal>, cette commande empêche les paquets listés sur la ligne de commande " +"d'être mis à niveau. Élément de configuration : <literal>APT::Get::" +"Upgrade</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:427 +#, fuzzy +msgid "<option>--force-yes</option>" +msgstr "<option>--force-yes</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:428 +#, fuzzy +msgid "" +"Force yes; This is a dangerous option that will cause apt to continue " +"without prompting if it is doing something potentially harmful. It should " +"not be used except in very special situations. Using <literal>force-yes</" +"literal> can potentially destroy your system! Configuration Item: " +"<literal>APT::Get::force-yes</literal>." +msgstr "" +"Forcer l'acceptation ; cette option est dangereuse parce qu'elle laisse " +"APT continuer sans poser de questions quand il réalise quelque chose de " +"potentiellement dommageable. Cette option ne doit être utilisée que dans des " +"circonstances très spéciales. Utiliser <literal>force-yes</literal> peut " +"détruire le système ! Élément de configuration : <literal>APT::" +"Get::force-yes</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:435 +#, fuzzy +msgid "<option>--print-uris</option>" +msgstr "<option>--print-uris</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:436 +#, fuzzy +msgid "" +"Instead of fetching the files to install their URIs are printed. Each URI " +"will have the path, the destination file name, the size and the expected md5 " +"hash. Note that the file name to write to will not always match the file " +"name on the remote site! This also works with the <literal>source</literal> " +"and <literal>update</literal> commands. When used with the <literal>update</" +"literal> command the MD5 and size are not included, and it is up to the user " +"to decompress any compressed files. Configuration Item: <literal>APT::Get::" +"Print-URIs</literal>." +msgstr "" +"Au lieu d'aller chercher les paquets à installer, leurs URI sont affichées. " +"Chaque URI a un chemin, un nom de fichier destination, une taille et une clé " +"md5 attendue. Notez que le nom de fichier à afficher ne correspond pas " +"toujours au nom de fichier sur le site distant ! Cette option " +"fonctionne aussi avec la commande <literal>source</literal> et avec la " +"commande <literal>update</literal>. Avec la commande <literal>update</" +"literal>, la somme MD5 et la taille ne sont pas données et c'est à " +"l'utilisateur de décompresser les fichiers compressés. Élément de " +"configuration : <literal>APT::Get::Print-URIs</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:446 +#, fuzzy +msgid "<option>--purge</option>" +msgstr "<option>--purge</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:447 +#, 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>." +msgstr "" +"Utiliser purge à la place de remove pour supprimer tout ce qui peut être " +"supprimé. Un astérisque (*) sera affiché près des paquets qui vont être " +"purgés. Élément de configuration : <literal>APT::Get::Purge</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:454 +#, fuzzy +msgid "<option>--reinstall</option>" +msgstr "<option>--reinstall</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:455 +#, fuzzy +msgid "" +"Re-Install packages that are already installed and at the newest version. " +"Configuration Item: <literal>APT::Get::ReInstall</literal>." +msgstr "" +"Réinstaller les paquets déjà installés avec leur version la plus récente. " +"Élément de configuration : <literal>APT::Get::ReInstall</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:459 +#, fuzzy +msgid "<option>--list-cleanup</option>" +msgstr "<option>--list-cleanup</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:460 +#, fuzzy +msgid "" +"This option defaults to on, use <literal>--no-list-cleanup</literal> to turn " +"it off. When on <command>apt-get</command> will automatically manage the " +"contents of <filename>&statedir;/lists</filename> to ensure that obsolete " +"files are erased. The only reason to turn it off is if you frequently " +"change your source list. Configuration Item: <literal>APT::Get::List-" +"Cleanup</literal>." +msgstr "" +"Cette option est activée par défaut ; utilisez <literal>--no-list-" +"cleanup</literal> pour la désactiver. Quand elle est activée, <command>apt-" +"get</command> gère automatiquement le contenu de <filename>&statedir;/lists</" +"filename> afin d'assurer que les fichiers obsolètes soient effacés. La seule " +"raison de la désactiver est une modification fréquente de votre liste de " +"sources. Élément de configuration : <literal>APT::Get::List-Cleanup</" +"literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:469 +#, fuzzy +msgid "<option>--target-release</option>" +msgstr "<option>--target-release</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:470 +#, fuzzy +msgid "<option>--default-release</option>" +msgstr "<option>--default-release</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:471 +#, fuzzy +msgid "" +"This option controls the default input to the policy engine, it creates a " +"default pin at priority 990 using the specified release string. This " +"overrides the general settings in <filename>/etc/apt/preferences</" +"filename>. Specifically pinned packages are not affected by the value of " +"this option. In short, this option lets you have simple control over which " +"distribution packages will be retrieved from. Some common examples might be " +"<option>-t '2.1*'</option>, <option>-t unstable</option> or <option>-t sid</" +"option>. Configuration Item: <literal>APT::Default-Release</literal>; see " +"also the &apt-preferences; manual page." +msgstr "" +"Cette option contrôle l'entrée par défaut pour les questions de " +"distribution ; une étiquette (pin) par défaut dont la priorité vaut 990 " +"est créé en utilisant la chaîne spécifiée. Le fichier des préférences peut " +"annuler cette décision. En clair, cette option permet de contrôler " +"simplement dans quelle distribution seront récupérés les paquets. Par " +"exemple : <option>-t '2.1*'</option> ou <option>-t unstable</option>. " +"Élément de configuration : <literal>APT::Default-Release</literal>. " +"Voyez aussi la page de manuel d'&apt-preferences;." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:484 +#, fuzzy +msgid "<option>--trivial-only</option>" +msgstr "<option>--trivial-only</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:486 +#, fuzzy +msgid "" +"Only perform operations that are 'trivial'. Logically this can be considered " +"related to <option>--assume-yes</option>, where <option>--assume-yes</" +"option> will answer yes to any prompt, <option>--trivial-only</option> will " +"answer no. Configuration Item: <literal>APT::Get::Trivial-Only</literal>." +msgstr "" +"Ne réalise que les opérations « triviales ». Logiquement ceci peut " +"être considéré comme relatif à <option>--assume-yes</option>. Alors que " +"<option>--assume-yes</option> répond oui à n'importe quelle question, " +"<option>--trivial-only</option> répond non. Élément de configuration : " +"<literal>APT::Get::Trivial-Only</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:492 +#, fuzzy +msgid "<option>--no-remove</option>" +msgstr "<option>--no-remove</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:493 +#, fuzzy +msgid "" +"If any packages are to be removed apt-get immediately aborts without " +"prompting. Configuration Item: <literal>APT::Get::Remove</literal>." +msgstr "" +"Quand des paquets doivent être supprimés, apt-get s'arrête immédiatement " +"sans poser de questions. Élément de configuration : <literal>APT::Get::" +"Remove</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:498 +#, fuzzy +msgid "<option>--auto-remove</option>" +msgstr "<option>--no-remove</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:499 +#, 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>." +msgstr "" +"Aucune mise à niveau ; quand elle est utilisée avec <literal>install</" +"literal>, cette commande empêche les paquets listés sur la ligne de commande " +"d'être mis à niveau. Élément de configuration : <literal>APT::Get::" +"Upgrade</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:505 +#, fuzzy +msgid "<option>--only-source</option>" +msgstr "<option>--only-source</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:506 +#, fuzzy +msgid "" +"Only has meaning for the <literal>source</literal> and <literal>build-dep</" +"literal> commands. Indicates that the given source names are not to be " +"mapped through the binary table. This means that if this option is " +"specified, these commands will only accept source package names as " +"arguments, rather than accepting binary package names and looking up the " +"corresponding source package. Configuration Item: <literal>APT::Get::Only-" +"Source</literal>." +msgstr "" +"Cette option n'a de sens qu'avec les commandes <literal>source</literal> et " +"<literal>build-dep</literal>. Elle indique que les noms de sources donnés ne " +"doivent pas être repérés à travers le tableau des binaires. Cela signifie " +"que si cette option est choisie, la commande <literal>source</literal> " +"acceptera seulement des noms de paquets source comme argument ; elle " +"n'acceptera pas de les rechercher à partir des noms de paquets binaires " +"correspondants. Élément de configuration : <literal>APT::Get::Only-" +"Source</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:516 +#, fuzzy +msgid "<option>--diff-only</option>" +msgstr "<option>--readonly</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:516 +#, fuzzy +msgid "<option>--dsc-only</option>" +msgstr "<option>--names-only</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:516 +#, fuzzy +msgid "<option>--tar-only</option>" +msgstr "<option>--trivial-only</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:517 +msgid "" +"Download only the diff, dsc, or tar file of a source archive. Configuration " +"Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" +"literal>, and <literal>APT::Get::Tar-Only</literal>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:522 +#, fuzzy +msgid "<option>--arch-only</option>" +msgstr "<option>--recon</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:523 +#, fuzzy +msgid "" +"Only process architecture-dependent build-dependencies. Configuration Item: " +"<literal>APT::Get::Arch-Only</literal>." +msgstr "" +"N'effectue une recherche que sur les noms de paquets et pas sur les " +"descriptions longues. Élément de configuration : <literal>APT::Cache::" +"NamesOnly</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:527 +#, fuzzy +msgid "<option>--allow-unauthenticated</option>" +msgstr "<option>--allow-unauthenticated</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:528 +#, 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::" +"AllowUnauthenticated</literal>." +msgstr "" +"Ignorer le fait que les paquets ne peuvent pas être authentifiés ; pas " +"d'interrogation de l'utilisateur. C'est très utile pour certains outils " +"comme pbuilder Élément de configuration : <literal>APT::Get::" +"AllowUnauthenticated</literal>." + +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:546 apt.conf.5.xml:825 +#, fuzzy +msgid "<filename>/etc/apt/apt.conf</filename>" +msgstr "<filename>/etc/apt/apt.conf</filename>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:547 +#, fuzzy +msgid "" +"APT configuration file. Configuration Item: <literal>Dir::Etc::Main</" +"literal>." +msgstr "" +"Fichier de configuration d'APT. Élément de configuration : " +"<literal>Dir::Etc::Main</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:551 +#, fuzzy +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> +#: apt-get.8.xml:552 +#, fuzzy +msgid "" +"APT configuration file fragments. Configuration Item: <literal>Dir::Etc::" +"Parts</literal>." +msgstr "" +"Éléments du fichier de configuration d'APT. Élément de configuration : " +"<literal>Dir::Etc::Parts</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:556 +#, fuzzy +msgid "<filename>/etc/apt/preferences</filename>" +msgstr "<filename>/etc/apt/preferences</filename>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:557 +#, fuzzy +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>." +msgstr "" +"Fichier des préférences. C'est dans ce fichier qu'on peut faire de " +"l'étiquetage (pinning) c'est-à-dire, choisir d'obtenir des paquets d'une " +"source distincte ou d'une distribution différente. Élément de " +"configuration : <literal>Dir::Etc::Preferences</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:565 +#, fuzzy +msgid "<filename>&cachedir;/archives/</filename>" +msgstr "<filename>&cachedir;/archives/</filename>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:566 +#, fuzzy +msgid "" +"Storage area for retrieved package files. Configuration Item: <literal>Dir::" +"Cache::Archives</literal>." +msgstr "" +"Zone de stockage pour les paquets récupérés. Élément de " +"configuration : <literal>Dir::Cache::Archives</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:570 +#, fuzzy +msgid "<filename>&cachedir;/archives/partial/</filename>" +msgstr "<filename>&cachedir;/archives/partial/</filename>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:571 +#, fuzzy +msgid "" +"Storage area for package files in transit. Configuration Item: " +"<literal>Dir::Cache::Archives</literal> (implicit partial)." +msgstr "" +"Zone de stockage pour les paquets en transit. Élément de " +"configuration : <literal>Dir::Cache::Archives</literal> (implicitement, " +"partial)." + +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:589 +#, fuzzy +msgid "" +"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " +"&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" +"preferences;, the APT Howto." +msgstr "" +"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " +"&apt-config;, le guide « APT users guide » dans &docdir;, &apt-" +"preferences;, le guide APT." + +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:595 +#, fuzzy +msgid "" +"<command>apt-get</command> returns zero on normal operation, decimal 100 on " +"error." +msgstr "" +"<command>apt-get</command> renvoie zéro après une opération normale, le " +"décimal 100 en cas d'erreur." + +#. type: Content of: <refentry><refsect1><title> +#: apt-get.8.xml:598 +#, fuzzy +msgid "ORIGINAL AUTHORS" +msgstr "ORIGINAL AUTHORS" + +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:599 +#, fuzzy +msgid "&apt-author.jgunthorpe;" +msgstr "&apt-author.jgunthorpe;" + +#. type: Content of: <refentry><refsect1><title> +#: apt-get.8.xml:602 +#, fuzzy +msgid "CURRENT AUTHORS" +msgstr "CURRENT AUTHORS" + +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:604 +#, fuzzy +msgid "&apt-author.team;" +msgstr "&apt-author.team;" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-key.8.xml:14 apt-key.8.xml:20 +#, fuzzy +msgid "apt-key" +msgstr "apt-key" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-key.8.xml:21 +#, fuzzy +msgid "APT key management utility" +msgstr "Utilitaire de gestion des clés" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-key.8.xml:27 +#, fuzzy +msgid "" +"<command>apt-key</command> <arg><replaceable>command</replaceable>/</arg> " +"<arg rep=\"repeat\"><option><replaceable>arguments</replaceable></option></" +"arg>" +msgstr "" +"<command>apt-key</command> <arg><replaceable>command</replaceable>/</arg> " +"<arg rep=\"repeat\"><option><replaceable>arguments</replaceable></option></" +"arg>" + +#. type: Content of: <refentry><refsect1><para> +#: apt-key.8.xml:35 +#, fuzzy +msgid "" +"<command>apt-key</command> is used to manage the list of keys used by apt to " +"authenticate packages. Packages which have been authenticated using these " +"keys will be considered trusted." +msgstr "" +"<command>apt-key</command> gère les clés dont se sert apt pour authentifier " +"les paquets. Les paquets authentifiés par ces clés seront réputés fiables." + +#. type: Content of: <refentry><refsect1><title> +#: apt-key.8.xml:41 +#, fuzzy +msgid "Commands" +msgstr "Commandes" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:43 +#, fuzzy +msgid "add <replaceable>filename</replaceable>" +msgstr "add <replaceable>fichier</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:47 +#, fuzzy +msgid "" +"Add a new key to the list of trusted keys. The key is read from " +"<replaceable>filename</replaceable>, or standard input if " +"<replaceable>filename</replaceable> is <literal>-</literal>." +msgstr "" +"Ajouter une clé à la liste des clés fiables. La clé est lue dans " +"<replaceable>fichier</replaceable>, ou sur l'entrée standard si " +"<replaceable>fichier</replaceable> est <literal>-</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:55 +#, fuzzy +msgid "del <replaceable>keyid</replaceable>" +msgstr "del <replaceable>keyid</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:59 +#, fuzzy +msgid "Remove a key from the list of trusted keys." +msgstr "Supprimer une clé de la liste des clés fiables." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:66 +#, fuzzy +msgid "export <replaceable>keyid</replaceable>" +msgstr "del <replaceable>keyid</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:70 +#, fuzzy +msgid "Output the key <replaceable>keyid</replaceable> to standard output." +msgstr "del <replaceable>keyid</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:77 +msgid "exportall" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:81 +msgid "Output all trusted keys to standard output." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:88 +#, fuzzy +msgid "list" +msgstr "list" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:92 +#, fuzzy +msgid "List trusted keys." +msgstr "Afficher la liste des clés fiables." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:99 +#, fuzzy +msgid "finger" +msgstr "file" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:103 +#, fuzzy +msgid "List fingerprints of trusted keys." +msgstr "Afficher la liste des clés fiables." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:110 +#, fuzzy +msgid "adv" +msgstr "add" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:114 +msgid "" +"Pass advanced options to gpg. With adv --recv-key you can download the " +"public key." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:126 +#, fuzzy +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 "" +"Mettre à jour le trousseau de clés local avec le trousseau de clés de " +"l'archive Debian et supprimer les clés qui sont périmées." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:139 +#, fuzzy +msgid "<filename>/etc/apt/trusted.gpg</filename>" +msgstr "<filename>/etc/apt/trusted.gpg</filename>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:140 +#, fuzzy +msgid "Keyring of local trusted keys, new keys will be added here." +msgstr "Trousseau de clés locales fiables, les nouvelles clés sont ajoutées ici." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:143 +#, fuzzy +msgid "<filename>/etc/apt/trustdb.gpg</filename>" +msgstr "<filename>/etc/apt/trustdb.gpg</filename>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:144 +#, fuzzy +msgid "Local trust database of archive keys." +msgstr "Base de données locale fiable des clés de l'archive." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:147 +#, fuzzy +msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>" +msgstr "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:148 +#, fuzzy +msgid "Keyring of Debian archive trusted keys." +msgstr "Trousseau des clés fiables de l'archive Debian." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:151 +#, fuzzy +msgid "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" +msgstr "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:152 +#, fuzzy +msgid "Keyring of Debian archive removed trusted keys." +msgstr "Trousseau des clés fiables supprimées de l'archive Debian." + +#. type: Content of: <refentry><refsect1><para> +#: apt-key.8.xml:163 +#, fuzzy +msgid "&apt-get;, &apt-secure;" +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>" +msgstr "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>29 " +"Février 2004</date>" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-mark.8.xml:22 apt-mark.8.xml:28 +#, fuzzy +msgid "apt-mark" +msgstr "apt-key" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-mark.8.xml:29 +msgid "mark/unmark a package as being automatically-installed" +msgstr "" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-mark.8.xml:35 +#, 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>" +msgstr "" +"<command>apt-sortpkgs</command> <arg><option>-hvs</option></arg> " +"<arg><option>-o=<replaceable>option de configuration</replaceable></option></" +"arg> <arg><option>-c=<replaceable>fichier</replaceable></option></arg> <arg " +"choice=\"plain\" rep=\"repeat\"><replaceable>fichier</replaceable></arg>" + +#. type: Content of: <refentry><refsect1><para> +#: apt-mark.8.xml:44 +msgid "" +"<command>apt-mark</command> will change whether a package has been marked as " +"being automatically installed." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-mark.8.xml:48 +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." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:55 +msgid "markauto" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:56 +msgid "" +"<literal>markauto</literal> is used to mark a package as being automatically " +"installed, which will cause the package to be removed when no more manually " +"installed packages depend on this package." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:63 +msgid "unmarkauto" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:64 +msgid "" +"<literal>unmarkauto</literal> is used to mark a package as being manually " +"installed, which will prevent the package from being automatically removed " +"if no other packages depend on it." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:76 +#, fuzzy +msgid "<option>-f=<filename>FILENAME</filename></option>" +msgstr "<option>--all-names</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:76 +#, fuzzy +msgid "<option>--file=<filename>FILENAME</filename></option>" +msgstr "<option>--default-release</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:79 +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>." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:85 +#, fuzzy +msgid "<option>-h</option>" +msgstr "<option>-p</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:86 +#, fuzzy +msgid "<option>--help</option>" +msgstr "<option>-p</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:87 +msgid "Show a short usage summary." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:93 +#, fuzzy +msgid "<option>-v</option>" +msgstr "<option>-p</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:94 +#, fuzzy +msgid "<option>--version</option>" +msgstr "<option>--all-versions</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:95 +msgid "Show the program version." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt-mark.8.xml:109 +#, fuzzy +msgid "" +"<command>apt-mark</command> returns zero on normal operation, non-zero on " +"error." +msgstr "" +"<command>apt-cache</command> retourne zéro après un déroulement normal, et " +"le nombre décimal 100 en cas d'erreur." + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-secure.8.xml:14 apt-secure.8.xml:35 +#, fuzzy +msgid "apt-secure" +msgstr "apt-secure" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-secure.8.xml:36 +#, fuzzy +msgid "Archive authentication support for APT" +msgstr "Certification d'archive avec APT" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:41 +#, fuzzy +msgid "" +"Starting with version 0.6, <command>apt</command> contains code that does " +"signature checking of the Release file for all archives. This ensures that " +"packages in the archive can't be modified by people who have no access to " +"the Release file signing key." +msgstr "" +"Depuis sa version 0.6, <command>apt</command> sait vérifier la signature du " +"fichier Release de chaque archive. On s'assure ainsi que les paquets de " +"cette archive ne peuvent pas être modifiés par quelqu'un qui ne possède pas " +"la clé de la signature du fichier Release." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:49 +#, fuzzy +msgid "" +"If a package comes from a archive without a signature or with a signature " +"that apt does not have a key for that package is considered untrusted and " +"installing it will result in a big warning. <command>apt-get</command> will " +"currently only warn for unsigned archives, future releases might force all " +"sources to be verified before downloading packages from them." +msgstr "" +"Quand un paquet provient d'une archive sans signature ou d'une archive avec " +"une signature dont apt ne possède pas la clé, ce paquet n'est pas considéré " +"comme fiable et son installation provoquera un avertissement. Pour " +"l'instant, <command>apt-get</command> ne signale que les archives sans " +"signature ; les prochaines versions pourraient rendre obligatoire la " +"vérification des sources avant tout téléchargement de paquet." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:58 +#, fuzzy +msgid "" +"The package frontends &apt-get;, &aptitude; and &synaptic; support this new " +"authentication feature." +msgstr "" +"Les paquets &apt-get;, &aptitude; et &synaptic; possèdent cette nouvelle " +"fonction de certification." + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml:63 +#, fuzzy +msgid "Trusted archives" +msgstr "Archives fiables" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:66 +#, 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." +msgstr "" +"D'une archive apt jusqu'à l'utilisateur, la confiance se construit en " +"plusieurs étapes. <command>Apt-secure</command> est la dernière étape. Faire " +"confiance à une archive ne signifie pas que les paquets qu'elle contient " +"sont exempts de code malveillant, mais signifie que vous faites confiance au " +"responsable de l'archive. C'est ensuite au responsable de l'archive de faire " +"en sorte que l'archive soit fiable." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:74 +#, fuzzy +msgid "" +"apt-secure does not review signatures at a package level. If you require " +"tools to do this you should look at <command>debsig-verify</command> and " +"<command>debsign</command> (provided in the debsig-verify and devscripts " +"packages respectively)." +msgstr "" +"<command>Apt-secure</command> n'examine pas la signature d'un paquet. " +"Certains programmes peuvent le faire comme <command>debsig-verify</command> " +"ou <command>debsign</command>, qu'on peut trouver dans les paquets debsig-" +"verify et devscripts." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:81 +#, fuzzy +msgid "" +"The chain of trust in Debian starts when a maintainer uploads a new package " +"or a new version of a package to the Debian archive. This upload in order to " +"become effective needs to be signed by a key of a maintainer within the " +"Debian maintainer's keyring (available in the debian-keyring package). " +"Maintainer's keys are signed by other maintainers following pre-established " +"procedures to ensure the identity of the key holder." +msgstr "" +"La fiabilisation dans Debian commence quand un responsable de paquet envoie " +"un nouveau paquet ou une nouvelle version d'un paquet dans l'archive. Cet " +"envoi, pour être effectif, doit être signé avec la clé d'un responsable qui " +"se trouve dans le trousseau des responsables Debian (disponible dans le " +"paquet debian-keyring). Les clés des responsables de paquet sont signées par " +"d'autres responsables, suivant des procédures préétablies pour s'assurer de " +"l'identité des propriétaires de la clé." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:91 +#, 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." +msgstr "" +"Une fois le paquet vérifié et archivé, la signature du responsable est " +"enlevée, une somme MD5 du paquet est calculée et mise dans le fichier " +"Packages. Une somme MD5 de tous les paquets est ensuite calculée et mise " +"dans le fichier Release. Ce fichier est signé par la clé de l'archive. Cette " +"clé qui est créée chaque année et distribuée par le serveur FTP se trouve " +"aussi dans le trousseau Debian." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:101 +#, fuzzy +msgid "" +"Any end user can check the signature of the Release file, extract the MD5 " +"sum of a package from it and compare it with the MD5 sum of the package he " +"downloaded. Prior to version 0.6 only the MD5 sum of the downloaded Debian " +"package was checked. Now both the MD5 sum and the signature of the Release " +"file are checked." +msgstr "" +"Un utilisateur peut consulter la signature du fichier Release, extraire la " +"somme MD5 d'un paquet et la comparer avec la somme du paquet qu'il a " +"téléchargé. Avant la version 0.6, seule la somme du paquet téléchargé était " +"vérifiée. Maintenant on peut vérifier aussi la signature du fichier Release." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:108 +#, fuzzy +msgid "" +"Notice that this is distinct from checking signatures on a per package " +"basis. It is designed to prevent two possible attacks:" +msgstr "" +"Cette façon de faire est différente d'une vérification de la signature d'un " +"paquet. Elle vise à empêcher deux types d'attaque possibles :" + +#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: apt-secure.8.xml:113 +#, fuzzy +msgid "" +"<literal>Network \"man in the middle\" attacks</literal>. Without signature " +"checking, a malicious agent can introduce himself in the package download " +"process and provide malicious software either by controlling a network " +"element (router, switch, etc.) or by redirecting traffic to a rogue server " +"(through arp or DNS spoofing attacks)." +msgstr "" +"L'attaque de type <quote>homme au milieu</quote>. Sans vérification de " +"signature, quelqu'un de malveillant peut s'introduire au milieu du processus " +"de téléchargement et insérer du code soit en contrôlant un élément du " +"réseau, routeur, commutateur, etc. soit en détournant le trafic vers un " +"serveur fourbe (par usurpation d'adresses)." + +#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: apt-secure.8.xml:121 +#, fuzzy +msgid "" +"<literal>Mirror network compromise</literal>. Without signature checking, a " +"malicious agent can compromise a mirror host and modify the files in it to " +"propagate malicious software to all users downloading packages from that " +"host." +msgstr "" +"L'attaque par compromission d'un miroir sur le réseau. Sans vérification de " +"signature, quelqu'un de malveillant peut compromettre un miroir et modifier " +"les fichiers. Ainsi tous ceux qui téléchargent les paquets de ce miroir " +"propagent du code malveillant." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:128 +#, fuzzy +msgid "" +"However, it does not defend against a compromise of the Debian master server " +"itself (which signs the packages) or against a compromise of the key used to " +"sign the Release files. In any case, this mechanism can complement a per-" +"package signature." +msgstr "" +"Cependant cette méthode ne garantit pas contre une compromission du serveur " +"Debian lui-même (qui signe les paquets) ni contre la compromission de la clé " +"qui sert à signer les fichiers Release. Mais elle peut compléter la " +"signature des paquets." + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml:134 +#, fuzzy +msgid "User configuration" +msgstr "Configuration" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:136 +#, fuzzy +msgid "" +"<command>apt-key</command> is the program that manages the list of keys used " +"by apt. It can be used to add or remove keys although an installation of " +"this release will automatically provide the default Debian archive signing " +"keys used in the Debian package repositories." +msgstr "" +"Le programme qui gère la liste des clés utilisées par apt s'appelle " +"<command>apt-key</command>. Il peut ajouter ou supprimer des clés. Cette " +"version installe automatiquement les clés qui servent à signer l'archive " +"Debian et les différents répertoires de paquets." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:143 +#, fuzzy +msgid "" +"In order to add a new key you need to first download it (you should make " +"sure you are using a trusted communication channel when retrieving it), add " +"it with <command>apt-key</command> and then run <command>apt-get update</" +"command> so that apt can download and verify the <filename>Release.gpg</" +"filename> files from the archives you have configured." +msgstr "" +"Pour ajouter une clé, vous devez d'abord la télécharger. Il vaut mieux " +"utiliser un canal fiable pour ce téléchargement. Ensuite vous l'ajoutez avec " +"la commande <command>apt-key</command> et vous lancez la commande " +"<command>apt-get update</command> pour télécharger et vérifier le fichier " +"<filename>Release.gpg</filename> de l'archive que vous avez configurée." + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml:152 +#, fuzzy +msgid "Archive configuration" +msgstr "Configuration d'une archive" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:154 +#, fuzzy +msgid "" +"If you want to provide archive signatures in an archive under your " +"maintenance you have to:" +msgstr "" +"Si vous voulez signer les archives dont vous avez la responsabilité, vous " +"devez :" + +#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: apt-secure.8.xml:159 +#, 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)." +msgstr "" +"créer un fichier Release à la racine de l'archive, s'il n'existe pas déjà. " +"Vous pouvez le créer avec la commande <command>apt-ftparchive release</" +"command> (fournie dans le paquet apt-utils) ;" + +#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: apt-secure.8.xml:164 +#, fuzzy +msgid "" +"<literal>Sign it</literal>. You can do this by running <command>gpg -abs -o " +"Release.gpg Release</command>." +msgstr "" +"le signer, avec la commande <command>gpg -abs -o Release.gpg Release</" +"command> ;" + +#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: apt-secure.8.xml:167 +#, 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." +msgstr "" +"publier l'empreinte de la clé. Ainsi les utilisateurs de votre archive " +"connaîtront la clé qu'ils doivent importer pour authentifier les fichiers de " +"l'archive." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:174 +#, fuzzy +msgid "" +"Whenever the contents of the archive changes (new packages are added or " +"removed) the archive maintainer has to follow the first two steps previously " +"outlined." +msgstr "" +"Chaque fois que le contenu de l'archive change, le responsable doit refaire " +"les deux premières étapes." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:182 +#, fuzzy +msgid "" +"&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " +"&debsign; &debsig-verify;, &gpg;" +msgstr "" +"&apt-conf;, &apt-get;,&sources-list;, &apt-key;, &apt-ftparchive;, " +"&debsign;, &debsig-verify;, &gpg;" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:186 +#, fuzzy +msgid "" +"For more background information you might want to review the <ulink url=" +"\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7.en.html" +"\">Debian Security Infrastructure</ulink> chapter of the Securing Debian " +"Manual (available also in the harden-doc package) and the <ulink url=" +"\"http://www.cryptnet.net/fdp/crypto/strong_distro.html\" >Strong " +"Distribution HOWTO</ulink> by V. Alex Brennen." +msgstr "" +"Pour des informations plus substantielles, vous pouvez consulter <ulink url=" +"\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7.en.html\"> " +"l'infrastructure debian pour la sécurité</ulink> un chapitre du manuel " +"Debian sur la sécurité (disponible dans le paquet harden-doc) et le <ulink " +"url=\"http://www.cryptnet.net/fdp/crypto/strong_distro.html\">Strong " +"Distribution HOWTO</ulink> par V. Alex Brennen." + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml:199 +#, fuzzy +msgid "Manpage Authors" +msgstr "Auteurs" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:201 +#, fuzzy +msgid "" +"This man-page is based on the work of Javier Fernández-Sanguino Peña, Isaac " +"Jones, Colin Walters, Florian Weimer and Michael Vogt." +msgstr "" +"Cette page a été écrite à partir des travaux de Javier Fernández-Sanguino " +"Peña, Isaac Jones, Colin Walters, Florian Weimer et Michael Vogt." + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-sortpkgs.1.xml:22 apt-sortpkgs.1.xml:28 +#, fuzzy +msgid "apt-sortpkgs" +msgstr "apt-sortpkgs" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-sortpkgs.1.xml:29 +#, fuzzy +msgid "Utility to sort package index files" +msgstr "Un outil pour trier les index de paquets." + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-sortpkgs.1.xml:35 +#, fuzzy +msgid "" +"<command>apt-sortpkgs</command> <arg><option>-hvs</option></arg> " +"<arg><option>-o=<replaceable>config string</replaceable></option></arg> " +"<arg><option>-c=<replaceable>file</replaceable></option></arg> <arg choice=" +"\"plain\" rep=\"repeat\"><replaceable>file</replaceable></arg>" +msgstr "" +"<command>apt-sortpkgs</command> <arg><option>-hvs</option></arg> " +"<arg><option>-o=<replaceable>option de configuration</replaceable></option></" +"arg> <arg><option>-c=<replaceable>fichier</replaceable></option></arg> <arg " +"choice=\"plain\" rep=\"repeat\"><replaceable>fichier</replaceable></arg>" + +#. type: Content of: <refentry><refsect1><para> +#: apt-sortpkgs.1.xml:44 +#, fuzzy +msgid "" +"<command>apt-sortpkgs</command> will take an index file (Source index or " +"Package index) and sort the records so that they are ordered by the package " +"name. It will also sort the internal fields of each record according to the " +"internal sorting rules." +msgstr "" +"<command>Apt-sortpkgs</command> prend un index (un index de Source ou un " +"index de paquet) et trie leurs enregistrements selon le nom de paquet. Un " +"tri des champs de chaque enregistrement est réalisé selon des règles " +"internes." + +#. type: Content of: <refentry><refsect1><para> +#: apt-sortpkgs.1.xml:50 +#, fuzzy +msgid "All output is sent to stdout, the input must be a seekable file." +msgstr "" +"Le résultat est envoyé sur la sortie standard ; l'entrée doit être un " +"fichier analysable." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-sortpkgs.1.xml:57 +#, fuzzy +msgid "<option>--source</option>" +msgstr "<option>--source</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-sortpkgs.1.xml:59 +#, fuzzy +msgid "" +"Use Source index field ordering. Configuration Item: <literal>APT::" +"SortPkgs::Source</literal>." +msgstr "" +"Se servir d'un index de sources pour le tri des champs. Élément de " +"configuration : <literal>APT::SortPkgs::Source</literal>." + +#. type: Content of: <refentry><refsect1><para> +#: apt-sortpkgs.1.xml:73 +#, fuzzy +msgid "" +"<command>apt-sortpkgs</command> returns zero on normal operation, decimal " +"100 on error." +msgstr "" +"<command>apt-sortpkgs</command> retourne zéro si tout se passe bien ou 100 " +"en cas d'erreur." + +#. 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>" +msgstr "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>11 " +"juillet 2008</date>" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt.conf.5.xml:28 apt.conf.5.xml:34 +#, fuzzy +msgid "apt.conf" +msgstr "apt.conf" + +#. type: Content of: <refentry><refmeta><manvolnum> +#: apt.conf.5.xml:29 apt_preferences.5.xml:22 sources.list.5.xml:23 +#, fuzzy +msgid "5" +msgstr "5" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt.conf.5.xml:35 +#, fuzzy +msgid "Configuration file for APT" +msgstr "Fichier de configuration pour APT" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:39 +#, fuzzy +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 "" +"Le fichier <filename>apt.conf</filename> est le principal fichier de " +"configuration de la collection d'outils que constitue APT ; tous les " +"outils font appel à ce fichier de configuration et utilisent un analyseur " +"syntaxique en ligne de commande commun afin de fournir un environnement " +"uniforme. Quand un outil d'APT démarre, il lit la configuration désignée par " +"variable d'environnement <envar>APT_CONFIG</envar> (si elle existe), puis il " +"lit les fichiers situés dans <literal>Dir::Etc::Parts</literal> ainsi que le " +"principal fichier de configuration indiqué par <literal>Dir::Etc::main</" +"literal> ; enfin il applique les options de la ligne de commande qui " +"prévalent sur les directives de configuration, chargeant si nécessaire " +"d'autres fichiers de configuration." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:49 +#, 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." +msgstr "" +"Le fichier de configuration est construit comme un arbre d'options " +"organisées en groupes fonctionnels. On se sert du double deux points " +"(« :: ») pour indiquer une option ; par exemple, " +"<literal>APT::Get::Assume-Yes</literal> est une option pour le groupe " +"d'outils APT, destinée à l'outil Get. Il n'y a pas d'héritage des options " +"des groupes parents." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:55 +#, 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:" +msgstr "" +"Syntaxiquement, le langage de configuration est conçu sur le même modèle que " +"les langages utilisés par des outils ISC tels que bind et dhcp. Une ligne " +"qui commence par <literal>//</literal> est traitée comme un commentaire et " +"ignorée, de même que les sections de texte placées entre <literal>/*</" +"literal> et <literal>*/</literal>, tout comme les commentaires C/C++. " +"Chaque ligne est de la forme : <literal>APT::Get::Assume-Yes \"true\";</" +"literal> Le point-virgule final est obligatoire et les guillemets sont " +"optionnels. On peut déclarer un nouveau champ d'action avec des accolades, " +"comme suit :" + +#. type: Content of: <refentry><refsect1><informalexample><programlisting> +#: apt.conf.5.xml:65 +#, fuzzy, no-wrap +msgid "" +"APT {\n" +" Get {\n" +" Assume-Yes \"true\";\n" +" Fix-Broken \"true\";\n" +" };\n" +"};\n" +msgstr "" +"APT {\n" +" Get {\n" +" Assume-Yes \"true\";\n" +" Fix-Broken \"true\";\n" +" };\n" +"};\n" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:73 +#, fuzzy +msgid "" +"with newlines placed to make it more readable. Lists can be created by " +"opening a scope and including a single string enclosed in quotes followed by " +"a semicolon. Multiple entries can be included, each separated by a semicolon." +msgstr "" +"avec des retours à la ligne pour faciliter la lecture. On peut créer une " +"liste en ouvrant un champ d'action et en y insérant une chaîne entre " +"guillemets suivie d'un point virgule pour chaque élément de la liste." + +#. type: Content of: <refentry><refsect1><informalexample><programlisting> +#: apt.conf.5.xml:78 +#, fuzzy, no-wrap +msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" +msgstr "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:81 +#, fuzzy +msgid "" +"In general the sample configuration file in <filename>&docdir;examples/apt." +"conf</filename> &configureindex; is a good guide for how it should look." +msgstr "" +"Les modèles <filename>&docdir;examples/apt.conf</filename> et " +"&configureindex; montrent à quoi devrait ressembler le fichier de " +"configuration." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:85 +#, fuzzy +msgid "" +"The names of the configuration items are not case-sensitive. So in the " +"previous example you could use <literal>dpkg::pre-install-pkgs</literal>." +msgstr "" +"Les identifiants des options de configuration ne sont pas sensibles à la " +"casse. Dans l'exemple précédent, on pourrait donc aussi bien utiliser " +"<literal>dpkg::pre-install-pkgs</literal>." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:88 +#, 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." +msgstr "" +"Deux éléments spéciaux sont autorisés : <literal>#include</literal> et " +"<literal>#clear</literal>. <literal>#include</literal> inclut le fichier " +"donné en argument, à moins que le nom ne se termine par une barre oblique " +"auquel cas le répertoire entier est inclus. <literal>#clear</literal> sert à " +"effacer une partie de l'arbre de configuration. L'élément désigné et tout " +"ses descendants sont supprimés." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:94 +#, 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." +msgstr "" +"Tous les outils d'APT possèdent une option <option>-o</option> qui permet de " +"spécifier une configuration arbitraire depuis la ligne de commande. La " +"syntaxe consiste en un nom complet d'option (par exemple <literal>APT::Get::" +"Assume-Yes</literal>) suivi par un signe égal, puis par la nouvelle valeur " +"de l'option. On peut compléter une liste en ajoutant un « :: » au " +"nom de la liste." + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:101 +#, fuzzy +msgid "The APT Group" +msgstr "Le groupe APT" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:102 +#, fuzzy +msgid "" +"This group of options controls general APT behavior as well as holding the " +"options for all of the tools." +msgstr "" +"Ce groupe d'options contrôle le comportement global d'APT et contient " +"également des options communes à tous les outils." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:106 +#, fuzzy +msgid "Architecture" +msgstr "Architecture" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:107 +#, fuzzy +msgid "" +"System Architecture; sets the architecture to use when fetching files and " +"parsing package lists. The internal default is the architecture apt was " +"compiled for." +msgstr "" +"L'architecture du système ; cette option positionne l'architecture à " +"utiliser pour récupérer des fichiers et analyser des listes de paquets. La " +"valeur interne par défaut est l'architecture pour laquelle APT a été compilé." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:112 +#, fuzzy +msgid "Default-Release" +msgstr "Default-Release" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:113 +#, 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;." +msgstr "" +"Indique la distribution à utiliser par défaut lors de l'installation d'un " +"paquet si plusieurs versions sont disponibles. La valeur peut être un nom de " +"distribution ou un numéro de version. Exemples : « stable », " +"« testing », « 4.0 », « 5.0* ». Les noms de codes " +"des distributions (« etch », « lenny », etc.) ne sont pas " +"permis pour l'instant. Voir aussi &apt-preferences;." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:117 +#, fuzzy +msgid "Ignore-Hold" +msgstr "Ignore-Hold" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:118 +#, fuzzy +msgid "" +"Ignore Held packages; This global option causes the problem resolver to " +"ignore held packages in its decision making." +msgstr "" +"Ignore les paquets « gelés » ; cette option globale indique au " +"système de résolution de ne pas tenir compte des paquets « gelés » " +"dans sa prise de décision." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:122 +#, fuzzy +msgid "Clean-Installed" +msgstr "Clean-Installed" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:123 +#, fuzzy +msgid "" +"Defaults to on. When turned on the autoclean feature will remove any " +"packages which can no longer be downloaded from the cache. If turned off " +"then packages that are locally installed are also excluded from cleaning - " +"but note that APT provides no direct means to reinstall them." +msgstr "" +"Avec cette option qui est activée par défaut, la fonctionnalité « " +"autoclean » supprime du cache tout paquet qui ne peut plus être " +"récupéré. Quand cette option est désactivée, les paquets qui sont installés " +"localement sont aussi exclus du nettoyage - mais notez que APT ne fournit " +"aucun moyen direct pour les réinstaller." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:129 +#, fuzzy +msgid "Immediate-Configure" +msgstr "Immediate-Configure" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:130 +#, fuzzy +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 "" +"Désactive la configuration immédiate ; cette dangereuse option " +"désactive une partie du code de mise en ordre de APT pour que ce dernier " +"effectue le moins d'appels possible à &dpkg;. Ça peut être nécessaire sur " +"des systèmes à un seul utilisateur extrêmement lents, mais cette option est " +"très dangereuse et peut faire échouer les scripts d'installation, voire " +"pire. Utilisez-la à vos risques et périls." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:137 +#, fuzzy +msgid "Force-LoopBreak" +msgstr "Force-LoopBreak" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:138 +#, fuzzy +msgid "" +"Never Enable this option unless you -really- know what you are doing. It " +"permits APT to temporarily remove an essential package to break a Conflicts/" +"Conflicts or Conflicts/Pre-Depend loop between two essential packages. SUCH " +"A LOOP SHOULD NEVER EXIST AND IS A GRAVE BUG. This option will work if the " +"essential packages are not tar, gzip, libc, dpkg, bash or anything that " +"those packages depend on." +msgstr "" +"Ne jamais activer cette option à moins que vous ne sachiez - réellement - ce " +"que vous faites. Elle autorise APT à supprimer temporairement un paquet " +"essentiel pour mettre fin à une boucle Conflicts / Conflicts ou Conflicts / " +"Pre-Depends entre deux paquets essentiels. UNE TELLE BOUCLE NE DOIT JAMAIS " +"SE PRODUIRE : C'EST UN BOGUE SÉRIEUX. Cette option fonctionne si les " +"paquets essentiels ne sont pas tar, gzip, libc, dpkg, bash ou tous les " +"paquets dont ces paquets dépendent." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:146 +#, fuzzy +msgid "Cache-Limit" +msgstr "Cache-Limit" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:147 +#, fuzzy +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 utilise un fichier de cache chargé en mémoire avec mmap pour ranger les " +"informations sur les paquets disponibles. Cette option fixe la taille " +"mémoire allouée pour le chargement de ce cache." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:151 +#, fuzzy +msgid "Build-Essential" +msgstr "Build-Essential" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:152 +#, fuzzy +msgid "Defines which package(s) are considered essential build dependencies." +msgstr "" +"Cette option définit les paquets qui sont considérés comme faisant partie " +"des dépendances essentielles pour la construction de paquets." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:155 +#, fuzzy +msgid "Get" +msgstr "Get" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:156 +#, fuzzy +msgid "" +"The Get subsection controls the &apt-get; tool, please see its documentation " +"for more information about the options here." +msgstr "" +"La sous-section <literal>Get</literal> contrôle l'outil &apt-get;, veuillez " +"consulter sa documentation pour avoir plus d'informations sur les options en " +"question." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:160 +#, fuzzy +msgid "Cache" +msgstr "Cache" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:161 +#, fuzzy +msgid "" +"The Cache subsection controls the &apt-cache; tool, please see its " +"documentation for more information about the options here." +msgstr "" +"La sous-section <literal>Cache</literal> contrôle l'outil &apt-cache;, " +"veuillez consulter sa documentation pour avoir plus d'informations sur les " +"options en question." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:165 +#, fuzzy +msgid "CDROM" +msgstr "CDROM" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:166 +#, fuzzy +msgid "" +"The CDROM subsection controls the &apt-cdrom; tool, please see its " +"documentation for more information about the options here." +msgstr "" +"La sous-section <literal>CDROM</literal> contrôle l'outil &apt-cdrom;, " +"veuillez consulter sa documentation pour avoir plus d'informations sur les " +"options en question." + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:172 +#, fuzzy +msgid "The Acquire Group" +msgstr "Le groupe Acquire" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:177 +#, fuzzy +msgid "PDiffs" +msgstr "PDiffs" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:178 +#, fuzzy +msgid "" +"Try to download deltas called <literal>PDiffs</literal> for Packages or " +"Sources files instead of downloading whole ones. True by default." +msgstr "" +"Essayer de télécharger les fichiers différentiels appelés <literal>PDiffs</" +"literal> pour les paquets ou les fichiers sources, plutôt que de les " +"télécharger entièrement. Par défaut à « true »." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:183 +#, fuzzy +msgid "Queue-Mode" +msgstr "Queue-Mode" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:184 +#, fuzzy +msgid "" +"Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" +"literal> or <literal>access</literal> which determines how APT parallelizes " +"outgoing connections. <literal>host</literal> means that one connection per " +"target host will be opened, <literal>access</literal> means that one " +"connection per URI type will be opened." +msgstr "" +"Le mode de file d'attente ; <literal>Queue-Mode</literal> peut prendre " +"les valeurs <literal>host</literal> ou <literal>access</literal> et cela " +"détermine comment APT parallélise les connexions sortantes. <literal>Host</" +"literal> signifie qu'une connexion par cible sera initiée, tandis que " +"<literal>access</literal> signifie qu'une connexion par type d'URI sera " +"initiée." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:191 +#, fuzzy +msgid "Retries" +msgstr "Retries" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:192 +#, fuzzy +msgid "" +"Number of retries to perform. If this is non-zero APT will retry failed " +"files the given number of times." +msgstr "" +"Nombre d'essais à effectuer. Si ce nombre n'est pas nul, APT essaie de " +"récupérer, le nombre donné de fois, les fichiers dont la récupération a " +"échoué." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:196 +#, fuzzy +msgid "Source-Symlinks" +msgstr "Source-Symlinks" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:197 +#, fuzzy +msgid "" +"Use symlinks for source archives. If set to true then source archives will " +"be symlinked when possible instead of copying. True is the default." +msgstr "" +"Utilise des liens symboliques pour les archives de sources. Positionnée à " +"« true », cette option crée si possible des liens symboliques vers " +"les archives de sources au lieu de les copier. Par défaut à « " +"true »." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:201 sources.list.5.xml:138 +#, fuzzy +msgid "http" +msgstr "http" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:202 +#, 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." +msgstr "" +"URI HTTP ; http::Proxy est le mandataire (proxy) HTTP à utiliser par " +"défaut. Il se présente sous la forme standard : <literal>http://[[user]" +"[:pass]@]host[:port]/</literal>. On peut spécifier un mandataire particulier " +"par hôte distant en utilisant la syntaxe : <literal>http::Proxy::<" +"hôte></literal>. Le mot-clé spécial <literal>DIRECT</literal> indique " +"alors de n'utiliser aucun mandataire pour l'hôte. Lorsqu'elle est définie, " +"la variable d'environnement <envar>http_proxy</envar> annule et remplace " +"toutes les options de mandataire HTTP." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:209 +#, fuzzy +msgid "" +"Three settings are provided for cache control with HTTP/1.1 compliant proxy " +"caches. <literal>No-Cache</literal> tells the proxy to not use its cached " +"response under any circumstances, <literal>Max-Age</literal> is sent only " +"for index files and tells the cache to refresh its object if it is older " +"than the given number of seconds. Debian updates its index files daily so " +"the default is 1 day. <literal>No-Store</literal> specifies that the cache " +"should never store this request, it is only set for archive files. This may " +"be useful to prevent polluting a proxy cache with very large .deb files. " +"Note: Squid 2.0.2 does not support any of these options." +msgstr "" +"Trois options de configuration sont fournies pour le contrôle des caches " +"compatibles avec HTTP/1.1. <literal>No-Cache</literal> signifie que le " +"mandataire ne doit jamais utiliser les réponses qu'il a stockées ; " +"<literal>Max-Age</literal> sert uniquement pour les fichiers d'index : " +"cela demande au cache de les mettre à jour quand leur ancienneté est " +"supérieure au nombre de secondes donné. Debian met à jour ses fichiers " +"d'index de manière quotidienne ; la valeur par défaut est donc de 1 " +"jour. <literal>No-Store</literal> sert uniquement pour les fichiers " +"d'archive  et demande au cache de ne jamais garder la requête. Cela " +"peut éviter de polluer un cache mandataire avec des fichiers .deb très " +"grands. Note : Squid 2.0.2 ne prend en compte aucune de ces options." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:219 apt.conf.5.xml:267 +#, fuzzy +msgid "" +"The option <literal>timeout</literal> sets the timeout timer used by the " +"method, this applies to all things including connection timeout and data " +"timeout." +msgstr "" +"#-#-#-#-# apt.conf.fr.5.xml:278 #-#-#-#-#\n" +"L'option <literal>timeout</literal> positionne le compteur de temps mort " +"(timeout) utilisé par la méthode. Cela vaut pour tout, connexion et " +"données.\n" +"#-#-#-#-# apt.conf.fr.5.xml:336 #-#-#-#-#\n" +"L'option <literal>timeout</literal> positionne le compteur de temps mort " +"(timeout) utilisé par la méthode. Cela vaut pour tout, connexion et données." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:222 +#, 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." +msgstr "" +"Une option de configuration est fournie pour contrôler la profondeur du tube " +"pour le cas où un serveur distant n'est pas conforme à la RFC ou est bogué " +"(comme Squid 2.0.2). <literal>Acquire::http::Pipeline-Depth </literal> a une " +"valeur comprise entre 0 et 5 : elle indique le nombre de requêtes en " +"attente qui peuvent être émises. Quand la machine distante ne conserve pas " +"correctement les connexions TCP, on DOIT donner une valeur égale à 0 -- " +"sinon des données seront corrompues. Les machines qui ont besoin de cette " +"option ne respectent pas la RFC 2068." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:231 +#, fuzzy +msgid "https" +msgstr "https" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:232 +#, 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." +msgstr "" +"URI HTTPS. Les options de contrôle de cache et de mandataire (proxy) sont " +"les mêmes que pour la méthode <literal>http</literal>. L'option " +"<literal>Pipeline-Depth</literal> n'est pas encore supportée." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:236 +#, fuzzy +msgid "" +"<literal>CaInfo</literal> suboption specifies place of file that holds info " +"about trusted certificates. <literal><host>::CaInfo</literal> is " +"corresponding per-host option. <literal>Verify-Peer</literal> boolean " +"suboption determines whether verify server's host certificate against " +"trusted certificates or not. <literal><host>::Verify-Peer</literal> " +"is corresponding per-host option. <literal>Verify-Host</literal> boolean " +"suboption determines whether verify server's hostname or not. <literal><" +"host>::Verify-Host</literal> is corresponding per-host option. " +"<literal>SslCert</literal> determines what certificate to use for client " +"authentication. <literal><host>::SslCert</literal> is corresponding " +"per-host option. <literal>SslKey</literal> determines what private key to " +"use for client authentication. <literal><host>::SslKey</literal> is " +"corresponding per-host option. <literal>SslForceVersion</literal> overrides " +"default SSL version to use. Can contain 'TLSv1' or 'SSLv3' string. " +"<literal><host>::SslForceVersion</literal> is corresponding per-host " +"option." +msgstr "" +"La sous-option <literal>CaInfo</literal> spécifie le fichier contenant les " +"informations sur les certificats de confiance. La sous-option booléenne " +"<literal>Verify-Peer</literal> précise si le certificat d'hôte du serveur " +"doit être confronté aux certificats de confiance ou pas. La sous-option " +"booléenne <literal>Verify-Host</literal> précise s'il faut vérifier ou pas " +"le nom d'hôte du serveur. <literal>SslCert</literal> détermine le certificat " +"à utiliser pour l'authentification du client. <literal>SslKey</literal> " +"détermine quelle clef privée doit être utilisée pour l'authentification du " +"client. <literal>SslForceVersion</literal> surcharge la valeur par défaut " +"pour la version de SSL à utiliser et peut contenir l'une des chaînes 'TLSv1' " +"ou 'SSLv3'." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:254 sources.list.5.xml:149 +#, fuzzy +msgid "ftp" +msgstr "ftp" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:255 +#, 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." +msgstr "" +"URI FTP ; ftp::Proxy est le mandataire (proxy) FTP à utiliser par " +"défaut. Il se présente sous la forme standard : <literal>ftp://[[user]" +"[:pass]@]host[:port]/</literal>. On peut spécifier un mandataire particulier " +"par hôte distant en utilisant la syntaxe : <literal>ftp::Proxy::<" +"hôte></literal>. Le mot-clé spécial <literal>DIRECT</literal> indique " +"alors de n'utiliser aucun mandataire pour l'hôte. Lorsqu'elle est définie, " +"la variable d'environnement <envar>ftp_proxy</envar> annule et replace " +"toutes les options de mandataire FTP. Pour utiliser un mandataire FTP, vous " +"devrez renseigner l'entrée <literal>ftp::ProxyLogin</literal> dans le " +"fichier de configuration. Cette entrée spécifie les commandes à envoyer au " +"mandataire pour lui préciser à quoi il doit se connecter. Voyez " +"&configureindex; pour savoir comment faire. Les variables de substitution " +"disponibles sont : <literal>$(PROXY_USER)</literal>, <literal>" +"$(PROXY_PASS)</literal>, <literal>$(SITE_USER)</literal>, <literal>" +"$(SITE_PASS)</literal>, <literal>$(SITE)</literal> et <literal>$(SITE_PORT)</" +"literal>. Chacune correspond à l'élément respectif de l'URI." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:270 +#, fuzzy +msgid "" +"Several settings are provided to control passive mode. Generally it is safe " +"to leave passive mode on, it works in nearly every environment. However " +"some situations require that passive mode be disabled and port mode ftp used " +"instead. This can be done globally, for connections that go through a proxy " +"or for a specific host (See the sample config file for examples)." +msgstr "" +"Plusieurs options de configuration sont fournies pour contrôler le mode " +"passif. Il est généralement plus sûr d'activer le mode passif et cela marche " +"dans presque tous les environnements. Cependant, certaines situations " +"nécessitent que le mode passif soit désactivé et que le mode « " +"port » de ftp soit utilisé à la place. On peut le faire globalement, " +"pour des connexions qui passent par un mandataire ou pour une machine " +"spécifique (examinez le modèle de fichier de configuration)." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:277 +#, fuzzy +msgid "" +"It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" +"envar> environment variable to a http url - see the discussion of the http " +"method above for syntax. You cannot set this in the configuration file and " +"it is not recommended to use FTP over HTTP due to its low efficiency." +msgstr "" +"Il est possible de faire transiter le trafic FTP par un mandataire HTTP en " +"positionnant la variable d'environnement <envar>ftp_proxy</envar> à une URL " +"HTTP -- consultez la méthode http ci-dessus pour la syntaxe. On ne peut pas " +"le faire dans le fichier de configuration et il n'est de toute façon pas " +"recommandé d'utiliser FTP au travers de HTTP en raison la faible efficacité " +"de cette méthode." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:282 +#, fuzzy +msgid "" +"The setting <literal>ForceExtended</literal> controls the use of RFC2428 " +"<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " +"false, which means these commands are only used if the control connection is " +"IPv6. Setting this to true forces their use even on IPv4 connections. Note " +"that most FTP servers do not support RFC2428." +msgstr "" +"L'option <literal>ForceExtended</literal> contrôle l'utilisation des " +"commandes liées à la RFC 2428, <literal>EPSV</literal> et <literal>EPRT</" +"literal>. Par défaut, elle vaut « false » ce qui signifie que ces " +"commandes ne sont utilisées que pour une connexion de type IPv6. Quand elle " +"vaut « true », on les utilise même si la connexion est de type " +"IPv4. La plupart des serveurs FTP ne suivent pas la RFC 2428." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:289 sources.list.5.xml:131 +#, fuzzy +msgid "cdrom" +msgstr "cdrom" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> +#: apt.conf.5.xml:295 +#, fuzzy, no-wrap +msgid "\"/cdrom/\"::Mount \"foo\";" +msgstr "\"/cdrom/\"::Mount \"foo\";" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:290 +#, fuzzy +msgid "" +"CDROM URIs; the only setting for CDROM URIs is the mount point, " +"<literal>cdrom::Mount</literal> which must be the mount point for the CDROM " +"drive as specified in <filename>/etc/fstab</filename>. It is possible to " +"provide alternate mount and unmount commands if your mount point cannot be " +"listed in the fstab (such as an SMB mount and old mount packages). The " +"syntax is to put <placeholder type=\"literallayout\" id=\"0\"/> within the " +"cdrom block. It is important to have the trailing slash. Unmount commands " +"can be specified using UMount." +msgstr "" +"URI cédérom ; la seule option de configuration pour les URI de cédérom " +"est le point de montage : <literal>cdrom::Mount</literal> ; il " +"doit représenter le point de montage du lecteur de cédérom indiqué dans " +"<filename>/etc/fstab</filename>. On peut fournir d'autres commandes de " +"montage et de démontage quand le point de montage ne peut être listé dans le " +"fichier <filename>/etc/fstab</filename> (par exemple, un montage SMB). " +"Syntaxiquement, il faut placer <placeholder type=\"literallayout\" id=\"0\"/" +"> dans le bloc cdrom. La barre oblique finale est importante. Les commandes " +"de démontage peuvent être spécifiées en utilisant <literal>UMount</literal>." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:300 +#, fuzzy +msgid "gpgv" +msgstr "gpgv" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:301 +#, fuzzy +msgid "" +"GPGV URIs; the only option for GPGV URIs is the option to pass additional " +"parameters to gpgv. <literal>gpgv::Options</literal> Additional options " +"passed to gpgv." +msgstr "" +"URI GPGV ; la seule option pour les URI GPGV est celle qui permet de " +"passer des paramètres à gpgv. <literal>gpgv::Options</literal> : " +"options supplémentaires passées à gpgv." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:173 +#, fuzzy +msgid "" +"The <literal>Acquire</literal> group of options controls the download of " +"packages and the URI handlers. <placeholder type=\"variablelist\" id=\"0\"/>" +msgstr "" +"Le groupe d'options <literal>Acquire</literal> contrôle le téléchargement " +"des paquets et les gestionnaires d'URI. <placeholder type=\"variablelist\" " +"id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:310 +#, fuzzy +msgid "Directories" +msgstr "Les répertoires" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:312 +#, fuzzy +msgid "" +"The <literal>Dir::State</literal> section has directories that pertain to " +"local state information. <literal>lists</literal> is the directory to place " +"downloaded package lists in and <literal>status</literal> is the name of the " +"dpkg status file. <literal>preferences</literal> is the name of the APT " +"preferences file. <literal>Dir::State</literal> contains the default " +"directory to prefix on all sub items if they do not start with <filename>/</" +"filename> or <filename>./</filename>." +msgstr "" +"Les répertoires de la section <literal>Dir::State</literal> concernent le " +"système local. <literal>lists</literal> est le répertoire où placer les " +"listes de paquets téléchargés et <literal>status</literal> est le nom du " +"fichier d'état de &dpkg;. <literal>preferences</literal> concerne " +"APT : c'est le nom du fichier des préférences. <literal>Dir::State</" +"literal> contient le répertoire par défaut préfixé à tous les sous-éléments, " +"quand ceux-ci ne commencent pas par <filename>/</filename> ou <filename>./</" +"filename>." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:319 +#, fuzzy +msgid "" +"<literal>Dir::Cache</literal> contains locations pertaining to local cache " +"information, such as the two package caches <literal>srcpkgcache</literal> " +"and <literal>pkgcache</literal> as well as the location to place downloaded " +"archives, <literal>Dir::Cache::archives</literal>. Generation of caches can " +"be turned off by setting their names to be blank. This will slow down " +"startup but save disk space. It is probably preferred to turn off the " +"pkgcache rather than the srcpkgcache. Like <literal>Dir::State</literal> the " +"default directory is contained in <literal>Dir::Cache</literal>" +msgstr "" +"<literal>Dir::Cache</literal> contient les emplacements qui renseignent sur " +"le cache local : par exemple, les deux caches de paquets " +"<literal>srcpkgcache</literal> et <literal>pkgcache</literal>, et aussi " +"l'endroit où sont placées les archives téléchargées, <literal>Dir::Cache::" +"archives</literal>. On peut empêcher la création des caches en saisissant un " +"nom vide. Cela ralentit le démarrage mais sauve de l'espace disque. Il vaut " +"mieux se passer du cache <literal>pkgcache</literal> plutôt que se passer du " +"cache <literal>srcpkgcache</literal>. Comme pour <literal>Dir::State</" +"literal>, le répertoire par défaut est contenu dans <literal>Dir::Cache</" +"literal>." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:328 +#, fuzzy +msgid "" +"<literal>Dir::Etc</literal> contains the location of configuration files, " +"<literal>sourcelist</literal> gives the location of the sourcelist and " +"<literal>main</literal> is the default configuration file (setting has no " +"effect, unless it is done from the config file specified by " +"<envar>APT_CONFIG</envar>)." +msgstr "" +"<literal>Dir::Etc</literal> contient l'emplacement des fichiers de " +"configuration, <literal>sourcelist</literal> indique l'emplacement de la " +"liste de sources et <literal>main</literal> est le fichier de configuration " +"par défaut (le modifier n'a aucun effet, à moins qu'on ne le modifie avec le " +"fichier de configuration indiqué par la variable <envar>APT_CONFIG</envar>)." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:334 +#, fuzzy +msgid "" +"The <literal>Dir::Parts</literal> setting reads in all the config fragments " +"in lexical order from the directory specified. After this is done then the " +"main config file is loaded." +msgstr "" +"<literal>Dir::Parts</literal> lit, par ordre d'entrée, tous les fragments de " +"configuration dans le répertoire indiqué. Ensuite, le fichier principal de " +"configuration est chargé." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:338 +#, 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." +msgstr "" +"Les programmes binaires sont pointés par <literal>Dir::Bin</literal>. " +"L'emplacement des gestionnaires de méthodes est indiqué par <literal>Dir::" +"Bin::Methods</literal> ; <literal>gzip</literal>, <literal>dpkg</" +"literal>, <literal>apt-get</literal>, <literal>dpkg-source</literal>, " +"<literal>dpkg-buildpackage</literal> et <literal>apt-cache</literal> " +"indiquent l'emplacement des programmes correspondants." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:345 +#, fuzzy +msgid "" +"The configuration item <literal>RootDir</literal> has a special meaning. If " +"set, all paths in <literal>Dir::</literal> will be relative to " +"<literal>RootDir</literal>, <emphasis>even paths that are specified " +"absolutely</emphasis>. So, for instance, if <literal>RootDir</literal> is " +"set to <filename>/tmp/staging</filename> and <literal>Dir::State::status</" +"literal> is set to <filename>/var/lib/dpkg/status</filename>, then the " +"status file will be looked up in <filename>/tmp/staging/var/lib/dpkg/status</" +"filename>." +msgstr "" +"L'option de configuration <literal>RootDir</literal> a une signification " +"particulière. Lorsqu'elle est définie, tous les chemins déclarés dans " +"<literal>Dir::</literal> sont considérés relativement à <literal>RootDir</" +"literal>, <emphasis>même les chemins spécifiés de manière absolue</" +"emphasis>. Ainsi par exemple si <literal>RootDir</literal> est défini comme " +"<filename>/tmp/staging</filename>, et que chemin du fichier d'état " +"<literal>Dir::State::status</literal> est déclaré comme <filename>/var/lib/" +"dpkg/status</filename> alors ce fichier sera cherché dans <filename>/tmp/" +"staging/var/lib/dpkg/status</filename>." + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:358 +#, fuzzy +msgid "APT in DSelect" +msgstr "APT et DSelect" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:360 +#, fuzzy +msgid "" +"When APT is used as a &dselect; method several configuration directives " +"control the default behaviour. These are in the <literal>DSelect</literal> " +"section." +msgstr "" +"Quand APT est utilisé comme une méthode de &dselect;, plusieurs directives " +"contrôlent le comportement par défaut. On les trouve dans la section " +"<literal>DSelect</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:364 +#, fuzzy +msgid "Clean" +msgstr "Clean" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:365 +#, fuzzy +msgid "" +"Cache Clean mode; this value may be one of always, prompt, auto, pre-auto " +"and never. always and prompt will remove all packages from the cache after " +"upgrading, prompt (the default) does so conditionally. auto removes only " +"those packages which are no longer downloadable (replaced with a new version " +"for instance). pre-auto performs this action before downloading new " +"packages." +msgstr "" +"Mode de nettoyage du cache ; cette variable peut prendre l'une des " +"valeurs suivantes : « always », « prompt », « " +"auto », « pre-auto » et « never ». « " +"always » et « prompt » suppriment tous les paquets du cache " +"après la mise à niveau ; « prompt » (valeur par défaut) les " +"supprime après une demande et « auto » ne supprime que les archives " +"qui ne peuvent plus être téléchargées (remplacées, par exemple, par une " +"nouvelle version). « pre-auto » les supprime avant de récupérer de " +"nouveaux paquets." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:374 +#, fuzzy +msgid "" +"The contents of this variable is passed to &apt-get; as command line options " +"when it is run for the install phase." +msgstr "" +"Le contenu de cette variable est passé comme options de ligne de commande à " +"&apt-get; lors de la phase d'installation." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:378 +#, fuzzy +msgid "Updateoptions" +msgstr "UpdateOptions" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:379 +#, fuzzy +msgid "" +"The contents of this variable is passed to &apt-get; as command line options " +"when it is run for the update phase." +msgstr "" +"Le contenu de cette variable est passé comme options de ligne de commande à " +"&apt-get; lors de la phase de mise à jour." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:383 +#, fuzzy +msgid "PromptAfterUpdate" +msgstr "PromptAfterUpdate" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:384 +#, fuzzy +msgid "" +"If true the [U]pdate operation in &dselect; will always prompt to continue. " +"The default is to prompt only on error." +msgstr "" +"Si cette option est « vraie », l'opération [U]pdate de &dselect; " +"interroge toujours l'utilisateur avant de continuer. Par défaut, ce n'est " +"qu'en cas d'erreur que l'on propose à l'utilisateur d'intervenir." + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:390 +#, fuzzy +msgid "How APT calls dpkg" +msgstr "Comment APT appelle &dpkg;" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:391 +#, fuzzy +msgid "" +"Several configuration directives control how APT invokes &dpkg;. These are " +"in the <literal>DPkg</literal> section." +msgstr "" +"Plusieurs directives de configuration contrôlent la manière dont APT invoque " +"&dpkg; : elles figurent dans la section <literal>DPkg</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:396 +#, fuzzy +msgid "" +"This is a list of options to pass to dpkg. The options must be specified " +"using the list notation and each list item is passed as a single argument to " +"&dpkg;." +msgstr "" +"Il s'agit d'une liste d'options à passer à &dpkg;. Les options doivent être " +"déclarées en utilisant la notation de liste et chaque élément de la liste " +"est passé comme un seul argument à &dpkg;." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:401 +#, fuzzy +msgid "Pre-Invoke" +msgstr "Pre-Invoke" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:401 +#, fuzzy +msgid "Post-Invoke" +msgstr "Post-Invoke" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:402 +#, fuzzy +msgid "" +"This is a list of shell commands to run before/after invoking &dpkg;. Like " +"<literal>options</literal> this must be specified in list notation. The " +"commands are invoked in order using <filename>/bin/sh</filename>, should any " +"fail APT will abort." +msgstr "" +"Il s'agit d'une liste de commandes shell à exécuter avant ou après l'appel " +"de &dpkg;. Tout comme pour <literal>Options</literal>, on doit utiliser la " +"notation de liste. Les commandes sont appelées dans l'ordre, en utilisant " +"<filename>/bin/sh</filename> : APT s'arrête dès que l'une d'elles " +"échoue." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:408 +#, fuzzy +msgid "Pre-Install-Pkgs" +msgstr "Pre-Install-Pkgs" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:409 +#, fuzzy +msgid "" +"This is a list of shell commands to run before invoking dpkg. Like " +"<literal>options</literal> this must be specified in list notation. The " +"commands are invoked in order using <filename>/bin/sh</filename>, should any " +"fail APT will abort. APT will pass to the commands on standard input the " +"filenames of all .deb files it is going to install, one per line." +msgstr "" +"Il s'agit d'une liste de commandes shell à exécuter avant d'appeler &dpkg;. " +"Tout comme pour <literal>Options</literal>, on doit utiliser la notation de " +"liste. Les commandes sont appelées dans l'ordre, en utilisant <filename>/" +"bin/sh</filename> : APT s'arrête dès que l'une d'elles échoue. Sur " +"l'entrée standard, APT transmet aux commandes les noms de tous les fichiers ." +"deb qu'il va installer, à raison d'un par ligne." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:415 +#, fuzzy +msgid "" +"Version 2 of this protocol dumps more information, including the protocol " +"version, the APT configuration space and the packages, files and versions " +"being changed. Version 2 is enabled by setting <literal>DPkg::Tools::" +"options::cmd::Version</literal> to 2. <literal>cmd</literal> is a command " +"given to <literal>Pre-Install-Pkgs</literal>." +msgstr "" +"La deuxième version de ce protocole donne plus de renseignements : on " +"obtient la version du protocole, la configuration de APT et les paquets, " +"fichiers ou versions qui ont changé. On autorise cette version en " +"positionnant <literal>DPkg::Tools::Options::cmd::Version</literal> à 2. " +"<literal>cmd</literal> est une commande passée à <literal>Pre-Install-Pkgs</" +"literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:422 +#, fuzzy +msgid "Run-Directory" +msgstr "Run-Directory" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:423 +#, fuzzy +msgid "" +"APT chdirs to this directory before invoking dpkg, the default is <filename>/" +"</filename>." +msgstr "" +"APT se place dans ce répertoire avant d'appeler &dpkg; ; par défaut " +"c'est le répertoire <filename>/</filename>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:427 +#, fuzzy +msgid "Build-options" +msgstr "Build-Options" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:428 +#, fuzzy +msgid "" +"These options are passed to &dpkg-buildpackage; when compiling packages, the " +"default is to disable signing and produce all binaries." +msgstr "" +"Ces options sont passées à &dpkg-buildpackage; lors de la compilation des " +"paquets ; par défaut la signature est désactivée et tous les binaires " +"sont créés." + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:435 +#, fuzzy +msgid "Periodic and Archives options" +msgstr "Options « Periodic » et « Archive »" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:436 +#, fuzzy +msgid "" +"<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " +"of options configure behavior of apt periodic updates, which is done by " +"<literal>/etc/cron.daily/apt</literal> script. See header of this script for " +"the brief documentation of these options." +msgstr "" +"Les groupes d'options <literal>APT::Periodic</literal> et <literal>APT::" +"Archive</literal> configurent les comportements périodiques réalisés par le " +"script <literal>/etc/cron.daily/apt</literal>, lancé quotidiennement." + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:444 +#, fuzzy +msgid "Debug options" +msgstr "Les options de débogage" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:446 +#, fuzzy +msgid "" +"Enabling options in the <literal>Debug::</literal> section will cause " +"debugging information to be sent to the standard error stream of the program " +"utilizing the <literal>apt</literal> libraries, or enable special program " +"modes that are primarily useful for debugging the behavior of <literal>apt</" +"literal>. Most of these options are not interesting to a normal user, but a " +"few may be:" +msgstr "" +"Les options de la section <literal>Debug::</literal> servent soit à " +"provoquer l'affichage d'informations de débogage sur la sortie d'erreur " +"standard du programme qui utilise les librairies APT, soit à activer des " +"modes de fonctionnement spéciaux qui sont principalement utiles pour " +"déboguer le comportement de <literal>APT</literal>. La plupart de ces " +"options n'ont pas d'intérêt pour un utilisateur normal, mais certaines " +"peuvent tout de même être utiles :" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.conf.5.xml:457 +#, fuzzy +msgid "" +"<literal>Debug::pkgProblemResolver</literal> enables output about the " +"decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" +"literal>." +msgstr "" +"<literal>Debug::pkgProblemResolver</literal> affiche d'intéressantes " +"informations sur les décisions prises par les commandes <literal>dist-" +"upgrade, upgrade, install, remove et purge</literal>." + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.conf.5.xml:465 +#, fuzzy +msgid "" +"<literal>Debug::NoLocking</literal> disables all file locking. This can be " +"used to run some operations (for instance, <literal>apt-get -s install</" +"literal>) as a non-root user." +msgstr "" +"<literal>Debug::NoLocking</literal> désactive le verrouillage de fichier de " +"manière à ce que APT puisse effectuer quelques opérations (telles que " +"<literal>apt-get -s install</literal>) sans être « root »." + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.conf.5.xml:474 +#, fuzzy +msgid "" +"<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " +"time that <literal>apt</literal> invokes &dpkg;." +msgstr "" +"<literal>Debug::pkgDPkgPM</literal> affiche la ligne de commande à chaque " +"appel de &dpkg;." + +#. TODO: provide a +#. motivating example, except I haven't a clue why you'd want +#. to do this. +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.conf.5.xml:482 +#, fuzzy +msgid "" +"<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " +"in CDROM IDs." +msgstr "" +"<literal>Debug::IdentCdrom</literal> désactive l'inclusion de données de " +"type statfs dans les ID de cédérom." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:492 +#, fuzzy +msgid "A full list of debugging options to apt follows." +msgstr "Voici une liste complète des options de débogage de APT." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:497 +#, fuzzy +msgid "<literal>Debug::Acquire::cdrom</literal>" +msgstr "Debug::Acquire::cdrom" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:501 +#, fuzzy +msgid "Print information related to accessing <literal>cdrom://</literal> sources." +msgstr "Affiche les informations concernant les sources de type cdrom://" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:508 +#, fuzzy +msgid "<literal>Debug::Acquire::ftp</literal>" +msgstr "Debug::Acquire::ftp" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:512 +#, fuzzy +msgid "Print information related to downloading packages using FTP." +msgstr "Affiche les informations concernant le téléchargement de paquets par FTP." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:519 +#, fuzzy +msgid "<literal>Debug::Acquire::http</literal>" +msgstr "Debug::Acquire::http" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:523 +#, fuzzy +msgid "Print information related to downloading packages using HTTP." +msgstr "Affiche les informations concernant le téléchargement de paquets par HTTP." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:530 +#, fuzzy +msgid "<literal>Debug::Acquire::https</literal>" +msgstr "Debug::Acquire::https" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:534 +#, fuzzy +msgid "Print information related to downloading packages using HTTPS." +msgstr "Affiche les informations concernant le téléchargement de paquets par HTTPS." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:541 +#, fuzzy +msgid "<literal>Debug::Acquire::gpgv</literal>" +msgstr "Debug::Acquire::gpgv" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:545 +#, fuzzy +msgid "" +"Print information related to verifying cryptographic signatures using " +"<literal>gpg</literal>." +msgstr "" +"Affiche les informations relatives à la vérification de signatures " +"cryptographiques avec <literal>gpg</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:552 +#, fuzzy +msgid "<literal>Debug::aptcdrom</literal>" +msgstr "Debug::aptcdrom" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:556 +#, fuzzy +msgid "" +"Output information about the process of accessing collections of packages " +"stored on CD-ROMs." +msgstr "" +"Affiche des informations concernant l'accès aux collections de paquets " +"stockées sur cédérom." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:563 +#, fuzzy +msgid "<literal>Debug::BuildDeps</literal>" +msgstr "Debug::BuildDeps" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:566 +#, fuzzy +msgid "Describes the process of resolving build-dependencies in &apt-get;." +msgstr "" +"Décrit le processus de résolution des dépendances pour la construction de " +"paquets source ( « build-dependencies » ) par &apt-get;." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:573 +#, fuzzy +msgid "<literal>Debug::Hashes</literal>" +msgstr "Debug::Hashes" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:576 +#, fuzzy +msgid "" +"Output each cryptographic hash that is generated by the <literal>apt</" +"literal> libraries." +msgstr "" +"Affiche toutes les clefs de hachage cryptographiques générées par les " +"librairies APT." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:583 +#, fuzzy +msgid "<literal>Debug::IdentCDROM</literal>" +msgstr "Debug::IdentCdrom" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:586 +#, fuzzy +msgid "" +"Do not include information from <literal>statfs</literal>, namely the number " +"of used and free blocks on the CD-ROM filesystem, when generating an ID for " +"a CD-ROM." +msgstr "" +"Désactive l'inclusion des données de type <literal>statfs</literal> pour la " +"génération des ID de cédérom, à savoir le nombre de blocs libres et utilisés " +"sur le système de fichier du cédérom." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:594 +#, fuzzy +msgid "<literal>Debug::NoLocking</literal>" +msgstr "Debug::NoLocking" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:597 +#, fuzzy +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 "" +"Désactive le verrouillage de fichiers. Cela permet par exemple de lancer " +"deux instances de « apt-get update » en même temps." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:605 +#, fuzzy +msgid "<literal>Debug::pkgAcquire</literal>" +msgstr "Debug::pkgAcquire" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:609 +#, fuzzy +msgid "Log when items are added to or removed from the global download queue." +msgstr "" +"Trace les ajouts et suppressions d'éléments de la queue globale de " +"téléchargement." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:616 +#, fuzzy +msgid "<literal>Debug::pkgAcquire::Auth</literal>" +msgstr "Debug::pkgAcquire::Auth" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:619 +#, fuzzy +msgid "" +"Output status messages and errors related to verifying checksums and " +"cryptographic signatures of downloaded files." +msgstr "" +"Affiche les détails de la vérification des sommes de contrôle et des " +"signatures cryptographiques des fichiers téléchargés, ainsi que les erreurs " +"éventuelles." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:626 +#, fuzzy +msgid "<literal>Debug::pkgAcquire::Diffs</literal>" +msgstr "Debug::pkgAcquire::Diffs" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:629 +#, fuzzy +msgid "" +"Output information about downloading and applying package index list diffs, " +"and errors relating to package index list diffs." +msgstr "" +"Affiche les informations de téléchargement et de prise en compte des " +"fichiers différentiels des indexes de paquets, ainsi que les erreurs " +"éventuelles." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:637 +#, fuzzy +msgid "<literal>Debug::pkgAcquire::RRed</literal>" +msgstr "Debug::pkgAcquire::RRed" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:641 +#, fuzzy +msgid "" +"Output information related to patching apt package lists when downloading " +"index diffs instead of full indices." +msgstr "" +"Affiche les détails de la vérification des sommes de contrôle et des " +"signatures cryptographiques des fichiers téléchargés, ainsi que les erreurs " +"éventuelles." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:648 +#, fuzzy +msgid "<literal>Debug::pkgAcquire::Worker</literal>" +msgstr "Debug::pkgAcquire::Worker" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:652 +#, fuzzy +msgid "Log all interactions with the sub-processes that actually perform downloads." +msgstr "" +"Affiche toutes les interactions avec les processus enfants qui se chargent " +"effectivement des téléchargements." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:659 +#, fuzzy +msgid "<literal>Debug::pkgAutoRemove</literal>" +msgstr "Debug::pkgAcquire::pkgAutoRemove" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:663 +#, fuzzy +msgid "" +"Log events related to the automatically-installed status of packages and to " +"the removal of unused packages." +msgstr "" +"Affiche les changements concernant le marquage des paquets comme installés " +"automatiquement, et la suppression des paquets inutiles." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:670 +#, fuzzy +msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>" +msgstr "Debug::pkgDepCache::AutoInstall" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:673 +#, fuzzy +msgid "" +"Generate debug messages describing which packages are being automatically " +"installed to resolve dependencies. This corresponds to the initial auto-" +"install pass performed in, e.g., <literal>apt-get install</literal>, and not " +"to the full <literal>apt</literal> dependency resolver; see <literal>Debug::" +"pkgProblemResolver</literal> for that." +msgstr "" +"Génère les informations de débogage décrivant quels paquets sont installés " +"automatiquement pour satisfaire les dépendances. Cela concerne la passe " +"initiale d'installation automatique effectuée par exemple par <literal>apt-" +"get install</literal> et pas le système de résolution de dépendances complet " +"de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce " +"dernier." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:684 +#, fuzzy +msgid "<literal>Debug::pkgDepCache::Marker</literal>" +msgstr "Debug::pkgDepCache::AutoInstall" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:687 +msgid "" +"Generate debug messages describing which package is marked as keep/install/" +"remove while the ProblemResolver does his work. Each addition or deletion " +"may trigger additional actions; they are shown indented two additional space " +"under the original entry. The format for each line is <literal>MarkKeep</" +"literal>, <literal>MarkDelete</literal> or <literal>MarkInstall</literal> " +"followed by <literal>package-name <a.b.c -> d.e.f | x.y.z> (section)" +"</literal> where <literal>a.b.c</literal> is the current version of the " +"package, <literal>d.e.f</literal> is the version considered for installation " +"and <literal>x.y.z</literal> is a newer version, but not considered for " +"installation (because of a low pin score). The later two can be omitted if " +"there is none or if it is the same version as the installed. " +"<literal>section</literal> is the name of the section the package appears in." +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:706 +#, fuzzy +msgid "<literal>Debug::pkgInitConfig</literal>" +msgstr "Debug::pkgInitConfig" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:709 +#, fuzzy +msgid "Dump the default configuration to standard error on startup." +msgstr "" +"Au lancement, affiche l'ensemble de la configuration sur la sortie d'erreur " +"standard." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:716 +#, fuzzy +msgid "<literal>Debug::pkgDPkgPM</literal>" +msgstr "Debug::pkgDPkgPM" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:719 +#, fuzzy +msgid "" +"When invoking &dpkg;, output the precise command line with which it is being " +"invoked, with arguments separated by a single space character." +msgstr "" +"Affiche la commande exacte d'invocation de &dpkg; à chaque appel ; les " +"arguments sont séparés par des espaces." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:727 +#, fuzzy +msgid "<literal>Debug::pkgDPkgProgressReporting</literal>" +msgstr "Debug::pkgDPkgProgressReporting" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:730 +#, fuzzy +msgid "" +"Output all the data received from &dpkg; on the status file descriptor and " +"any errors encountered while parsing it." +msgstr "" +"Affiche l'ensemble des informations reçues de &dpkg; par l'intermédiaire du " +"descripteur de fichier d'état, et les éventuelles erreurs d'analyse de ce " +"fichier." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:737 +#, fuzzy +msgid "<literal>Debug::pkgOrderList</literal>" +msgstr "Debug::pkgOrderList" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:741 +#, fuzzy +msgid "" +"Generate a trace of the algorithm that decides the order in which " +"<literal>apt</literal> should pass packages to &dpkg;." +msgstr "" +"Affiche les étapes de l'algorithme utilisé pour choisir l'ordre dans lequel " +"APT passe les paquets à &dpkg;." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:749 +#, fuzzy +msgid "<literal>Debug::pkgPackageManager</literal>" +msgstr "Debug::pkgPackageManager" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:753 +#, fuzzy +msgid "Output status messages tracing the steps performed when invoking &dpkg;." +msgstr "Affiche le détail des opérations liées à l'invocation de &dpkg;." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:760 +#, fuzzy +msgid "<literal>Debug::pkgPolicy</literal>" +msgstr "Debug::pkgPolicy" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:764 +#, fuzzy +msgid "Output the priority of each package list on startup." +msgstr "Au lancement, affiche la priorité de chaque liste de paquets." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:770 +#, fuzzy +msgid "<literal>Debug::pkgProblemResolver</literal>" +msgstr "Debug::pkgProblemResolver" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:774 +#, fuzzy +msgid "" +"Trace the execution of the dependency resolver (this applies only to what " +"happens when a complex dependency problem is encountered)." +msgstr "" +"Affiche la trace d'exécution du système de résolution de dépendances (ne " +"concerne que les cas où un problème de dépendances complexe se présente)." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:782 +#, fuzzy +msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>" +msgstr "Debug::pkgProblemResolver" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:785 +msgid "" +"Display a list of all installed packages with their calculated score used by " +"the pkgProblemResolver. The description of the package is the same as " +"described in <literal>Debug::pkgDepCache::Marker</literal>" +msgstr "" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:793 +#, fuzzy +msgid "<literal>Debug::sourceList</literal>" +msgstr "Debug::sourceList" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:797 +#, fuzzy +msgid "" +"Print information about the vendors read from <filename>/etc/apt/vendors." +"list</filename>." +msgstr "" +"Affiche les fournisseurs déclarés dans le fichier <filename>/etc/apt/vendors." +"list</filename>." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:819 +#, fuzzy +msgid "" +"&configureindex; is a configuration file showing example values for all " +"possible options." +msgstr "" +"Le fichier &configureindex; contient un modèle de fichier montrant des " +"exemples pour toutes les options existantes." + +#. ? reading apt.conf +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:829 +#, fuzzy +msgid "&apt-cache;, &apt-config;, &apt-preferences;." +msgstr "&apt-cache; &apt-conf;" + +#. 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>" +msgstr "&apt-author.team; &apt-email; &apt-product; <date>29 Février 2004</date>" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt_preferences.5.xml:21 apt_preferences.5.xml:27 +#, fuzzy +msgid "apt_preferences" +msgstr "apt_preferences" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt_preferences.5.xml:28 +#, fuzzy +msgid "Preference control file for APT" +msgstr "Un fichier de contrôle des préférences pour APT" + +#. type: Content of: <refentry><refsect1><para> +#: apt_preferences.5.xml:33 +#, 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." +msgstr "" +"Le fichier d'APT, <filename>/etc/apt/preferences</filename>, peut être " +"utilisé pour choisir la version des paquets que l'on veut installer." + +#. type: Content of: <refentry><refsect1><para> +#: apt_preferences.5.xml:37 +#, fuzzy +msgid "" +"Several versions of a package may be available for installation when the " +"&sources-list; file contains references to more than one distribution (for " +"example, <literal>stable</literal> and <literal>testing</literal>). APT " +"assigns a priority to each version that is available. Subject to dependency " +"constraints, <command>apt-get</command> selects the version with the highest " +"priority for installation. The APT preferences file overrides the " +"priorities that APT assigns to package versions by default, thus giving the " +"user control over which one is selected for installation." +msgstr "" +"Quand le fichier &sources-list; contient des références à plusieurs " +"distributions (par exemple, <literal>stable</literal> et <literal>testing</" +"literal>), plusieurs versions d'un paquet peuvent être installées. APT " +"affecte une priorité à chaque version disponible. La commande <command>apt-" +"get</command>, tenant compte des contraintes de dépendance, installe la " +"version qui possède la priorité la plus haute. Le fichier des préférences " +"annule les priorités assignées par défaut aux versions des paquets : " +"ainsi l'utilisateur peut choisir la version qu'il veut installer." + +#. type: Content of: <refentry><refsect1><para> +#: apt_preferences.5.xml:47 +#, fuzzy +msgid "" +"Several instances of the same version of a package may be available when the " +"&sources-list; file contains references to more than one source. In this " +"case <command>apt-get</command> downloads the instance listed earliest in " +"the &sources-list; file. The APT preferences file does not affect the " +"choice of instance, only the choice of version." +msgstr "" +"Si le fichier &sources-list; contient, pour une même distribution, des " +"références à plusieurs sites de téléchargement, il peut exister plusieurs " +"exemplaires de la même version d'un paquet. Dans ce cas, <command>apt-get</" +"command> télécharge l'exemplaire qui apparaît en premier dans le fichier " +"&sources-list;. Le fichier des préférences n'influe pas sur le choix des " +"exemplaires, seulement sur le choix de la version." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:54 +#, fuzzy +msgid "APT's Default Priority Assignments" +msgstr "Les priorités affectées par défaut" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:69 +#, fuzzy, no-wrap +msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" +msgstr "<command>apt-get install -t testing <replaceable>paquet</replaceable></command>\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:72 +#, fuzzy, no-wrap +msgid "APT::Default-Release \"stable\";\n" +msgstr "APT::Default-Release \"stable\";\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:56 +#, fuzzy +msgid "" +"If there is no preferences file or if there is no entry in the file that " +"applies to a particular version then the priority assigned to that version " +"is the priority of the distribution to which that version belongs. It is " +"possible to single out a distribution, \"the target release\", which " +"receives a higher priority than other distributions do by default. The " +"target release can be set on the <command>apt-get</command> command line or " +"in the APT configuration file <filename>/etc/apt/apt.conf</filename>. Note " +"that this has precedence over any general priority you set in the <filename>/" +"etc/apt/preferences</filename> file described later, but not over " +"specifically pinned packages. For example, <placeholder type=" +"\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>" +msgstr "" +"Quand le fichier des préférences n'existe pas, ou quand aucune entrée de ce " +"fichier ne s'applique à une version précise, la priorité affectée à cette " +"version est la priorité de la distribution à laquelle elle appartient. On " +"peut distinguer une distribution et lui donner une priorité plus haute que " +"celle des autres distributions : on l'appelle la distribution par " +"défaut ou « target release » et elle peut être définie sur la ligne " +"de commande de <command>apt-get</command> ou dans le fichier de " +"configuration d'APT, <filename>/etc/apt/apt.conf</filename>. Par " +"exemple : <placeholder type=\"programlisting\" id=\"0\"/> <placeholder " +"type=\"programlisting\" id=\"1\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:81 +#, fuzzy +msgid "priority 100" +msgstr "une priorité égale à 100" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:82 +#, fuzzy +msgid "to the version that is already installed (if any)." +msgstr "est affectée à la version déjà installée (si elle existe)." + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:86 +#, fuzzy +msgid "priority 500" +msgstr "une priorité égale à 500" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:87 +#, fuzzy +msgid "" +"to the versions that are not installed and do not belong to the target " +"release." +msgstr "" +"est affectée aux versions qui ne sont pas installées et qui n'appartiennent " +"pas à la distribution par défaut." + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:91 +#, fuzzy +msgid "priority 990" +msgstr "une priorité égale à 990" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:92 +#, fuzzy +msgid "to the versions that are not installed and belong to the target release." +msgstr "" +"est affectée aux versions qui ne sont pas installées et qui appartiennent à " +"la distribution par défaut." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:76 +#, fuzzy +msgid "" +"If the target release has been specified then APT uses the following " +"algorithm to set the priorities of the versions of a package. Assign: " +"<placeholder type=\"variablelist\" id=\"0\"/>" +msgstr "" +"Quand une distribution par défaut a été indiquée, APT utilise l'algorithme " +"suivant pour déterminer la priorité des versions d'un paquet : " +"<placeholder type=\"variablelist\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:97 +#, 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." +msgstr "" +"Quand aucune distribution par défaut n'a été indiquée, APT affecte " +"simplement une priorité égale à 100 à toute version installée d'un paquet et " +"une priorité égale à 500 à tout version non installée." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:101 +#, fuzzy +msgid "" +"APT then applies the following rules, listed in order of precedence, to " +"determine which version of a package to install." +msgstr "" +"Puis APT applique les règles suivantes pour déterminer la version du paquet " +"qu'il faut installer (elles sont listées par ordre de priorité) :" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:104 +#, fuzzy +msgid "" +"Never downgrade unless the priority of an available version exceeds 1000. " +"(\"Downgrading\" is installing a less recent version of a package in place " +"of a more recent version. Note that none of APT's default priorities " +"exceeds 1000; such high priorities can only be set in the preferences file. " +"Note also that downgrading a package can be risky.)" +msgstr "" +"Ne jamais revenir en arrière, sauf si la priorité d'une version disponible " +"dépasse 1000. « Revenir en arrière » signifie installer une version " +"moins récente que la version installée. Il faut noter qu'aucune des " +"priorités par défaut n'excède 1000 ; de telles valeurs ne peuvent être " +"définies que dans le fichier des préférences. Notez aussi qu'il est risqué " +"de revenir en arrière." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:110 +#, fuzzy +msgid "Install the highest priority version." +msgstr "Installer la version qui possède la priorité la plus haute." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:111 +#, fuzzy +msgid "" +"If two or more versions have the same priority, install the most recent one " +"(that is, the one with the higher version number)." +msgstr "" +"Quand deux (ou plus) versions ont la même priorité, installer la version la " +"plus récente (c.-à-d. celle dont le numéro de version est le plus grand)." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:114 +#, fuzzy +msgid "" +"If two or more versions have the same priority and version number but either " +"the packages differ in some of their metadata or the <literal>--reinstall</" +"literal> option is given, install the uninstalled one." +msgstr "" +"Quand deux (ou plus) versions ont la même priorité et le même numéro de " +"version, mais soit les paquets diffèrent par certaines métadonnées, soit " +"l'option <literal>--reinstall</literal> a été donnée, installer la version " +"qui n'est pas installée." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:120 +#, fuzzy +msgid "" +"In a typical situation, the installed version of a package (priority 100) " +"is not as recent as one of the versions available from the sources listed in " +"the &sources-list; file (priority 500 or 990). Then the package will be " +"upgraded when <command>apt-get install <replaceable>some-package</" +"replaceable></command> or <command>apt-get upgrade</command> is executed." +msgstr "" +"En général, la version installée d'un paquet (priorité 100) n'est pas aussi " +"récente que les versions disponibles dans les sources listées dans le " +"fichier &sources-list; (priorité 500 ou 990). Et donc le paquet sera mis à " +"niveau avec la commande : <command>apt-get install <replaceable>paquet</" +"replaceable></command> ou <command>apt-get dist-upgrade</command>." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:127 +#, fuzzy +msgid "" +"More rarely, the installed version of a package is <emphasis>more</emphasis> " +"recent than any of the other available versions. The package will not be " +"downgraded when <command>apt-get install <replaceable>some-package</" +"replaceable></command> or <command>apt-get upgrade</command> is executed." +msgstr "" +"La version installée d'un paquet peut être - rarement - <emphasis>plus</" +"emphasis> récente que tout autre version disponible. Les commandes " +"<command>apt-get install <replaceable>paquet</replaceable></command> ou " +"<command>apt-get upgrade</command> ne provoquent pas de retour en arrière." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:132 +#, fuzzy +msgid "" +"Sometimes the installed version of a package is more recent than the version " +"belonging to the target release, but not as recent as a version belonging to " +"some other distribution. Such a package will indeed be upgraded when " +"<command>apt-get install <replaceable>some-package</replaceable></command> " +"or <command>apt-get upgrade</command> is executed, because at least " +"<emphasis>one</emphasis> of the available versions has a higher priority " +"than the installed version." +msgstr "" +"Parfois, la version installée d'un paquet est plus récente que la version " +"appartenant à la distribution par défaut, mais moins récente que la version " +"appartenant à une autre distribution. Une telle version sera mise à niveau " +"par les commandes <command>apt-get install <replaceable>paquet</" +"replaceable></command> ou <command>apt-get upgrade</command> car au moins " +"<emphasis>l'une</emphasis> des versions disponibles possède une plus haute " +"priorité que celle de la version installée." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:141 +#, fuzzy +msgid "The Effect of APT Preferences" +msgstr "Conséquences des préférences" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:143 +#, fuzzy +msgid "" +"The APT preferences file allows the system administrator to control the " +"assignment of priorities. The file consists of one or more multi-line " +"records separated by blank lines. Records can have one of two forms, a " +"specific form and a general form." +msgstr "" +"Le fichier des préférences permet à l'administrateur système de contrôler " +"l'affectation des priorités. Ce fichier est constitué d'une ou plusieurs " +"entrées séparées par des lignes blanches. Ces entrées peuvent avoir deux " +"formes, une forme particulière et une forme générale." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:149 +#, fuzzy +msgid "" +"The specific form assigns a priority (a \"Pin-Priority\") to one or more " +"specified packages and specified version or version range. For example, the " +"following record assigns a high priority to all versions of the " +"<filename>perl</filename> package whose version number begins with " +"\"<literal>5.8</literal>\". Multiple packages can be separated by spaces." +msgstr "" +"La forme particulière affecte une priorité (<emphasis>Pin-Priority</" +"emphasis>) à un paquet précis, à une version précise ou à un intervalle " +"spécifiant plusieurs versions. Par exemple, l'entrée suivante affecte une " +"priorité haute à toutes les versions du paquet <filename>perl</filename> " +"dont le numéro de version commence par <literal>5.8</literal>." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:156 +#, fuzzy, no-wrap +msgid "" +"Package: perl\n" +"Pin: version 5.8*\n" +"Pin-Priority: 1001\n" +msgstr "" +"Package: perl\n" +"Pin: version 5.8*\n" +"Pin-Priority: 1001\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:162 +#, fuzzy +msgid "" +"The general form assigns a priority to all of the package versions in a " +"given distribution (that is, to all the versions of packages that are listed " +"in a certain <filename>Release</filename> file) or to all of the package " +"versions coming from a particular Internet site, as identified by the site's " +"fully qualified domain name." +msgstr "" +"La forme générale affecte une priorité à toutes les versions d'un paquet " +"dans une distribution donnée (c'est-à-dire, à toutes les versions d'un " +"paquet qui sont listées dans un fichier <filename>Release</filename>), ou à " +"toutes les versions d'un paquet provenant d'un site internet identifié par " +"un nom complètement qualifié." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:168 +#, fuzzy +msgid "" +"This general-form entry in the APT preferences file applies only to groups " +"of packages. For example, the following record assigns a high priority to " +"all package versions available from the local site." +msgstr "" +"Cette forme générale des entrées du fichier des préférences s'applique " +"seulement aux groupes de paquets. Par exemple, l'entrée suivante affecte une " +"priorité haute à toutes les versions disponibles dans le site local." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:173 +#, fuzzy, no-wrap +msgid "" +"Package: *\n" +"Pin: origin \"\"\n" +"Pin-Priority: 999\n" +msgstr "" +"Package: *\n" +"Pin: origin \"\"\n" +"Pin-Priority: 999\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:178 +#, 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\"." +msgstr "" +"Attention ! le mot-clé utilisé ici, <literal>origin</literal>, ne doit pas " +"être confondu avec l'Origine d'une distribution indiquée dans un fichier " +"<filename>Release</filename>. Ce qui suit l'étiquette « Origin: » " +"dans un fichier <filename>Release</filename> n'est pas une adresse internet " +"mais le nom d'un auteur ou d'un distributeur, comme Debian ou Ximian." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:184 +#, fuzzy +msgid "" +"The following record assigns a low priority to all package versions " +"belonging to any distribution whose Archive name is \"<literal>unstable</" +"literal>\"." +msgstr "" +"L'entrée suivante affecte une priorité basse à toutes les versions d'un " +"paquet appartenant à toute distribution dont le nom d'« Archive » " +"est <literal>unstable</literal>." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:188 +#, fuzzy, no-wrap +msgid "" +"Package: *\n" +"Pin: release a=unstable\n" +"Pin-Priority: 50\n" +msgstr "" +"Package: *\n" +"Pin: release a=unstable\n" +"Pin-Priority: 50\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:193 +#, fuzzy +msgid "" +"The following record assigns a high priority to all package versions " +"belonging to any distribution whose Codename is \"<literal>squeeze</literal>" +"\"." +msgstr "" +"L'entrée suivante affecte une priorité basse à toutes les versions d'un " +"paquet appartenant à toute distribution dont le nom d'« Archive » " +"est <literal>unstable</literal>." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:197 +#, fuzzy, no-wrap +msgid "" +"Package: *\n" +"Pin: release n=squeeze\n" +"Pin-Priority: 900\n" +msgstr "" +"Package: *\n" +"Pin: release a=unstable\n" +"Pin-Priority: 50\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:202 +#, fuzzy +msgid "" +"The following record assigns a high priority to all package versions " +"belonging to any release whose Archive name is \"<literal>stable</literal>\" " +"and whose release Version number is \"<literal>3.0</literal>\"." +msgstr "" +"L'entrée suivante affecte une priorité haute à toutes les versions d'un " +"paquet appartenant à toute distribution dont le nom d'« Archive » " +"est <literal>stable</literal> et dont le numéro de « Version » est " +"<literal>3.0</literal>." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:207 +#, fuzzy, no-wrap +msgid "" +"Package: *\n" +"Pin: release a=stable, v=3.0\n" +"Pin-Priority: 500\n" +msgstr "" +"Package: *\n" +"Pin: release a=stable, v=3.0\n" +"Pin-Priority: 500\n" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:218 +#, fuzzy +msgid "How APT Interprets Priorities" +msgstr "Comment APT interprète-t-il les priorités ?" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:226 +#, fuzzy +msgid "P > 1000" +msgstr "P > 1000" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:227 +#, fuzzy +msgid "" +"causes a version to be installed even if this constitutes a downgrade of the " +"package" +msgstr "" +"Cette priorité entraîne l'installation du paquet même s'il s'agit d'un " +"retour en arrière." + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:231 +#, fuzzy +msgid "990 < P <=1000" +msgstr "990 < P <=1000" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:232 +#, fuzzy +msgid "" +"causes a version to be installed even if it does not come from the target " +"release, unless the installed version is more recent" +msgstr "" +"La version sera installée, même si elle n'appartient pas à la distribution " +"par défaut ; mais elle ne sera pas installée si la version installée " +"est plus récente." + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:237 +#, fuzzy +msgid "500 < P <=990" +msgstr "500 < P <=990" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:238 +#, fuzzy +msgid "" +"causes a version to be installed unless there is a version available " +"belonging to the target release or the installed version is more recent" +msgstr "" +"La version sera installée, sauf s'il existe une version appartenant à la " +"distribution par défaut ou si la version installée est plus récente." + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:243 +#, fuzzy +msgid "100 < P <=500" +msgstr "100 < P <=500" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:244 +#, fuzzy +msgid "" +"causes a version to be installed unless there is a version available " +"belonging to some other distribution or the installed version is more recent" +msgstr "" +"La version sera installée, sauf s'il existe une version appartenant à une " +"autre distribution ou si la version installée est plus récente." + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:249 +#, fuzzy +msgid "0 < P <=100" +msgstr "0 < P <=100" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:250 +#, fuzzy +msgid "" +"causes a version to be installed only if there is no installed version of " +"the package" +msgstr "La version sera installée si aucune version du paquet n'est installée." + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:254 +#, fuzzy +msgid "P < 0" +msgstr "P < 0" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:255 +#, fuzzy +msgid "prevents the version from being installed" +msgstr "Cette priorité empêche l'installation de la version." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:221 +#, fuzzy +msgid "" +"Priorities (P) assigned in the APT preferences file must be positive or " +"negative integers. They are interpreted as follows (roughly speaking): " +"<placeholder type=\"variablelist\" id=\"0\"/>" +msgstr "" +"Les priorités (P) indiquées dans le fichier des préférences doivent être des " +"entiers positifs ou négatifs. Ils sont interprétés à peu près comme " +"suit : <placeholder type=\"variablelist\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:260 +#, fuzzy +msgid "" +"If any specific-form records match an available package version then the " +"first such record determines the priority of the package version. Failing " +"that, if any general-form records match an available package version then " +"the first such record determines the priority of the package version." +msgstr "" +"Si l'une des entrées de forme particulière correspond à la version " +"disponible d'un paquet, la première entrée trouvée détermine la priorité de " +"cette version. S'il n'en existe pas, et si l'une des entrées de forme " +"générale correspond à la version disponible d'un paquet, la première entrée " +"trouvée détermine la priorité." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:266 +#, fuzzy +msgid "" +"For example, suppose the APT preferences file contains the three records " +"presented earlier:" +msgstr "" +"Supposons par exemple que le fichier des préférences contienne les trois " +"entrées décrites ci-dessous :" + +#. type: Content of: <refentry><refsect1><refsect2><programlisting> +#: apt_preferences.5.xml:270 +#, fuzzy, no-wrap +msgid "" +"Package: perl\n" +"Pin: version 5.8*\n" +"Pin-Priority: 1001\n" +"\n" +"Package: *\n" +"Pin: origin \"\"\n" +"Pin-Priority: 999\n" +"\n" +"Package: *\n" +"Pin: release unstable\n" +"Pin-Priority: 50\n" +msgstr "" +"Package: perl\n" +"Pin: version 5.8*\n" +"Pin-Priority: 1001\n" +"\n" +"Package: *\n" +"Pin: origin \"\"\n" +"Pin-Priority: 999\n" +"\n" +"Package: *\n" +"Pin: release unstable\n" +"Pin-Priority: 50\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:283 +#, fuzzy +msgid "Then:" +msgstr "Alors :" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:285 +#, fuzzy +msgid "" +"The most recent available version of the <literal>perl</literal> package " +"will be installed, so long as that version's version number begins with " +"\"<literal>5.8</literal>\". If <emphasis>any</emphasis> 5.8* version of " +"<literal>perl</literal> is available and the installed version is 5.9*, then " +"<literal>perl</literal> will be downgraded." +msgstr "" +"La version la plus récente du paquet <literal>perl</literal> sera installé " +"pour autant que son numéro de version commence par <literal>5.8</literal>. " +"Si l'<emphasis>une</emphasis> des versions 5.8* existe et si la version " +"installée est une version 5.9*, il y aura un retour en arrière." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:290 +#, fuzzy +msgid "" +"A version of any package other than <literal>perl</literal> that is " +"available from the local system has priority over other versions, even " +"versions belonging to the target release." +msgstr "" +"Les versions des paquets (autres que <literal>perl</literal>) disponibles " +"dans le site local ont priorité sur les autres versions, même celles " +"appartenant à la distribution par défaut." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:294 +#, fuzzy +msgid "" +"A version of a package whose origin is not the local system but some other " +"site listed in &sources-list; and which belongs to an <literal>unstable</" +"literal> distribution is only installed if it is selected for installation " +"and no version of the package is already installed." +msgstr "" +"La version d'un paquet dont l'origine n'est pas le site local mais un site " +"internet listé dans &sources-list; et qui appartient à une distribution " +"<literal>unstable</literal>, ne sera installée que si aucune version du " +"paquet n'est déjà installée." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:304 +#, fuzzy +msgid "Determination of Package Version and Distribution Properties" +msgstr "Détermination de la version des paquets et des propriétés des distributions" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:306 +#, fuzzy +msgid "" +"The locations listed in the &sources-list; file should provide " +"<filename>Packages</filename> and <filename>Release</filename> files to " +"describe the packages available at that location." +msgstr "" +"Chaque source listée dans le fichier &sources-list; doit fournir les " +"fichiers <filename>Packages</filename> et <filename>Release</filename> qui " +"décrivent les paquets disponibles à cet endroit." + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:318 +#, fuzzy +msgid "the <literal>Package:</literal> line" +msgstr "La ligne <literal>Package:</literal>" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:319 +#, fuzzy +msgid "gives the package name" +msgstr "donne le nom du paquet" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:322 apt_preferences.5.xml:372 +#, fuzzy +msgid "the <literal>Version:</literal> line" +msgstr "La ligne <literal>Version:</literal>" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:323 +#, fuzzy +msgid "gives the version number for the named package" +msgstr "donne le numéro de version du paquet" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:310 +#, fuzzy +msgid "" +"The <filename>Packages</filename> file is normally found in the directory " +"<filename>.../dists/<replaceable>dist-name</replaceable>/" +"<replaceable>component</replaceable>/<replaceable>arch</replaceable></" +"filename>: for example, <filename>.../dists/stable/main/binary-i386/" +"Packages</filename>. It consists of a series of multi-line records, one for " +"each package available in that directory. Only two lines in each record are " +"relevant for setting APT priorities: <placeholder type=\"variablelist\" id=" +"\"0\"/>" +msgstr "" +"Le fichier <filename>Packages</filename> se trouve normalement dans le " +"répertoire <filename>.../dists/<replaceable>dist-name</replaceable>/" +"<replaceable>component</replaceable>/<replaceable>arch</replaceable></" +"filename>, par exemple, <filename>.../dists/stable/main/binary-i386/" +"Packages</filename>. Il consiste en entrées composées de lignes, une pour " +"chaque paquet disponible dans le répertoire. Seules deux lignes des entrées " +"sont pertinentes pour la détermination des priorités : <placeholder " +"type=\"variablelist\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:339 +#, fuzzy +msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" +msgstr "La ligne <literal>Archive:</literal>" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:340 +#, 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 " +"that all of the packages in the directory tree below the parent of the " +"<filename>Release</filename> file are in a <literal>stable</literal> " +"archive. Specifying this value in the APT preferences file would require " +"the line:" +msgstr "" +"nomme l'archive à laquelle appartiennent tous les paquets situés dans les " +"répertoires. Par exemple, la ligne <literal>Archive: stable</literal> " +"indique que tous les paquets dans les répertoires situés sous le répertoire " +"parent du fichier <filename>Release</filename> appartiennent à l'archive " +"<literal>stable</literal>. Indiquer cette valeur dans le fichier des " +"préférences demanderait cette ligne :" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> +#: apt_preferences.5.xml:350 +#, fuzzy, no-wrap +msgid "Pin: release a=stable\n" +msgstr "Pin: release a=stable\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:356 +#, fuzzy +msgid "the <literal>Codename:</literal> line" +msgstr "La ligne <literal>Component:</literal>" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:357 +#, 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:" +msgstr "" +"nomme l'archive à laquelle appartiennent tous les paquets situés dans les " +"répertoires. Par exemple, la ligne <literal>Archive: stable</literal> " +"indique que tous les paquets dans les répertoires situés sous le répertoire " +"parent du fichier <filename>Release</filename> appartiennent à l'archive " +"<literal>stable</literal>. Indiquer cette valeur dans le fichier des " +"préférences demanderait cette ligne :" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> +#: apt_preferences.5.xml:366 +#, fuzzy, no-wrap +msgid "Pin: release n=squeeze\n" +msgstr "Pin: release a=stable\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:373 +#, fuzzy +msgid "" +"names the release version. For example, the packages in the tree might " +"belong to Debian GNU/Linux release version 3.0. Note that there is normally " +"no version number for the <literal>testing</literal> and <literal>unstable</" +"literal> distributions because they have not been released yet. Specifying " +"this in the APT preferences file would require one of the following lines." +msgstr "" +"indique la version de la distribution. Par exemple, les paquets dans les " +"répertoires peuvent appartenir à la distribution Debian GNU/Linux version " +"3.0. Il n'y a pas de numéro de version pour les distributions " +"<literal>testing</literal> et <literal>unstable</literal> car elles n'ont " +"pas encore été publiées. Indiquer cette valeur dans le fichier des " +"préférences demanderait ces lignes :" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> +#: apt_preferences.5.xml:382 +#, fuzzy, no-wrap +msgid "" +"Pin: release v=3.0\n" +"Pin: release a=stable, v=3.0\n" +"Pin: release 3.0\n" +msgstr "" +"Pin: release v=3.0\n" +"Pin: release a=stable, v=3.0\n" +"Pin: release 3.0\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:391 +#, fuzzy +msgid "the <literal>Component:</literal> line" +msgstr "La ligne <literal>Component:</literal>" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:392 +#, fuzzy +msgid "" +"names the licensing component associated with the packages in the directory " +"tree of the <filename>Release</filename> file. For example, the line " +"\"Component: main\" specifies that all the packages in the directory tree " +"are from the <literal>main</literal> component, which entails that they are " +"licensed under terms listed in the Debian Free Software Guidelines. " +"Specifying this component in the APT preferences file would require the line:" +msgstr "" +"nomme un composant qui indique le type de licence associée aux paquets " +"situés dans les répertoires sous le fichier <filename>Release</filename>. " +"Par exemple, la ligne <literal>Component: main</literal> indique que tous " +"les exemplaires dans les répertoires appartiennent au composant " +"<literal>main</literal>, c'est-à-dire que leur licence est en accord avec " +"les Directives Debian pour le logiciel libre. Indiquer ce composant dans le " +"fichier des préférences demanderait cette ligne :" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> +#: apt_preferences.5.xml:401 +#, fuzzy, no-wrap +msgid "Pin: release c=main\n" +msgstr "Pin: release c=main\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:407 +#, fuzzy +msgid "the <literal>Origin:</literal> line" +msgstr "La ligne <literal>Origin:</literal>" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:408 +#, fuzzy +msgid "" +"names the originator of the packages in the directory tree of the " +"<filename>Release</filename> file. Most commonly, this is <literal>Debian</" +"literal>. Specifying this origin in the APT preferences file would require " +"the line:" +msgstr "" +"nomme l'origine des paquets situés dans les répertoires sous le fichier " +"<filename>Release</filename>. En général, c'est <literal>Debian</literal>. " +"Indiquer cette origine dans le fichier des préférences demanderait cette " +"ligne :" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> +#: apt_preferences.5.xml:414 +#, fuzzy, no-wrap +msgid "Pin: release o=Debian\n" +msgstr "Pin: release o=Debian\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:420 +#, fuzzy +msgid "the <literal>Label:</literal> line" +msgstr "La ligne <literal>Label:</literal>" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:421 +#, fuzzy +msgid "" +"names the label of the packages in the directory tree of the " +"<filename>Release</filename> file. Most commonly, this is <literal>Debian</" +"literal>. Specifying this label in the APT preferences file would require " +"the line:" +msgstr "" +"indique un label pour les paquets qui se trouvent dans les répertoires sous " +"le fichier <filename>Release</filename>. En général, c'est <literal>Debian</" +"literal>. Indiquer cette origine dans le fichier des préférences demanderait " +"cette ligne :" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> +#: apt_preferences.5.xml:427 +#, fuzzy, no-wrap +msgid "Pin: release l=Debian\n" +msgstr "Pin: release l=Debian\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:328 +#, 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\"/>" +msgstr "" +"Le fichier <filename>Release</filename> se trouve normalement dans le " +"répertoire <filename>.../dists/<replaceable>dist-name</replaceable></" +"filename>, par exemple, <filename>.../dists/stable/Release</filename>, ou " +"<filename>.../dists/woody/Release</filename>. Il consiste en une seule " +"entrée composée de plusieurs lignes qui s'applique à <emphasis>tous</" +"emphasis> les paquets situés dans les répertoires sous le répertoire parent. " +"Contrairement au fichier <filename>Packages</filename>, presque toutes les " +"lignes du fichier <filename>Release</filename> sont pertinentes pour " +"déterminer les priorités : <placeholder type=\"variablelist\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:434 +#, fuzzy +msgid "" +"All of the <filename>Packages</filename> and <filename>Release</filename> " +"files retrieved from locations listed in the &sources-list; file are stored " +"in the directory <filename>/var/lib/apt/lists</filename>, or in the file " +"named by the variable <literal>Dir::State::Lists</literal> in the " +"<filename>apt.conf</filename> file. For example, the file <filename>debian." +"lcs.mit.edu_debian_dists_unstable_contrib_binary-i386_Release</filename> " +"contains the <filename>Release</filename> file retrieved from the site " +"<literal>debian.lcs.mit.edu</literal> for <literal>binary-i386</literal> " +"architecture files from the <literal>contrib</literal> component of the " +"<literal>unstable</literal> distribution." +msgstr "" +"Tous les fichiers <filename>Packages</filename> et <filename>Release</" +"filename> récupérés dans des sources listées par le fichier &sources-list; " +"sont conservés dans le répertoire <filename>/var/lib/apt/lists</filename> ou " +"dans le fichier spécifié par la variable <literal>Dir::State::Lists</" +"literal> dans le fichier <filename>apt.conf</filename>. Par exemple, le " +"fichier <filename>debian.lcs.mit.edu_debian_dists_unstable_contrib_binary-" +"i386_Release</filename> contient le fichier <filename>Release</filename> du " +"site <literal>debian.lcs.mit.edu</literal>, architecture <literal>binary-" +"i386</literal> et composant <literal>contrib</literal> de la distribution " +"<literal>unstable</literal>." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:447 +#, fuzzy +msgid "Optional Lines in an APT Preferences Record" +msgstr "Lignes facultatives dans le fichier des préférences" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:449 +#, fuzzy +msgid "" +"Each record in the APT preferences file can optionally begin with one or " +"more lines beginning with the word <literal>Explanation:</literal>. This " +"provides a place for comments." +msgstr "" +"Toute entrée du fichier des préférences peut commencer par une ou plusieurs " +"lignes contenant le mot <literal>Explanation:</literal>. Cela permet des " +"commentaires." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:453 +#, 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 "" +"La ligne <literal>Pin-Priority:</literal> d'une entrée est facultative. Si " +"elle n'existe pas, APT affecte une priorité inférieure de 1 à la valeur " +"spécifiée sur une ligne commençant par <literal>Pin-Priority: release ...</" +"literal>." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:462 +#, fuzzy +msgid "Tracking Stable" +msgstr "Comment suivre Stable ?" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:470 +#, fuzzy, no-wrap +msgid "" +"Explanation: Uninstall or do not install any Debian-originated\n" +"Explanation: package versions other than those in the stable distro\n" +"Package: *\n" +"Pin: release a=stable\n" +"Pin-Priority: 900\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" +msgstr "" +"Explanation: Ne pas installer des exemplaires d'origine Debian\n" +"Explanation: sauf ceux de la distribution stable\n" +"Package: *\n" +"Pin: release a=stable\n" +"Pin-Priority: 900\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:464 +#, 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 " +"<literal>stable</literal> distribution and a prohibitively low priority to " +"package versions belonging to other <literal>Debian</literal> " +"distributions. <placeholder type=\"programlisting\" id=\"0\"/>" +msgstr "" +"Le fichier des préférences suivant affecte une priorité plus haute que la " +"priorité par défaut (500) à tous les exemplaires appartenant à la " +"distribution <literal>stable</literal> et une priorité prohibitivement basse " +"à tous les exemplaires appartenant à d'autres distributions <literal>Debian</" +"literal>. <placeholder type=\"programlisting\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:487 apt_preferences.5.xml:533 +#: apt_preferences.5.xml:591 +#, fuzzy, no-wrap +msgid "" +"apt-get install <replaceable>package-name</replaceable>\n" +"apt-get upgrade\n" +"apt-get dist-upgrade\n" +msgstr "" +"apt-get install <replaceable>paquet</replaceable>\n" +"apt-get upgrade\n" +"apt-get dist-upgrade\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:482 +#, 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 "" +"Avec le fichier des préférences ci-dessus et un fichier &sources-list; " +"adéquat, les commandes suivantes utiliseront les versions les plus récentes " +"de <literal>stable</literal> pour faire la mise à niveau : <placeholder " +"type=\"programlisting\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:499 +#, fuzzy, no-wrap +msgid "apt-get install <replaceable>package</replaceable>/testing\n" +msgstr "apt-get install <replaceable>paquet</replaceable>/testing\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:493 +#, 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 " +"will not be upgraded again unless this command is given again. <placeholder " +"type=\"programlisting\" id=\"0\"/>" +msgstr "" +"La commande suivante utilisera la version la plus récente de la distribution " +"<literal>testing</literal> pour mettre à niveau le paquet spécifié ; " +"cependant les mises à niveau ultérieures du paquet ne se feront pas à moins " +"de relancer la commande. <placeholder type=\"programlisting\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:505 +#, fuzzy +msgid "Tracking Testing or Unstable" +msgstr "Comment suivre Testing ou Unstable ?" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:514 +#, fuzzy, no-wrap +msgid "" +"Package: *\n" +"Pin: release a=testing\n" +"Pin-Priority: 900\n" +"\n" +"Package: *\n" +"Pin: release a=unstable\n" +"Pin-Priority: 800\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" +msgstr "" +"Package: *\n" +"Pin: release a=testing\n" +"Pin-Priority: 900\n" +"\n" +"Package: *\n" +"Pin: release a=unstable\n" +"Pin-Priority: 800\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:507 +#, 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 " +"lower priority to package versions from the <literal>unstable</literal> " +"distribution, and a prohibitively low priority to package versions from " +"other <literal>Debian</literal> distributions. <placeholder type=" +"\"programlisting\" id=\"0\"/>" +msgstr "" +"Le fichier des préférences suivant affecte une priorité haute aux versions " +"des paquets appartenant à la distribution <literal>testing</literal>, une " +"priorité moindre aux versions appartenant à la distribution " +"<literal>unstable</literal> et une priorité prohibitivement basse aux " +"versions appartenant à d'autres distributions <literal>Debian</literal>. " +"<placeholder type=\"programlisting\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:528 +#, 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 "" +"Avec un fichier &sources-list; approprié et le fichier des préférences ci-" +"dessus, les commandes suivantes utiliseront les versions les plus récentes " +"de <literal>testing</literal> pour faire la mise à niveau : " +"<placeholder type=\"programlisting\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:548 +#, fuzzy, no-wrap +msgid "apt-get install <replaceable>package</replaceable>/unstable\n" +msgstr "apt-get install <replaceable>paquet</replaceable>/unstable\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:539 +#, fuzzy +msgid "" +"The following command will cause APT to upgrade the specified package to the " +"latest version from the <literal>unstable</literal> distribution. " +"Thereafter, <command>apt-get upgrade</command> will upgrade the package to " +"the most recent <literal>testing</literal> version if that is more recent " +"than the installed version, otherwise, to the most recent <literal>unstable</" +"literal> version if that is more recent than the installed version. " +"<placeholder type=\"programlisting\" id=\"0\"/>" +msgstr "" +"La commande suivante utilisera la version la plus récente de la distribution " +"<literal>unstable</literal> pour mettre à niveau le paquet spécifié ; " +"Par la suite, <command>apt-get upgrade</command> mettra le paquet à jour " +"avec la plus récente version dans <literal>testing</literal> si elle est " +"plus récente que la version installée ou avec la plus récente version dans " +"<literal>unstable</literal> si elle est plus récente que la version " +"installée. <placeholder type=\"programlisting\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:555 +msgid "Tracking the evolution of a codename release" +msgstr "" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:569 +#, 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" +msgstr "" +"Explanation: Ne pas installer des exemplaires d'origine Debian\n" +"Explanation: sauf ceux de la distribution stable\n" +"Package: *\n" +"Pin: release a=stable\n" +"Pin-Priority: 900\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:557 +#, 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 " +"specified codename of a distribution and a prohibitively low priority to " +"package versions belonging to other <literal>Debian</literal> distributions, " +"codenames and archives. Note that with this APT preference APT will follow " +"the migration of a release from the archive <literal>testing</literal> to " +"<literal>stable</literal> and later <literal>oldstable</literal>. If you " +"want to follow for example the progress in <literal>testing</literal> " +"notwithstanding the codename changes you should use the example " +"configurations above. <placeholder type=\"programlisting\" id=\"0\"/>" +msgstr "" +"Le fichier des préférences suivant affecte une priorité plus haute que la " +"priorité par défaut (500) à tous les exemplaires appartenant à la " +"distribution <literal>stable</literal> et une priorité prohibitivement basse " +"à tous les exemplaires appartenant à d'autres distributions <literal>Debian</" +"literal>. <placeholder type=\"programlisting\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:586 +#, 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\"/>" +msgstr "" +"Avec le fichier des préférences ci-dessus et un fichier &sources-list; " +"adéquat, les commandes suivantes utiliseront les versions les plus récentes " +"de <literal>stable</literal> pour faire la mise à niveau : <placeholder " +"type=\"programlisting\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:606 +#, fuzzy, no-wrap +msgid "apt-get install <replaceable>package</replaceable>/sid\n" +msgstr "apt-get install <replaceable>paquet</replaceable>/testing\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:597 +#, 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\"/>" +msgstr "" +"La commande suivante utilisera la version la plus récente de la distribution " +"<literal>unstable</literal> pour mettre à niveau le paquet spécifié ; " +"Par la suite, <command>apt-get upgrade</command> mettra le paquet à jour " +"avec la plus récente version dans <literal>testing</literal> si elle est " +"plus récente que la version installée ou avec la plus récente version dans " +"<literal>unstable</literal> si elle est plus récente que la version " +"installée. <placeholder type=\"programlisting\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><para> +#: apt_preferences.5.xml:614 +#, fuzzy +msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;" +msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" + +#. type: Content of: <refentry><refnamediv><refname> +#: sources.list.5.xml:22 sources.list.5.xml:28 +#, fuzzy +msgid "sources.list" +msgstr "sources.list" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: sources.list.5.xml:29 +#, fuzzy +msgid "Package resource list for APT" +msgstr "Liste des sources de paquets" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:33 +#, 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>" +msgstr "" +"La liste des sources de paquets indique où trouver les archives du système " +"de distribution de paquets utilisé. Pour l'instant, cette page de manuel ne " +"documente que le système d'empaquetage utilisé par le système Debian GNU/" +"Linux. Ce fichier de contrôle est <filename>/etc/apt/sources.list</filename>." + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:38 +#, 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 #." +msgstr "" +"La liste des sources est conçue pour prendre en compte un nombre quelconque " +"de sources actives et différents média. Le fichier présente une source par " +"ligne et la source préférée apparaît en premier. Le format de chaque ligne " +"est : <literal>type uri args</literal>. Le premier élément, " +"<literal>type</literal>, détermine le format des <literal>args</literal>. " +"<literal>uri</literal> est un identificateur universel de ressources (URI), " +"qui est un sur-ensemble du plus spécifique et bien connu repère universel de " +"ressources, ou URL. La fin de la ligne peut être un commentaire commençant " +"par un caractère #." + +#. type: Content of: <refentry><refsect1><title> +#: sources.list.5.xml:49 +#, fuzzy +msgid "sources.list.d" +msgstr "sources.list.d" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:50 +#, 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 " +"the regular <filename>sources.list</filename> file. File names need to end " +"with <filename>.list</filename> and may only contain letters (a-z and A-Z), " +"digits (0-9), underscore (_), hyphen (-) and period (.) characters. " +"Otherwise they will be silently ignored." +msgstr "" +"Le répertoire <filename>/etc/apt/sources.list.d</filename> permet de lister " +"des sources de paquets dans des fichiers distincts qui se terminent par " +"<literal>.list</literal>. Leur format est le même que celui du fichier " +"<filename>sources.list</filename>." + +#. type: Content of: <refentry><refsect1><title> +#: sources.list.5.xml:59 +#, fuzzy +msgid "The deb and deb-src types" +msgstr "Les types deb et deb-src." + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:60 +#, 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." +msgstr "" +"Le type <literal>deb</literal> décrit une archive Debian classique à deux " +"niveaux, <filename>distribution/composant</filename>. <literal>distribution</" +"literal> peut prendre l'une des valeurs suivantes : <literal>stable</" +"literal>, <literal>unstable</literal>, ou <literal>testing</literal>, et " +"composant : <literal>main</literal>, <literal>contrib</literal>, " +"<literal>non-free</literal>, ou <literal>non-us</literal>. Le type " +"<literal>deb-src</literal> décrit le code source pour une distribution " +"Debian dans le même format que le type <literal>deb</literal>. Une ligne " +"<literal>deb-src</literal> est nécessaire pour récupérer les index des " +"sources." + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:72 +#, fuzzy +msgid "" +"The format for a <filename>sources.list</filename> entry using the " +"<literal>deb</literal> and <literal>deb-src</literal> types are:" +msgstr "" +"Le format d'une entrée dans <filename>sources.list</filename> utilisant les " +"types <literal>deb</literal> et <literal>deb-src</literal> est de la " +"forme :" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:75 +#, fuzzy, no-wrap +msgid "deb uri distribution [component1] [component2] [...]" +msgstr "deb uri distribution [composant1] [composant2] [...]" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:77 +#, 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." +msgstr "" +"L'URI de type <literal>deb</literal> doit indiquer la base de la " +"distribution Debian dans laquelle APT trouvera les informations dont il a " +"besoin. <literal>distribution</literal> peut spécifier le chemin " +"exact : dans ce cas, on doit omettre les composants et " +"<literal>distribution</literal> doit se terminer par une barre oblique (/). " +"C'est utile quand seule une sous-section particulière de l'archive décrite " +"par cet URI est intéressante. Quand <literal>distribution</literal> " +"n'indique pas un chemin exact, un <literal>composant</literal> au moins doit " +"être présent." + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:86 +#, fuzzy +msgid "" +"<literal>distribution</literal> may also contain a variable, <literal>$(ARCH)" +"</literal> which expands to the Debian architecture (i386, m68k, " +"powerpc, ...) used on the system. This permits architecture-independent " +"<filename>sources.list</filename> files to be used. In general this is only " +"of interest when specifying an exact path, <literal>APT</literal> will " +"automatically generate a URI with the current architecture otherwise." +msgstr "" +"<literal>distribution</literal> peut aussi contenir une variable <literal>" +"$(ARCH)</literal>, qui sera remplacée par l'architecture Debian (i386, m68k, " +"powerpc, ...) sur laquelle s'exécute le système. On peut ainsi utiliser un " +"fichier <filename>sources.list</filename> qui ne dépend pas d'une " +"architecture. En général, ce n'est intéressant que si l'on indique un chemin " +"exact ; sinon <literal>APT</literal> crée automatiquement un URI en " +"fonction de l'architecture effective." + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:94 +#, fuzzy +msgid "" +"Since only one distribution can be specified per line it may be necessary to " +"have multiple lines for the same URI, if a subset of all available " +"distributions or components at that location is desired. APT will sort the " +"URI list after it has generated a complete set internally, and will collapse " +"multiple references to the same Internet host, for instance, into a single " +"connection, so that it does not inefficiently establish an FTP connection, " +"close it, do something else, and then re-establish a connection to that same " +"host. This feature is useful for accessing busy FTP sites with limits on the " +"number of simultaneous anonymous users. APT also parallelizes connections to " +"different hosts to more effectively deal with sites with low bandwidth." +msgstr "" +"Puisqu'on ne peut indiquer qu'une seule distribution par ligne, il peut être " +"nécessaire de disposer le même URI sur plusieurs lignes quand on veut " +"accéder à un sous-ensemble des distributions ou composants disponibles à " +"cette adresse. APT trie les URI après avoir crée pour lui-même la liste " +"complète ; il regroupe les références multiples au même hôte Internet " +"en vue d'une connexion unique et il évite ainsi, par exemple, d'établir une " +"connexion FTP, de la fermer, faire autre chose, puis d'établir encore cette " +"connexion. Cette fonctionnalité permet l'accès à des sites FTP surchargés " +"qui limitent le nombre de connexions simultanées pour les utilisateurs " +"anonymes. APT parallélise aussi les connexions à différents hôtes pour " +"tirer plus efficacement parti des sites à faible bande passante." + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:106 +#, fuzzy +msgid "" +"It is important to list sources in order of preference, with the most " +"preferred source listed first. Typically this will result in sorting by " +"speed from fastest to slowest (CD-ROM followed by hosts on a local network, " +"followed by distant Internet hosts, for example)." +msgstr "" +"Il est important d'indiquer les sources par ordre de préférence, la source " +"principale apparaissant en premier. Un tri est fait, de la plus rapide à la " +"plus lente ; par exemple, un cédérom suivi par les hôtes d'un réseau " +"local, puis les hôtes distants." + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:111 +#, fuzzy +msgid "Some examples:" +msgstr "Voici quelques exemples :" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:113 +#, 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" +" " +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" +" " + +#. type: Content of: <refentry><refsect1><title> +#: sources.list.5.xml:119 +#, fuzzy +msgid "URI specification" +msgstr "La spécification des URI" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: sources.list.5.xml:124 +#, fuzzy +msgid "file" +msgstr "file" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:126 +#, fuzzy +msgid "" +"The file scheme allows an arbitrary directory in the file system to be " +"considered an archive. This is useful for NFS mounts and local mirrors or " +"archives." +msgstr "" +"Le procédé <literal>file</literal> permet qu'un répertoire arbitraire au " +"sein du système de fichier soit considéré comme une archive. On s'en sert " +"avec les montages NFS, les miroirs et les archives locaux." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:133 +#, fuzzy +msgid "" +"The cdrom scheme allows APT to use a local CDROM drive with media swapping. " +"Use the &apt-cdrom; program to create cdrom entries in the source list." +msgstr "" +"Le procédé <literal>cdrom</literal> permet l'utilisation d'un lecteur de " +"cédérom avec la possibilité de changer de media. Utilisez le programme &apt-" +"cdrom; pour créer des entrées dans la liste des sources." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:140 +#, 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." +msgstr "" +"Le procédé <literal>http</literal> indique un serveur HTTP comme archive. Si " +"une variable d'environnement <envar>http_proxy</envar> (au format http://" +"server:port/) existe, le serveur mandataire indiqué par <envar>http_proxy</" +"envar> est utilisé. Quand un serveur mandataire HTTP/1.1 demande une " +"authentification, on peut utiliser la chaîne http://user:pass@server:port/. " +"Notez qu'il s'agit d'une méthode d'authentification peu sûre." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:151 +#, fuzzy +msgid "" +"The ftp scheme specifies an FTP server for the archive. APT's FTP behavior " +"is highly configurable; for more information see the &apt-conf; manual page. " +"Please note that a ftp proxy can be specified by using the <envar>ftp_proxy</" +"envar> environment variable. It is possible to specify a http proxy (http " +"proxy servers often understand ftp urls) using this method and ONLY this " +"method. ftp proxies using http specified in the configuration file will be " +"ignored." +msgstr "" +"Le procédé <literal>ftp</literal> indique un serveur FTP comme archive. Le " +"fonctionnement en mode ftp est largement configurable ; référez-vous à " +"la page de manuel de &apt-cdrom; pour d'autres informations. On remarquera " +"qu'on peut indiquer un mandataire ftp avec la variable d'environnement " +"<envar>ftp_proxy</envar>. On peut aussi spécifier un mandataire http (les " +"serveurs mandataires http comprennent souvent les URL ftp) en utilisant " +"cette méthode et SEULEMENT cette méthode. Les mandataires ftp utilisant http " +"et qui sont spécifiés dans le fichier de configuration seront ignorés." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: sources.list.5.xml:160 +msgid "copy" +msgstr "copy" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:162 +msgid "" +"The copy scheme is identical to the file scheme except that packages are " +"copied into the cache directory instead of used directly at their location. " +"This is useful for people using a zip disk to copy files around with APT." +msgstr "" +"Le procédé <literal>copy</literal> est identique au procédé <literal>file</" +"literal> excepté que les paquets sont copiés dans le cache du répertoire au " +"lieu d'être utilisés directement depuis leur emplacement. C'est utile aux " +"gens qui utilisent un disque zip pour recopier des fichiers avec APT." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: sources.list.5.xml:167 +msgid "rsh" +msgstr "rsh" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: sources.list.5.xml:167 +msgid "ssh" +msgstr "ssh" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:169 +msgid "" +"The rsh/ssh method invokes rsh/ssh to connect to a remote host as a given " +"user and access the files. It is a good idea to do prior arrangements with " +"RSA keys or rhosts. Access to files on the remote uses standard " +"<command>find</command> and <command>dd</command> commands to perform the " +"file transfers from the remote." +msgstr "" +"Le procédé rsh/ssh utilise rsh/ssh pour se connecter à une machine distante " +"en tant qu'un certain utilisateur et pour accéder aux fichiers. " +"Il est préférable au préalable de s'arranger " +"avec des clés RSA ou bien rhosts. Pour l'accès aux " +"fichiers de la machine distante et le transfert, on utilise les commandes " +"standard <command>find</command> et <command>dd</command>." + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:121 +msgid "" +"The currently recognized URI types are cdrom, file, http, ftp, copy, ssh, " +"rsh. <placeholder type=\"variablelist\" id=\"0\"/>" +msgstr "" +"Les types d'URI actuellement reconnus sont : cdrom, file, http, ftp, copy, ssh et rsh. " +"<placeholder type=\"variablelist\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:181 +msgid "" +"Uses the archive stored locally (or NFS mounted) at /home/jason/debian for " +"stable/main, stable/contrib, and stable/non-free." +msgstr "" +"Utiliser l'archive stockée localement (ou montée via NFS) dans /home/jason/" +"debian pour stable/main, stable/contrib et stable/non-free." + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:183 +#, no-wrap +msgid "deb file:/home/jason/debian stable main contrib non-free" +msgstr "deb file:/home/jason/debian stable main contrib non-free" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:185 +msgid "As above, except this uses the unstable (development) distribution." +msgstr "" +"Comme ci-dessus, excepté que cette ligne utilise la distribution « " +"unstable » (développement)." + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:186 +#, no-wrap +msgid "deb file:/home/jason/debian unstable main contrib non-free" +msgstr "deb file:/home/jason/debian unstable main contrib non-free" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:188 +msgid "Source line for the above" +msgstr "La précédente ligne, mais pour les sources." + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:189 +#, no-wrap +msgid "deb-src file:/home/jason/debian unstable main contrib non-free" +msgstr "deb-src file:/home/jason/debian unstable main contrib non-free" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:191 +msgid "" +"Uses HTTP to access the archive at archive.debian.org, and uses only the " +"hamm/main area." +msgstr "" +"Utiliser HTTP pour accéder à l'archive située à archive.debian.org, et " +"n'utiliser que la section hamm/main." + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:193 +#, no-wrap +msgid "deb http://archive.debian.org/debian-archive hamm main" +msgstr "deb http://archive.debian.org/debian-archive hamm main" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:195 +msgid "" +"Uses FTP to access the archive at ftp.debian.org, under the debian " +"directory, and uses only the stable/contrib area." +msgstr "" +"Utiliser FTP pour accéder à l'archive située à ftp.debian.org, dans le " +"répertoire debian, et n'utiliser que la section stable/contrib." + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:197 +#, no-wrap +msgid "deb ftp://ftp.debian.org/debian stable contrib" +msgstr "deb ftp://ftp.debian.org/debian stable contrib" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:199 +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." +msgstr "" +"Utiliser FTP pour accéder à l'archive située à ftp.debian.org, dans le " +"répertoire debian, et n'utiliser que la section unstable/contrib. Si cette " +"ligne et celle de l'exemple précédent dans <filename>sources.list</filename> " +"apparaissent, une seule session FTP sera utilisée pour les deux lignes." + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:203 +#, no-wrap +msgid "deb ftp://ftp.debian.org/debian unstable contrib" +msgstr "deb ftp://ftp.debian.org/debian unstable contrib" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:205 +msgid "" +"Uses HTTP to access the archive at nonus.debian.org, under the debian-non-US " +"directory." +msgstr "" +"Utiliser HTTP pour accéder à l'archive située à nonus.debian.org, dans le " +"répertoire debian-non-US." + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:207 +#, no-wrap +msgid "deb http://nonus.debian.org/debian-non-US stable/non-US main contrib non-free" +msgstr "deb http://nonus.debian.org/debian-non-US stable/non-US main contrib non-free" + +#. type: Content of: <refentry><refsect1><para><literallayout> +#: sources.list.5.xml:216 +#, no-wrap +msgid "deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/" +msgstr "deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:209 +msgid "" +"Uses HTTP to access the archive at nonus.debian.org, under the debian-non-US " +"directory, and uses only files found under <filename>unstable/binary-i386</" +"filename> on i386 machines, <filename>unstable/binary-m68k</filename> on " +"m68k, and so forth for other supported architectures. [Note this example " +"only illustrates how to use the substitution variable; non-us is no longer " +"structured like this] <placeholder type=\"literallayout\" id=\"0\"/>" +msgstr "" +"Utiliser HTTP pour accéder à l'archive située à nonus.debian.org, dans le " +"répertoire debian-non-US, et n'utiliser que les fichiers trouvés dans " +"<filename>unstable/binary-i386</filename> pour les machines i386, dans " +"<filename>unstable/binary-m68k</filename> pour les machines m68k et ainsi de " +"suite pour les autres architectures reconnues. [Notez que cet exemple montre " +"seulement la manière d'utiliser la variable à substituer, non-us n'étant " +"plus structuré de cette manière.] <placeholder type=\"literallayout\" id=\"0" +"\"/>" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:221 +msgid "&apt-cache; &apt-conf;" +msgstr "&apt-cache; &apt-conf;" + +#, fuzzy +#~ msgid "" +#~ "Source packages are tracked separately from binary packages via " +#~ "<literal>deb-src</literal> type lines in the &sources-list; file. This " +#~ "means that you will need to add such a line for each repository you want " +#~ "to get sources 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 "" +#~ "Les paquets source sont gérés indépendamment des paquets binaires, via " +#~ "les lignes de type <literal>deb-src</literal> dans le fichier &sources-" +#~ "list;. On n'obtiendra probablement pas les mêmes sources que celles du " +#~ "paquet installé ou celles du paquet qu'on pourrait installer." + +#, fuzzy +#~ msgid "" +#~ "If the <option>--compile</option> options is specified then the package " +#~ "will be compiled to a binary .deb using <command>dpkg-buildpackage</" +#~ "command>, if <option>--download-only</option> is specified then the " +#~ "source package will not be unpacked." +#~ msgstr "" +#~ "Si l'option <option>--compile</option> est spécifiée, le paquet est " +#~ "compilé en un binaire .deb avec <command>dpkg-buildpackage</command>. Si " +#~ "<option>--download-only</option> est spécifié, le source n'est pas " +#~ "décompacté." -- cgit v1.2.3 From c914647fb05653878a14ae391f52b5e94cc73b26 Mon Sep 17 00:00:00 2001 From: David Kalnischkies <kalnischkies@gmail.com> Date: Mon, 7 Sep 2009 14:59:19 +0200 Subject: reintroduce #clear and #include in the config files, they there broken since 0.7.21 with the introduction of #-comments --- apt-pkg/contrib/configuration.cc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/apt-pkg/contrib/configuration.cc b/apt-pkg/contrib/configuration.cc index b83ece3e4..4e8586e83 100644 --- a/apt-pkg/contrib/configuration.cc +++ b/apt-pkg/contrib/configuration.cc @@ -601,9 +601,11 @@ bool ReadConfigFile(Configuration &Conf,const string &FName,bool AsSectional, InQuote = !InQuote; if (InQuote == true) continue; - - if ((*I == '/' && I + 1 != End && I[1] == '/') || *I == '#') - { + + if ((*I == '/' && I + 1 != End && I[1] == '/') || + (*I == '#' && strcmp(string(I,I+6).c_str(),"#clear") != 0 && + strcmp(string(I,I+8).c_str(),"#include") != 0)) + { End = I; break; } -- cgit v1.2.3 From 1f99b6d338186efe80e314268db44600d3c94a1e Mon Sep 17 00:00:00 2001 From: David Kalnischkies <kalnischkies@gmail.com> Date: Tue, 8 Sep 2009 09:47:12 +0200 Subject: replace unknown multibytes with ? in UTF8ToCharset (Closes: #545208) instead of ignoring the returncode and truncating the string on error --- apt-pkg/contrib/strutl.cc | 15 +++++++++++++-- debian/changelog | 2 ++ 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/apt-pkg/contrib/strutl.cc b/apt-pkg/contrib/strutl.cc index 1683868c8..4c05f2df8 100644 --- a/apt-pkg/contrib/strutl.cc +++ b/apt-pkg/contrib/strutl.cc @@ -67,9 +67,20 @@ bool UTF8ToCodeset(const char *codeset, const string &orig, string *dest) outbuf = new char[insize+1]; outptr = outbuf; - iconv(cd, &inptr, &insize, &outptr, &outsize); - *outptr = '\0'; + while (insize != 0) + { + size_t const err = iconv(cd, &inptr, &insize, &outptr, &outsize); + if (err == (size_t)(-1)) + { + insize--; + outsize++; + inptr++; + *outptr = '?'; + outptr++; + } + } + *outptr = '\0'; *dest = outbuf; delete[] outbuf; diff --git a/debian/changelog b/debian/changelog index 349c95038..34691b1fb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -20,6 +20,8 @@ apt (0.7.24) UNRELEASED; urgency=low - simplify the makefiles needed for po4a manpages * apt-pkg/contrib/configuration.cc: - add a helper to easily get a vector of strings from the config + * apt-pkg/contrib/strutl.cc: + - replace unknown multibytes with ? in UTF8ToCharset (Closes: #545208) -- David Kalnischkies <kalnischkies@gmail.com> Fri, 28 Aug 2009 09:40:08 +0200 -- cgit v1.2.3 From 6da747804c63f103f431706af80f793b86c41993 Mon Sep 17 00:00:00 2001 From: David Kalnischkies <kalnischkies@gmail.com> Date: Tue, 8 Sep 2009 14:27:17 +0200 Subject: doc/apt-get.8.xml: fix two little typos in the --simulate description. (half-closes #545059) --- debian/changelog | 2 ++ doc/apt-get.8.xml | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 34691b1fb..3d8dc292a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -22,6 +22,8 @@ apt (0.7.24) UNRELEASED; urgency=low - add a helper to easily get a vector of strings from the config * apt-pkg/contrib/strutl.cc: - replace unknown multibytes with ? in UTF8ToCharset (Closes: #545208) + * doc/apt-get.8.xml: + - fix two little typos in the --simulate description. -- David Kalnischkies <kalnischkies@gmail.com> Fri, 28 Aug 2009 09:40:08 +0200 diff --git a/doc/apt-get.8.xml b/doc/apt-get.8.xml index b87e17247..3a1292198 100644 --- a/doc/apt-get.8.xml +++ b/doc/apt-get.8.xml @@ -384,9 +384,9 @@ Configuration Item: <literal>APT::Get::Simulate</literal>.</para> <para>Simulation run as user will deactivate locking (<literal>Debug::NoLocking</literal>) - automatical. Also a notice will be displayed indicating that this is only a simulation, - if the option <literal>APT::Get::Show-User-Simulation-Note</literal> is set (Default: true) - Neigther NoLocking nor the notice will be triggered if run as root (root should know what + automatic. Also a notice will be displayed indicating that this is only a simulation, + if the option <literal>APT::Get::Show-User-Simulation-Note</literal> is set (Default: true). + Neither NoLocking nor the notice will be triggered if run as root (root should know what he is doing without further warnings by <literal>apt-get</literal>).</para> <para>Simulate prints out -- cgit v1.2.3 From 8bd02d8bd6bc46bc38924635afc09fdde50b6bf5 Mon Sep 17 00:00:00 2001 From: David Kalnischkies <kalnischkies@gmail.com> Date: Tue, 8 Sep 2009 15:02:15 +0200 Subject: Rework the CompressionTypes system by adding an Order subgroup to simplify customisation of the order and improve the documentation about this setting group. --- apt-pkg/aptconfiguration.cc | 56 +++++++++++++++++++++++++++----------------- debian/changelog | 3 +++ doc/apt.conf.5.xml | 32 ++++++++++++++++++------- doc/examples/configure-index | 9 +++++++ 4 files changed, 69 insertions(+), 31 deletions(-) diff --git a/apt-pkg/aptconfiguration.cc b/apt-pkg/aptconfiguration.cc index 1a8e8262f..45ae9bed5 100644 --- a/apt-pkg/aptconfiguration.cc +++ b/apt-pkg/aptconfiguration.cc @@ -14,6 +14,7 @@ #include <vector> #include <string> +#include <algorithm> /*}}}*/ namespace APT { // getCompressionTypes - Return Vector of usbale compressiontypes /*{{{*/ @@ -29,41 +30,52 @@ const Configuration::getCompressionTypes(bool const &Cached) { types.clear(); } + // setup the defaults for the compressiontypes => method mapping + _config->CndSet("Acquire::CompressionTypes::bz2","bzip2"); + _config->CndSet("Acquire::CompressionTypes::lzma","lzma"); + _config->CndSet("Acquire::CompressionTypes::gz","gzip"); + // Set default application paths to check for optional compression types _config->CndSet("Dir::Bin::lzma", "/usr/bin/lzma"); _config->CndSet("Dir::Bin::bzip2", "/bin/bzip2"); - ::Configuration::Item const *Opts = _config->Tree("Acquire::CompressionTypes"); - if (Opts != 0) - Opts = Opts->Child; + // accept non-list order as override setting for config settings on commandline + std::string const overrideOrder = _config->Find("Acquire::CompressionTypes::Order",""); + if (overrideOrder.empty() == false) + types.push_back(overrideOrder); - // at first, move over the options to setup at least the default options - bool foundLzma=false, foundBzip2=false, foundGzip=false; - for (; Opts != 0; Opts = Opts->Next) { - if (Opts->Value == "lzma") - foundLzma = true; - else if (Opts->Value == "bz2") - foundBzip2 = true; - else if (Opts->Value == "gz") - foundGzip = true; + // load the order setting into our vector + std::vector<std::string> const order = _config->FindVector("Acquire::CompressionTypes::Order"); + for (std::vector<std::string>::const_iterator o = order.begin(); + o != order.end(); o++) { + if ((*o).empty() == true) + continue; + // ignore types we have no method ready to use + if (_config->Exists(string("Acquire::CompressionTypes::").append(*o)) == false) + continue; + // ignore types we have no app ready to use + string const appsetting = string("Dir::Bin::").append(*o); + if (_config->Exists(appsetting) == true) { + std::string const app = _config->FindFile(appsetting.c_str(), ""); + if (app.empty() == false && FileExists(app) == false) + continue; + } + types.push_back(*o); } - // setup the defaults now - if (!foundBzip2) - _config->Set("Acquire::CompressionTypes::bz2","bzip2"); - if (!foundLzma) - _config->Set("Acquire::CompressionTypes::lzma","lzma"); - if (!foundGzip) - _config->Set("Acquire::CompressionTypes::gz","gzip"); - - // move again over the option tree to finially calculate our result + // move again over the option tree to add all missing compression types ::Configuration::Item const *Types = _config->Tree("Acquire::CompressionTypes"); if (Types != 0) Types = Types->Child; for (; Types != 0; Types = Types->Next) { + if (Types->Tag == "Order" || Types->Tag.empty() == true) + continue; + // ignore types we already have in the vector + if (std::find(types.begin(),types.end(),Types->Tag) != types.end()) + continue; + // ignore types we have no app ready to use string const appsetting = string("Dir::Bin::").append(Types->Value); - // ignore compression types we have no app ready to use if (appsetting.empty() == false && _config->Exists(appsetting) == true) { std::string const app = _config->FindFile(appsetting.c_str(), ""); if (app.empty() == false && FileExists(app) == false) diff --git a/debian/changelog b/debian/changelog index 3d8dc292a..5ddd84117 100644 --- a/debian/changelog +++ b/debian/changelog @@ -24,6 +24,9 @@ apt (0.7.24) UNRELEASED; urgency=low - replace unknown multibytes with ? in UTF8ToCharset (Closes: #545208) * doc/apt-get.8.xml: - fix two little typos in the --simulate description. + * apt-pkg/aptconfiguration.cc, doc/apt.conf.5.xml: + - add an order subgroup to the compression types to simplify reordering + a bit and improve the documentation for this option group. -- David Kalnischkies <kalnischkies@gmail.com> Fri, 28 Aug 2009 09:40:08 +0200 diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml index e0ce0db40..92ac5ec04 100644 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@ -90,7 +90,7 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; <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.</para> + specified element and all its descendants are erased.</para> <para>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 @@ -312,16 +312,30 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; <varlistentry><term>CompressionTypes</term> <listitem><para>List of compression types which are understood by the acquire methods. Files like <filename>Packages</filename> can be available in various compression formats. - This list defines in which order the acquire methods will try to download these files. - Per default <command>bzip2</command> compressed files will be prefered over - <command>lzma</command>, <command>gzip</command> and uncompressed files. The syntax for - the configuration fileentry is + Per default the acquire methods can decompress <command>bzip2</command>, <command>lzma</command> + and <command>gzip</command> compressed files, with this setting more formats can be added + on the fly or the used method can be changed. The syntax for this is: <synopsis>Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> "<replaceable>Methodname</replaceable>";</synopsis> - e.g. <synopsis>Acquire::CompressionTypes::bz2 "bzip2";</synopsis> - Note that at runtime the <literal>Dir::Bin::<replaceable>Methodname</replaceable></literal> will + </para><para>Also the <literal>Order</literal> subgroup can be used to define in which order + the acquire system will try to download the compressed files. The acquire system will try the first + and proceed with the next compression type in this list on error, so to prefer one over the other type + simple add the preferred type at first - not already added default types will be added at run time + to the end of the list, so e.g. <synopsis>Acquire::CompressionTypes::Order:: "gz";</synopsis> can + be used to prefer <command>gzip</command> compressed files over <command>bzip2</command> and <command>lzma</command>. + If <command>lzma</command> should be preferred over <command>gzip</command> and <command>bzip2</command> the + configure setting should look like this <synopsis>Acquire::CompressionTypes::Order { "lzma"; "gz"; };</synopsis> + It is not needed to add <literal>bz2</literal> explicit to the list as it will be added automatic.</para> + <para>Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</replaceable></literal> will be checked: If this setting exists the method will only be used if this file exists, e.g. for - the bzip2 method above (the inbuilt) setting is <literallayout>Dir::Bin::bzip2 "/bin/bzip2";</literallayout> - </para></listitem> + the bzip2 method (the inbuilt) setting is <literallayout>Dir::Bin::bzip2 "/bin/bzip2";</literallayout> + Note also that list entries specified on the commandline will be added at the end of the list + specified in the configuration files, but before the default entries. To prefer a type in this case + over the ones specified in in the configuration files you can set the option direct - not in list style. + This will not override the defined list, it will only prefix the list with this type.</para> + <para>While it is possible to add an empty compression type to the order list, but APT in its current + version doesn't understand it correctly and will display many warnings about not downloaded files - + these warnings are most of the time false negatives. Future versions will maybe include a way to + really prefer uncompressed files to support the usage of local mirrors.</para></listitem> </varlistentry> </variablelist> </para> diff --git a/doc/examples/configure-index b/doc/examples/configure-index index 5dc7b5246..8025fa4b4 100644 --- a/doc/examples/configure-index +++ b/doc/examples/configure-index @@ -246,6 +246,15 @@ Acquire { Options {"--ignore-time-conflict";} // not very useful on a normal system }; + + CompressionTypes + { + bz2 "bzip2"; + lzma "lzma"; + gz "gzip"; + + Order { "gz"; "lzma"; "bz2"; }; + }; }; // Directory layout -- cgit v1.2.3 From 1221c3a38f9962ea7ac866eb507fdd798481b5d4 Mon Sep 17 00:00:00 2001 From: David Kalnischkies <kalnischkies@gmail.com> Date: Tue, 8 Sep 2009 17:43:47 +0200 Subject: doc/apt.ent: move the description of files to globally usable entities --- debian/changelog | 2 ++ doc/apt-cache.8.xml | 17 ++------------ doc/apt-get.8.xml | 49 +++++----------------------------------- doc/apt.conf.5.xml | 10 +-------- doc/apt.ent | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 74 insertions(+), 68 deletions(-) diff --git a/debian/changelog b/debian/changelog index 5ddd84117..c5a786919 100644 --- a/debian/changelog +++ b/debian/changelog @@ -27,6 +27,8 @@ apt (0.7.24) UNRELEASED; urgency=low * apt-pkg/aptconfiguration.cc, doc/apt.conf.5.xml: - add an order subgroup to the compression types to simplify reordering a bit and improve the documentation for this option group. + * doc/apt.ent, all man pages: + - move the description of files to globally usable entities -- David Kalnischkies <kalnischkies@gmail.com> Fri, 28 Aug 2009 09:40:08 +0200 diff --git a/doc/apt-cache.8.xml b/doc/apt-cache.8.xml index 8b76f55b9..26d55a519 100644 --- a/doc/apt-cache.8.xml +++ b/doc/apt-cache.8.xml @@ -357,21 +357,8 @@ Reverse Provides: <refsect1><title>Files - /etc/apt/sources.list - Locations to fetch packages from. - Configuration Item: Dir::Etc::SourceList. - - - &statedir;/lists/ - Storage area for state information for each package resource specified in - &sources-list; - Configuration Item: Dir::State::Lists. - - - &statedir;/lists/partial/ - Storage area for state information in transit. - Configuration Item: Dir::State::Lists (implicit partial). - + &file-sourceslist; + &file-statelists; diff --git a/doc/apt-get.8.xml b/doc/apt-get.8.xml index 3a1292198..ec773edeb 100644 --- a/doc/apt-get.8.xml +++ b/doc/apt-get.8.xml @@ -558,50 +558,11 @@ Files - /etc/apt/sources.list - Locations to fetch packages from. - Configuration Item: Dir::Etc::SourceList. - - - /etc/apt/apt.conf - APT configuration file. - Configuration Item: Dir::Etc::Main. - - - /etc/apt/apt.conf.d/ - APT configuration file fragments. - Configuration Item: Dir::Etc::Parts. - - - /etc/apt/preferences - 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: Dir::Etc::Preferences. - - - &cachedir;/archives/ - Storage area for retrieved package files. - Configuration Item: Dir::Cache::Archives. - - - &cachedir;/archives/partial/ - Storage area for package files in transit. - Configuration Item: Dir::Cache::Archives (implicit partial). - - - &statedir;/lists/ - Storage area for state information for each package resource specified in - &sources-list; - Configuration Item: Dir::State::Lists. - - - &statedir;/lists/partial/ - Storage area for state information in transit. - Configuration Item: Dir::State::Lists (implicit partial). - + &file-sourceslist; + &file-aptconf; + &file-preferences; + &file-cachearchives; + &file-statelists; diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml index 92ac5ec04..81be753f9 100644 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@ -858,15 +858,7 @@ is commented. Files - /etc/apt/apt.conf - APT configuration file. - Configuration Item: Dir::Etc::Main. - - - /etc/apt/apt.conf.d/ - APT configuration file fragments. - Configuration Item: Dir::Etc::Parts. - + &file-aptconf; diff --git a/doc/apt.ent b/doc/apt.ent index 43ac2f8e5..9a4c17bcd 100644 --- a/doc/apt.ent +++ b/doc/apt.ent @@ -289,3 +289,67 @@ "> +/etc/apt/apt.conf + APT configuration file. + Configuration Item: Dir::Etc::Main. + + + /etc/apt/apt.conf.d/ + APT configuration file fragments. + Configuration Item: Dir::Etc::Parts. + +"> + +&cachedir;/archives/ + Storage area for retrieved package files. + Configuration Item: Dir::Cache::Archives. + + + &cachedir;/archives/partial/ + Storage area for package files in transit. + Configuration Item: Dir::Cache::Archives (implicit partial). + +"> + +/etc/apt/preferences + 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: Dir::Etc::Preferences. + + + /etc/apt/preferences.d/ + File fragments for the version preferences. + Configuration Item: Dir::Etc::PreferencesParts. + +"> + +/etc/apt/sources.list + Locations to fetch packages from. + Configuration Item: Dir::Etc::SourceList. + + + /etc/apt/sources.list.d/ + File fragments for locations to fetch packages from. + Configuration Item: Dir::Etc::SourceParts. + +"> + +&statedir;/lists/ + Storage area for state information for each package resource specified in + &sources-list; + Configuration Item: Dir::State::Lists. + + + &statedir;/lists/partial/ + Storage area for state information in transit. + Configuration Item: Dir::State::Lists (implicit partial). + +"> -- cgit v1.2.3 From daa4aa525a9d0de9a9a64be59615fc4be044bb83 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Tue, 8 Sep 2009 17:47:59 +0200 Subject: document the new preferences.d folder in apt_preferences(Closes: #544017) --- debian/changelog | 2 ++ doc/apt_preferences.5.xml | 10 +++++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index c5a786919..eebef40ff 100644 --- a/debian/changelog +++ b/debian/changelog @@ -29,6 +29,8 @@ apt (0.7.24) UNRELEASED; urgency=low a bit and improve the documentation for this option group. * doc/apt.ent, all man pages: - move the description of files to globally usable entities + * doc/apt_preferences.5.xml: + - document the new preferences.d folder (Closes: #544017) -- David Kalnischkies Fri, 28 Aug 2009 09:40:08 +0200 diff --git a/doc/apt_preferences.5.xml b/doc/apt_preferences.5.xml index 12ea606b7..159d61f2b 100644 --- a/doc/apt_preferences.5.xml +++ b/doc/apt_preferences.5.xml @@ -32,7 +32,8 @@ Description The APT preferences file /etc/apt/preferences -can be used to control which versions of packages will be selected +and the fragment files in the /etc/apt/preferences.d/ +folder can be used to control which versions of packages will be selected for installation. Several versions of a package may be available for installation when @@ -610,6 +611,13 @@ apt-get install package/sid + +Files + + &file-preferences; + + + See Also &apt-get; &apt-cache; &apt-conf; &sources-list; -- cgit v1.2.3 From ebf2e25b204195892b6c4866b1517755efb590b4 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Tue, 8 Sep 2009 23:11:11 +0200 Subject: add text at the top without failing in rred (Closes: #545694) Patch from Bernhard R. Link, thanks! --- debian/changelog | 2 ++ methods/rred.cc | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index eebef40ff..9aa1f6860 100644 --- a/debian/changelog +++ b/debian/changelog @@ -31,6 +31,8 @@ apt (0.7.24) UNRELEASED; urgency=low - move the description of files to globally usable entities * doc/apt_preferences.5.xml: - document the new preferences.d folder (Closes: #544017) + * methods/rred.cc: + - add at the top without failing (by Bernhard R. Link, Closes: #545694) -- David Kalnischkies Fri, 28 Aug 2009 09:40:08 +0200 diff --git a/methods/rred.cc b/methods/rred.cc index 6fa57f3a6..27d95bdde 100644 --- a/methods/rred.cc +++ b/methods/rred.cc @@ -174,7 +174,7 @@ int RredMethod::ed_file(FILE *ed_cmds, FILE *in_file, FILE *out_file, hash); /* read the rest from infile */ - if (result > 0) { + if (result >= 0) { while (fgets(buffer, BUF_SIZE, in_file) != NULL) { written = fwrite(buffer, 1, strlen(buffer), out_file); hash->Add((unsigned char*)buffer, written); -- cgit v1.2.3 From 453c7548fefd3c13927cb8a10e16cca121eb144b Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 9 Sep 2009 14:08:40 +0200 Subject: add amd64 for cross building (by Mikhail Gusarov, Closes: #513058) --- buildlib/sizetable | 3 ++- debian/changelog | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/buildlib/sizetable b/buildlib/sizetable index b5782360c..372ddd091 100644 --- a/buildlib/sizetable +++ b/buildlib/sizetable @@ -11,6 +11,7 @@ # The format is:- # CPU endian sizeof: char, int, short, long i386 little 1 4 2 4 +amd64 little 1 4 2 8 armeb big 1 4 2 4 arm little 1 4 2 4 alpha little 1 4 2 8 @@ -21,4 +22,4 @@ m68k big 1 4 2 4 powerpc big 1 4 2 4 mips big 1 4 2 4 hppa big 1 4 2 4 -m32r big 1 4 2 4 \ No newline at end of file +m32r big 1 4 2 4 diff --git a/debian/changelog b/debian/changelog index 9aa1f6860..c308c05aa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -33,6 +33,8 @@ apt (0.7.24) UNRELEASED; urgency=low - document the new preferences.d folder (Closes: #544017) * methods/rred.cc: - add at the top without failing (by Bernhard R. Link, Closes: #545694) + * buildlib/sizetable: + - add amd64 for cross building (by Mikhail Gusarov, Closes: #513058) -- David Kalnischkies Fri, 28 Aug 2009 09:40:08 +0200 -- cgit v1.2.3 From 159cf2bd7513b4bfa4e8da0526f3562f8610db67 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 9 Sep 2009 14:15:33 +0200 Subject: debian/prerm: remove file as nobody will upgrade from 0.4.10 anymore --- debian/changelog | 2 ++ debian/prerm | 15 --------------- 2 files changed, 2 insertions(+), 15 deletions(-) delete mode 100755 debian/prerm diff --git a/debian/changelog b/debian/changelog index c308c05aa..6b4b41478 100644 --- a/debian/changelog +++ b/debian/changelog @@ -35,6 +35,8 @@ apt (0.7.24) UNRELEASED; urgency=low - add at the top without failing (by Bernhard R. Link, Closes: #545694) * buildlib/sizetable: - add amd64 for cross building (by Mikhail Gusarov, Closes: #513058) + * debian/prerm: + - remove file as nobody will upgrade from 0.4.10 anymore -- David Kalnischkies Fri, 28 Aug 2009 09:40:08 +0200 diff --git a/debian/prerm b/debian/prerm deleted file mode 100755 index 4a8d47782..000000000 --- a/debian/prerm +++ /dev/null @@ -1,15 +0,0 @@ -#! /bin/sh - -set -e - -#DEBHELPER# - -if [ "$1" = "upgrade" -o "$1" = "failed-upgrade" ] && - dpkg --compare-versions "$2" "<<" 0.4.10 -then - if [ ! -d /var/state/apt/ ]; then - ln -s /var/lib/apt /var/state/apt - touch /var/lib/apt/lists/partial/.delete-me-later - fi -fi - -- cgit v1.2.3 From c9e62a0147445b816d4cb1009fbd6fcc7de29f68 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 9 Sep 2009 15:25:21 +0200 Subject: add the fr generated .xml files to the ignore list --- .bzrignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.bzrignore b/.bzrignore index bad8837c6..d004d22f0 100644 --- a/.bzrignore +++ b/.bzrignore @@ -22,6 +22,7 @@ doc/*/apt.ent # older translation methods translate in this files # so we can not ignore it for all translations now doc/ja/*.xml +doc/fr/*.xml # FIXME: files generated by deprecated sgml man pages doc/es/manpage.links -- cgit v1.2.3 From 388b9071a956d0a5fbf6ffa4fdef8c3bb1f755cd Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 9 Sep 2009 15:26:11 +0200 Subject: remove the suggestion on gnome-apt as it was removed from debian see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=414526 --- debian/changelog | 2 ++ debian/control | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index b5cedbe2e..41620d3cb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -37,6 +37,8 @@ apt (0.7.24) UNRELEASED; urgency=low - add amd64 for cross building (by Mikhail Gusarov, Closes: #513058) * debian/prerm: - remove file as nobody will upgrade from 0.4.10 anymore + * debian/control: + - remove gnome-apt suggestion as it was removed from debian [ Christian Perrier ] * doc/fr/*, doc/po/fr.po: diff --git a/debian/control b/debian/control index bcf89da9b..a9c82f9e8 100644 --- a/debian/control +++ b/debian/control @@ -15,7 +15,7 @@ Depends: ${shlibs:Depends}, debian-archive-keyring Priority: important Replaces: libapt-pkg-doc (<< 0.3.7), libapt-pkg-dev (<< 0.3.7) Provides: ${libapt-pkg:provides} -Suggests: aptitude | synaptic | gnome-apt | wajig, dpkg-dev, apt-doc, bzip2, lzma, python-apt +Suggests: aptitude | synaptic | wajig, dpkg-dev, apt-doc, bzip2, lzma, python-apt Section: admin Description: Advanced front-end for dpkg This is Debian's next generation front-end for the dpkg package manager. -- cgit v1.2.3 From bcf91c1bf65a69f67f723f6428e2fc57e0366f17 Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Wed, 9 Sep 2009 18:33:09 +0200 Subject: use only one xsl file (and therefore utf-8) for all languages --- buildlib/po4a_manpage.mak | 2 +- doc/fr/style.fr.xsl | 9 - doc/ja/style.ja.xsl | 9 - doc/manpage-style.xsl | 9 + doc/po/apt-doc.pot | 2075 +++++++++++++++------------ doc/po/fr.po | 3496 +++++++++++++++++++++++++-------------------- doc/po/ja.po | 2359 +++++++++++++++++------------- po/apt-all.pot | 34 +- 8 files changed, 4461 insertions(+), 3532 deletions(-) delete mode 100644 doc/fr/style.fr.xsl delete mode 100644 doc/ja/style.ja.xsl create mode 100644 doc/manpage-style.xsl diff --git a/buildlib/po4a_manpage.mak b/buildlib/po4a_manpage.mak index 3ea4e2cb5..538859b6e 100644 --- a/buildlib/po4a_manpage.mak +++ b/buildlib/po4a_manpage.mak @@ -16,7 +16,7 @@ INCLUDES = apt.ent # Do not use XMLTO, build the manpages directly with XSLTPROC ifdef XSLTPROC -STYLESHEET=./style.$(LC).xsl +STYLESHEET=../manpage-style.xsl LOCAL := po4a-manpage-$(firstword $(SOURCE)) $(LOCAL)-LIST := $(SOURCE) diff --git a/doc/fr/style.fr.xsl b/doc/fr/style.fr.xsl deleted file mode 100644 index 11593bb42..000000000 --- a/doc/fr/style.fr.xsl +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/doc/ja/style.ja.xsl b/doc/ja/style.ja.xsl deleted file mode 100644 index c102f1366..000000000 --- a/doc/ja/style.ja.xsl +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/doc/manpage-style.xsl b/doc/manpage-style.xsl new file mode 100644 index 000000000..f1024c4f4 --- /dev/null +++ b/doc/manpage-style.xsl @@ -0,0 +1,9 @@ + + + + + + + diff --git a/doc/po/apt-doc.pot b/doc/po/apt-doc.pot index ff42c7ee9..338ff4d53 100644 --- a/doc/po/apt-doc.pot +++ b/doc/po/apt-doc.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-07-30 22:55+0900\n" +"POT-Creation-Date: 2009-09-09 14:58+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -422,15 +422,17 @@ msgid "" msgstr "" #. type: Plain text -#: apt.ent:165 +#: apt.ent:168 #, no-wrap msgid "" "\n" "\n" "
apt@packages.debian.org
\n" -" Jason " -"Gunthorpe\n" +" \n" +" Jason Gunthorpe\n" +" \n" +" \n" " 1998-2001 Jason " "Gunthorpe\n" " 28 October 2008\n" @@ -438,7 +440,7 @@ msgid "" msgstr "" #. type: Plain text -#: apt.ent:168 +#: apt.ent:171 #, no-wrap msgid "" "
\n" @@ -446,7 +448,7 @@ msgid "" msgstr "" #. type: Plain text -#: apt.ent:174 apt.ent:204 +#: apt.ent:177 #, no-wrap msgid "" "\n" " Jason\n" " Gunthorpe\n" +" \n" " \n" "\">\n" msgstr "" #. type: Plain text -#: apt.ent:188 +#: apt.ent:193 #, no-wrap msgid "" "\n" " Mike\n" " O'Connor\n" +" \n" " \n" "\">\n" msgstr "" #. type: Plain text -#: apt.ent:194 apt.ent:217 +#: apt.ent:200 #, no-wrap msgid "" "\n" " APT team\n" +" \n" " \n" "\">\n" msgstr "" #. type: Plain text -#: apt.ent:198 apt.ent:228 +#: apt.ent:204 apt.ent:215 #, no-wrap msgid "" "\n" @@ -541,7 +546,7 @@ msgid "" msgstr "" #. type: Plain text -#: apt.ent:253 +#: apt.ent:240 #, no-wrap msgid "" "\n" @@ -555,7 +560,7 @@ msgid "" msgstr "" #. type: Plain text -#: apt.ent:263 +#: apt.ent:250 #, no-wrap msgid "" "\n" +#| "\n" +#| "
apt@packages.debian.org
\n" +#| " Jason Gunthorpe\n" +#| " 1998-2001 Jason Gunthorpe\n" +#| " 28 October 2008\n" +#| " Linux\n" msgid "" "\n" "\n" "
apt@packages.debian.org
\n" -" Jason Gunthorpe\n" +" \n" +" Jason Gunthorpe\n" +" \n" +" \n" " 1998-2001 Jason Gunthorpe\n" " 28 October 2008\n" " Linux\n" @@ -581,7 +599,7 @@ msgstr "" " Linux\n" #. type: Plain text -#: apt.ent:168 +#: apt.ent:171 #, no-wrap msgid "" " \n" @@ -591,7 +609,7 @@ msgstr "" "\"> \n" #. type: Plain text -#: apt.ent:174 apt.ent:204 +#: apt.ent:177 #, no-wrap msgid "" "\n" #. type: Plain text -#: apt.ent:181 apt.ent:211 -#, no-wrap +#: apt.ent:185 +#, fuzzy, no-wrap +#| msgid "" +#| "\n" +#| " Jason\n" +#| " Gunthorpe\n" +#| " \n" +#| "\">\n" msgid "" "\n" " Jason\n" " Gunthorpe\n" +" \n" " \n" "\">\n" msgstr "" @@ -625,13 +651,21 @@ msgstr "" "\">\n" #. type: Plain text -#: apt.ent:188 -#, no-wrap +#: apt.ent:193 +#, fuzzy, no-wrap +#| msgid "" +#| "\n" +#| " Mike\n" +#| " O'Connor\n" +#| " \n" +#| "\">\n" msgid "" "\n" " Mike\n" " O'Connor\n" +" \n" " \n" "\">\n" msgstr "" @@ -643,12 +677,19 @@ msgstr "" "\">\n" #. type: Plain text -#: apt.ent:194 apt.ent:217 -#, no-wrap +#: apt.ent:200 +#, fuzzy, no-wrap +#| msgid "" +#| "\n" +#| " APT team\n" +#| " \n" +#| "\">\n" msgid "" "\n" " APT team\n" +" \n" " \n" "\">\n" msgstr "" @@ -659,7 +700,7 @@ msgstr "" "\">\n" #. type: Plain text -#: apt.ent:198 apt.ent:228 +#: apt.ent:204 apt.ent:215 #, no-wrap msgid "" "\n" #. type: Plain text -#: apt.ent:224 +#: apt.ent:211 #, no-wrap msgid "" "\n" #. type: Plain text -#: apt.ent:234 +#: apt.ent:221 #, no-wrap msgid "" "\n" #. type: Plain text -#: apt.ent:245 +#: apt.ent:232 #, no-wrap msgid "" "\n" @@ -731,7 +772,7 @@ msgstr "" "\">\n" #. type: Plain text -#: apt.ent:253 +#: apt.ent:240 #, no-wrap msgid "" "\n" @@ -751,7 +792,7 @@ msgstr "" "\">\n" #. type: Plain text -#: apt.ent:263 +#: apt.ent:250 #, no-wrap msgid "" "\n" +#| "\n" +#| "
apt@packages.debian.org
\n" +#| " Jason Gunthorpe\n" +#| " 1998-2001 Jason Gunthorpe\n" +#| " 28 October 2008\n" +#| " Linux\n" msgid "" "\n" "\n" "
apt@packages.debian.org
\n" -" Jason Gunthorpe\n" +" \n" +" Jason Gunthorpe\n" +" \n" +" \n" " 1998-2001 Jason Gunthorpe\n" " 28 October 2008\n" " Linux\n" @@ -600,7 +612,7 @@ msgstr "" " Linux\n" #. type: Plain text -#: apt.ent:168 +#: apt.ent:171 #, no-wrap msgid "" " \n" @@ -610,7 +622,7 @@ msgstr "" "\"> \n" #. type: Plain text -#: apt.ent:174 apt.ent:204 +#: apt.ent:177 #, no-wrap msgid "" "\n" #. type: Plain text -#: apt.ent:181 apt.ent:211 -#, no-wrap +#: apt.ent:185 +#, fuzzy, no-wrap +#| msgid "" +#| "\n" +#| " Jason\n" +#| " Gunthorpe\n" +#| " \n" +#| "\">\n" msgid "" "\n" " Jason\n" " Gunthorpe\n" +" \n" " \n" "\">\n" msgstr "" @@ -644,13 +664,21 @@ msgstr "" "\">\n" #. type: Plain text -#: apt.ent:188 -#, no-wrap +#: apt.ent:193 +#, fuzzy, no-wrap +#| msgid "" +#| "\n" +#| " Mike\n" +#| " O'Connor\n" +#| " \n" +#| "\">\n" msgid "" "\n" " Mike\n" " O'Connor\n" +" \n" " \n" "\">\n" msgstr "" @@ -662,12 +690,19 @@ msgstr "" "\">\n" #. type: Plain text -#: apt.ent:194 apt.ent:217 -#, no-wrap +#: apt.ent:200 +#, fuzzy, no-wrap +#| msgid "" +#| "\n" +#| " APT team\n" +#| " \n" +#| "\">\n" msgid "" "\n" " APT team\n" +" \n" " \n" "\">\n" msgstr "" @@ -678,7 +713,7 @@ msgstr "" "\">\n" #. type: Plain text -#: apt.ent:198 apt.ent:228 +#: apt.ent:204 apt.ent:215 #, no-wrap msgid "" "\n" #. type: Plain text -#: apt.ent:224 +#: apt.ent:211 #, no-wrap msgid "" "\n" #. type: Plain text -#: apt.ent:234 +#: apt.ent:221 #, no-wrap msgid "" "\n" #. type: Plain text -#: apt.ent:245 +#: apt.ent:232 #, no-wrap msgid "" "\n" @@ -750,7 +785,7 @@ msgstr "" "\">\n" #. type: Plain text -#: apt.ent:253 +#: apt.ent:240 #, no-wrap msgid "" "\n" @@ -770,7 +805,7 @@ msgstr "" "\">\n" #. type: Plain text -#: apt.ent:263 +#: apt.ent:250 #, no-wrap msgid "" " - -Uywanie APT w trybie offline - -Jason Gunthorpe jgg@debian.org -Polskie tumaczenie Krzysztof Fiertek akfedux@megapolis.pl -$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $ - - -Dokument ten opisuje uywanie programu APT w rodowiskach pozbawionych dostpu, -do sieci, a w szczeglnoci metod pozwalajc na robienie aktualizacji systemu. - - - -Copyright © Jason Gunthorpe, 1999. -

-Copyright © polskiego tumaczenia Krzysztof Fiertek, 2004. -

-"APT" i ten dokument s oprogramowaniem wolnodostpnym; moesz -rozpowszechnia je i/lub zmienia w zgodzie z postanowieniami -"Oglnej Licencji Publicznej GNU" (GNU General Public License) -takiej, jak zostaa opublikowana przez "Fundacje Wolnego -Oprogramowania (Free Software Foundation); albo w wersji 2 teje -licencji, albo (twj wybr) w dowolnej pniejszej. - -

-Wicej szczegw mona uzyska, przegldajc plik zawierajcy peny tekst -licencji (w systemach Debian jest to plik /usr/share/common-licenses/GPL). - - - - -Wstp - - -Wprowadzenie - -

-Normalnie APT wymaga bezporedniego dostpu do archiww Debiana przez -sie lokaln albo przez sie internetow. Kolejn niedogodnoci moe by -fakt, e nasz komputer, ktry pracuje na powolnym czu takim jak modem, -jest znacznie oddalony od innego komputera z szybkim czem. - -

-Rozwizaniem tego problemu jest uycie pojemnych przenonych nonikw -takich jak dyskietka Zip lub dysk SuperDisk. Noniki te nie s -wystarczajco pojemne, by zgromadzi kompletne archiwum Debiana, ale mona -miao dopasowa podzbir duego archiwum wystarczajcy dla wikszoci -uytkownikw. Pomys polega na tym, by uy programu APT do wygenerowania -listy pakietw, ktre s wymagane, a nastpnie pobraniu ich na dysk, uywajc -innego komputera z waciw zwartoci. Jest nawet moliwe, by uy innego -komputera z Debianem z zainstalowanym programem APT lub zupenie innym -systemem operacyjnym i programem narzdziowym do pobierania plikw takim -jak wget. - -

-Osigane jest to przez twrcze manipulowanie plikiem konfiguracyjnym -programu APT. Rzecz niezbdn jest poinformowanie programu APT, aby wskazywa -na dysk z plikami archiwum. Naley zauway, e dysk powinien by -sformatowany do obsugi systemu plikw pozwalajcego posugiwa si dugimi -nazwami plikw (np. ext2, fat32 albo vfat). - - - - - -Uywanie programu APT na obu komputerach - - -Wprowadzenie - -

-APT bdcy do dyspozycji na obu komputerach daje najprostsz kombinacj. -Zasadniczym pomysem tej metody jest umieszczenie kopii pliku status na dysku -i uycie odlegego komputera, aby uzyska najnowsze pliki pakietw -i zdecydowa, ktre pakiety trzeba pobra. Struktura katalogw na dysku -powinna wyglda nastpujco: - - - /disc/ - archives/ - partial/ - lists/ - partial/ - status - sources.list - apt.conf - - - - - - -Plik konfiguracyjny - -

-Plik konfiguracyjny powinien informowa program APT, aby przechowywa swoje -pliki na dysku, a take uywa plikw konfiguracyjnych z dysku. Plik -sources.list powinien zawiera prawidowe odnoniki, ktrych naley -uy na zdalnym komputerze, a plik status powinien by kopi -/var/lib/dpkg/status. Zauwa, e jeli uywasz lokalnego archiwum -musisz uy tych samych odnonikw o identycznej skadni. - -

-apt.conf musi zawiera niezbdne wpisy, by APT korzysta z dysku: - - - APT - { - /* Ten wpis nie jest wymagany, jeli oba komputery maj t sam - architektur; mwi on programowi APT na komputerze pobierajcym - pakiety, jaka jest architektura naszego komputera */ - Architecture "i386"; - - Get::Download-Only "true"; - }; - - Dir - { - /* Uyj katalogu disc na informacje stanu i przekieruj plik status - z domylnego /var/lib/dpkg */ - State "/disc/"; - State::status "status"; - - // Katalog lokalnie przechowywanych pakietw binarnych - Cache::archives "/disc/archives/"; - - Cache "/tmp/"; - - // Lokalizacja pliku sources.list. - Etc "/disc"; - }; - - -Wicej szczegw mona zobaczy w stronie podrcznika apt.conf i w przykadowym -pliku konfiguracyjnym /usr/share/doc/apt/examples/apt.conf. - -

-Pierwsz rzecz, jak naley zrobi na oddalonym komputerze z Debianem to -zamontowa dysk i przekopiowa na niego plik /var/lib/dpkg/status. -Trzeba take utworzy stuktur katalogw przedstawion we "Wprowadzeniu": -archives/partial/ i lists/partial/. Nastpnie niesiemy -dysk do oddalonego komputera z szybkim czem i konfigurujemy plik -sources.list. Na oddalonym komputerze wykonujemy kolejno: - - - # export APT_CONFIG="/disc/apt.conf" - # apt-get update - [ APT aktualizuje ustawienia ] - # apt-get dist-upgrade - [ APT pobiera wszystkie pakiety potrzebne do aktualizacji Twojego systemu ] - - - -Polecenie dist-upgrade mona zastpi kadym innym podstawowym poleceniem -APT, w szczeglnoci dselect-upgrade. Mona nawet uy APT jako metody -dostpu dla dselect. Jednak stworzy to problem w przeniesieniu -Twoich operacji wyborw z powrotem na lokalny komputer. - -

-W tej chwili katalog disc zawiera wszystkie pliki indeksowe oraz archiwa -niezbdne do aktualizacji maszyny z Debianem. Bierzemy dysk z powrotem do -siebie i wpisujemy: - - - # export APT_CONFIG="/disc/apt.conf" - # apt-get check - [ APT tworzy lokaln kopi plikw cache ] - # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade - [ Moe te by inne polecenie programu APT ] - - -

-Do prawidowego dziaania koniecznie naley poda plik status z lokalnej -maszyny. To jest bardzo wane! - -

-Jeli uywasz dselect, moesz wykona bardzo ryzykown operacj skopiowania -disc/status do /var/lib/dpkg/status, tak e wszystkie zmiany, ktrych -dokonae na odlegym komputerze, bd przeniesione. Mocno zalecam, aby -dokonywa doboru pakietw tylko na lokalnym komputerze, ale nie zawsze -jest to moliwe. NIE podmieniaj pliku status, jeli dpkg lub APT byy -uruchamiane w midzyczasie!! - - - - -Uywanie programw APT i wget - - -Wprowadzenie - -

-wget jest popularnym i przenonym programem narzdziowym -pobierania plikw, ktry dziaa prawie na kadym komputerze. -W przeciwiestwie do metody opisanej powyej ta wymaga, aby na lokalnym komputerze -bya aktualna lista dostpnych pakietw. - -

-Naley stworzy katalog disc tylko na pakiety do pobrania z innego -komputera. Uyta zostanie do tego opcja --print-uris programu apt-get, -a nastpnie przygotujemy skrypt dla programu wget, ktry pobierze waciwe -pakiety. - - - - - -Kolejne kroki - -

-W odrnieniu od poprzedniej metody dziaania ta nie wymaga specjalnych -plikw konfiguracyjnych. Uywamy jedynie podstawowych polece APT, by -wygenerowa list plikw. - - - # apt-get dist-upgrade - [ Wybierz "no" po znaku zachty, upewnij si, czy to waciwy wybr ] - # apt-get -qq --print-uris dist-upgrade > uris - # awk '{print "wget -O " $2 " " $1}' < uris > /disc/wget-script - - -Take inne opcje ni dist-upgrade mog tu by uyte, wczajc -dselect-upgrade. - -

-Plik skryptu /disc/wget-script bdzie teraz zawiera list wywoa programu -wget, niezbdnych do pobrania potrzebnych archiww. -Skrypt ten naley uruchomi w biecym katalogu o punkcie montowania disc, -tak aby tu zapisywa dane na dysku. - -

-Na oddalonym komputerze naley wykona co takiego - - - # cd /disc - # sh -x ./wget-script - [ czekaj.. ] - - -Gdy archiwa zostan pobrane i dysk wrci do komputera z Debianem, -instalowanie mona prowadzi dalej poleceniem: - - - # apt-get -o dir::cache::archives="/disc/" dist-upgrade - - -ktre uyje pobranych uprzednio archiww z dysku. - - - -- cgit v1.2.3 From d5081aeeb0a1bf4098e3a0d8395e4c7b84f4ac9e Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Fri, 18 Sep 2009 16:54:48 +0200 Subject: cleanup commit for trigger processing: - remove the DPkg::NoConfTriggers - absolutely useless as we need TriggersPending already so we can use --no-triggers. - remove the Immediate-option from the example, it doesn't help much. - UnpackCritical uses DepUnPackPre with a D (on simple letter...) - the "smart" optimisation to skip A was not so smart - revert. --- apt-pkg/deb/dpkgpm.cc | 4 +- apt-pkg/orderlist.cc | 15 ++-- doc/apt.conf.5.xml | 12 +--- doc/po/apt-doc.pot | 194 +++++++++++++++++++++++--------------------------- doc/po/fr.po | 194 +++++++++++++++++++++++--------------------------- doc/po/ja.po | 194 +++++++++++++++++++++++--------------------------- 6 files changed, 275 insertions(+), 338 deletions(-) diff --git a/apt-pkg/deb/dpkgpm.cc b/apt-pkg/deb/dpkgpm.cc index 5edab5ac7..aec4edc49 100644 --- a/apt-pkg/deb/dpkgpm.cc +++ b/apt-pkg/deb/dpkgpm.cc @@ -631,7 +631,6 @@ bool pkgDPkgPM::Go(int OutStatusFd) unsigned int const MaxArgs = _config->FindI("Dpkg::MaxArgs",8*1024); unsigned int const MaxArgBytes = _config->FindI("Dpkg::MaxArgBytes",32*1024); bool const NoTriggers = _config->FindB("DPkg::NoTriggers", false); - bool const NoConfTriggers = _config->FindB("DPkg::NoConfTriggers", NoTriggers); if (RunScripts("DPkg::Pre-Invoke") == false) return false; @@ -797,8 +796,7 @@ bool pkgDPkgPM::Go(int OutStatusFd) } if (NoTriggers == true && I->Op != Item::TriggersPending && - I->Op != Item::ConfigurePending && - (I->Op != Item::Configure || NoConfTriggers == true)) + I->Op != Item::ConfigurePending) { Args[n++] = "--no-triggers"; Size += strlen(Args[n-1]); diff --git a/apt-pkg/orderlist.cc b/apt-pkg/orderlist.cc index e5bd8247d..0ee2e2bc8 100644 --- a/apt-pkg/orderlist.cc +++ b/apt-pkg/orderlist.cc @@ -175,7 +175,7 @@ bool pkgOrderList::OrderCritical() { FileList = 0; - Primary = &pkgOrderList::DepUnPackPre; + Primary = &pkgOrderList::DepUnPackPreD; Secondary = 0; RevDepends = 0; Remove = 0; @@ -238,15 +238,10 @@ bool pkgOrderList::OrderUnpack(string *FileList) Me = this; qsort(List,End - List,sizeof(*List),&OrderCompareA); - if (_config->Find("PackageManager::Configure","all") == "all") - { - if (Debug == true) - clog << "** Pass A" << endl; - if (DoRun() == false) - return false; - } - else if (Debug == true) - clog << "** Skip A (same as B for non-all Configure)" << endl; + if (Debug == true) + clog << "** Pass A" << endl; + if (DoRun() == false) + return false; if (Debug == true) clog << "** Pass B" << endl; diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml index 808c852a5..67aa933cc 100644 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@ -21,7 +21,7 @@ &apt-email; &apt-product; - 10 December 2008 + 18 September 2009 @@ -484,8 +484,7 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; DPkg::NoTriggers "true"; PackageManager::Configure "smart"; DPkg::ConfigurePending "true"; -DPkg::TriggersPending "true"; -OrderList::Score::Immediate 100; +DPkg::TriggersPending "true"; DPkg::NoTriggers @@ -520,13 +519,6 @@ OrderList::Score::Immediate 100; currently which is a dealbreaker for Pre-Dependencies (see debbugs #526774). Note that this will process all triggers, not only the triggers needed to configure this package. - Dpkg::NoConfTriggers - DPkg currently will ignore the --triggers or --no-triggers flag if the trigger - is already pending. This option therefore has no real effect as long as dpkg doesn't change - his behavior. The option is automatical activated if DPkg::NoTriggers is - activated. You should use DPkg::TriggersPending to take care of these pending - triggers. - PackageManager::UnpackAll As the configuration can be deferred to be done at the end by dpkg it can be tried to order the unpack series only by critical needs, e.g. by Pre-Depends. Default is true diff --git a/doc/po/apt-doc.pot b/doc/po/apt-doc.pot index 6a54450c4..ed27cecf8 100644 --- a/doc/po/apt-doc.pot +++ b/doc/po/apt-doc.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-09-15 22:56+0300\n" +"POT-Creation-Date: 2009-09-18 16:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1408,7 +1408,7 @@ msgid "&apt-commonoptions;" msgstr "" #. type: Content of: -#: apt-cache.8.xml:358 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 apt.conf.5.xml:948 apt_preferences.5.xml:615 +#: apt-cache.8.xml:358 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 apt.conf.5.xml:940 apt_preferences.5.xml:615 msgid "Files" msgstr "" @@ -1418,7 +1418,7 @@ msgid "&file-sourceslist; &file-statelists;" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-cache.8.xml:365 apt-cdrom.8.xml:155 apt-config.8.xml:103 apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569 apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181 apt-sortpkgs.1.xml:69 apt.conf.5.xml:954 apt_preferences.5.xml:622 sources.list.5.xml:221 +#: apt-cache.8.xml:365 apt-cdrom.8.xml:155 apt-config.8.xml:103 apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569 apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181 apt-sortpkgs.1.xml:69 apt.conf.5.xml:946 apt_preferences.5.xml:622 sources.list.5.xml:221 msgid "See Also" msgstr "" @@ -2673,7 +2673,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:552 apt.conf.5.xml:942 apt_preferences.5.xml:462 sources.list.5.xml:181 +#: apt-ftparchive.1.xml:552 apt.conf.5.xml:934 apt_preferences.5.xml:462 sources.list.5.xml:181 msgid "Examples" msgstr "" @@ -5015,8 +5015,7 @@ msgid "" "DPkg::NoTriggers \"true\";\n" "PackageManager::Configure \"smart\";\n" "DPkg::ConfigurePending \"true\";\n" -"DPkg::TriggersPending \"true\";\n" -"OrderList::Score::Immediate 100;" +"DPkg::TriggersPending \"true\";" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> @@ -5034,12 +5033,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:491 +#: apt.conf.5.xml:490 msgid "DPkg::NoTriggers" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:492 +#: apt.conf.5.xml:491 msgid "" "Add the no triggers flag to all dpkg calls (expect the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -5051,12 +5050,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:499 +#: apt.conf.5.xml:498 msgid "PackageManager::Configure" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:500 +#: apt.conf.5.xml:499 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". \"<literal>all</literal>\" is the default " @@ -5073,12 +5072,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:510 +#: apt.conf.5.xml:509 msgid "DPkg::ConfigurePending" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:511 +#: apt.conf.5.xml:510 msgid "" "If this option is set apt will call <command>dpkg --configure " "--pending</command> to let dpkg handle all required configurations and " @@ -5090,43 +5089,28 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:517 +#: apt.conf.5.xml:516 msgid "DPkg::TriggersPending" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:518 +#: apt.conf.5.xml:517 msgid "" "Useful for <literal>smart</literal> configuration as a package which has " -"pending triggers is not considered as <literal>installed</literal> and dpkg " -"treats them as <literal>unpacked</literal> currently which is a dealbreaker " -"for Pre-Dependencies (see debbugs #526774). Note that this will process all " -"triggers, not only the triggers needed to configure this package." -msgstr "" - -#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:523 -msgid "Dpkg::NoConfTriggers" -msgstr "" - -#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 -msgid "" -"DPkg currently will ignore the --triggers or --no-triggers flag if the " -"trigger is already pending. This option therefore has no real effect as long " -"as dpkg doesn't change his behavior. The option is automatical activated if " -"<literal>DPkg::NoTriggers</literal> is activated. You should use " -"<literal>DPkg::TriggersPending</literal> to take care of these pending " -"triggers." +"pending triggers is not considered as \"<literal>installed</literal>\" and " +"dpkg treats them as \"<literal>unpacked</literal>\" currently which is a " +"dealbreaker for Pre-Dependencies (see also debbugs #526774). Note that this " +"will process all triggers, not only the triggers needed to configure this " +"package." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:530 +#: apt.conf.5.xml:522 msgid "PackageManager::UnpackAll" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:531 +#: apt.conf.5.xml:523 msgid "" "As the configuration can be deferred to be done at the end by dpkg it can be " "tried to order the unpack series only by critical needs, e.g. by " @@ -5138,12 +5122,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:538 +#: apt.conf.5.xml:530 msgid "OrderList::Score::Immediate" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:546 +#: apt.conf.5.xml:538 #, no-wrap msgid "" "OrderList::Score {\n" @@ -5155,7 +5139,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:539 +#: apt.conf.5.xml:531 msgid "" "Essential packages (and there dependencies) should be configured immediately " "after unpacking. It will be a good idea to do this quite early in the " @@ -5169,12 +5153,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:559 +#: apt.conf.5.xml:551 msgid "Periodic and Archives options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:560 +#: apt.conf.5.xml:552 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by " @@ -5183,12 +5167,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:568 +#: apt.conf.5.xml:560 msgid "Debug options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:570 +#: apt.conf.5.xml:562 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -5199,7 +5183,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:581 +#: apt.conf.5.xml:573 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, " @@ -5207,7 +5191,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:589 +#: apt.conf.5.xml:581 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s " @@ -5215,7 +5199,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:590 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -5225,110 +5209,110 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:606 +#: apt.conf.5.xml:598 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CDROM IDs." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:616 +#: apt.conf.5.xml:608 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:621 +#: apt.conf.5.xml:613 msgid "<literal>Debug::Acquire::cdrom</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:625 +#: apt.conf.5.xml:617 msgid "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:632 +#: apt.conf.5.xml:624 msgid "<literal>Debug::Acquire::ftp</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:636 +#: apt.conf.5.xml:628 msgid "Print information related to downloading packages using FTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:643 +#: apt.conf.5.xml:635 msgid "<literal>Debug::Acquire::http</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:639 msgid "Print information related to downloading packages using HTTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:654 +#: apt.conf.5.xml:646 msgid "<literal>Debug::Acquire::https</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:658 +#: apt.conf.5.xml:650 msgid "Print information related to downloading packages using HTTPS." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:665 +#: apt.conf.5.xml:657 msgid "<literal>Debug::Acquire::gpgv</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:669 +#: apt.conf.5.xml:661 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:676 +#: apt.conf.5.xml:668 msgid "<literal>Debug::aptcdrom</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:680 +#: apt.conf.5.xml:672 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:687 +#: apt.conf.5.xml:679 msgid "<literal>Debug::BuildDeps</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:690 +#: apt.conf.5.xml:682 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:697 +#: apt.conf.5.xml:689 msgid "<literal>Debug::Hashes</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:700 +#: apt.conf.5.xml:692 msgid "" "Output each cryptographic hash that is generated by the " "<literal>apt</literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:707 +#: apt.conf.5.xml:699 msgid "<literal>Debug::IdentCDROM</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:710 +#: apt.conf.5.xml:702 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5336,92 +5320,92 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:718 +#: apt.conf.5.xml:710 msgid "<literal>Debug::NoLocking</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:721 +#: apt.conf.5.xml:713 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:729 +#: apt.conf.5.xml:721 msgid "<literal>Debug::pkgAcquire</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:733 +#: apt.conf.5.xml:725 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:740 +#: apt.conf.5.xml:732 msgid "<literal>Debug::pkgAcquire::Auth</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:743 +#: apt.conf.5.xml:735 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:750 +#: apt.conf.5.xml:742 msgid "<literal>Debug::pkgAcquire::Diffs</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:753 +#: apt.conf.5.xml:745 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:761 +#: apt.conf.5.xml:753 msgid "<literal>Debug::pkgAcquire::RRed</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:765 +#: apt.conf.5.xml:757 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:772 +#: apt.conf.5.xml:764 msgid "<literal>Debug::pkgAcquire::Worker</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:776 +#: apt.conf.5.xml:768 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:783 +#: apt.conf.5.xml:775 msgid "<literal>Debug::pkgAutoRemove</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:787 +#: apt.conf.5.xml:779 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:794 +#: apt.conf.5.xml:786 msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:797 +#: apt.conf.5.xml:789 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial " @@ -5431,12 +5415,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:808 +#: apt.conf.5.xml:800 msgid "<literal>Debug::pkgDepCache::Marker</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:811 +#: apt.conf.5.xml:803 msgid "" "Generate debug messages describing which package is marked as " "keep/install/remove while the ProblemResolver does his work. Each addition " @@ -5454,90 +5438,90 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:822 msgid "<literal>Debug::pkgInitConfig</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:833 +#: apt.conf.5.xml:825 msgid "Dump the default configuration to standard error on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:840 +#: apt.conf.5.xml:832 msgid "<literal>Debug::pkgDPkgPM</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:843 +#: apt.conf.5.xml:835 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:851 +#: apt.conf.5.xml:843 msgid "<literal>Debug::pkgDPkgProgressReporting</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:854 +#: apt.conf.5.xml:846 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:861 +#: apt.conf.5.xml:853 msgid "<literal>Debug::pkgOrderList</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:865 +#: apt.conf.5.xml:857 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:873 +#: apt.conf.5.xml:865 msgid "<literal>Debug::pkgPackageManager</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:877 +#: apt.conf.5.xml:869 msgid "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:884 +#: apt.conf.5.xml:876 msgid "<literal>Debug::pkgPolicy</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:888 +#: apt.conf.5.xml:880 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:894 +#: apt.conf.5.xml:886 msgid "<literal>Debug::pkgProblemResolver</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:898 +#: apt.conf.5.xml:890 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:906 +#: apt.conf.5.xml:898 msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:909 +#: apt.conf.5.xml:901 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5545,32 +5529,32 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:917 +#: apt.conf.5.xml:909 msgid "<literal>Debug::sourceList</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:921 +#: apt.conf.5.xml:913 msgid "" "Print information about the vendors read from " "<filename>/etc/apt/vendors.list</filename>." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:943 +#: apt.conf.5.xml:935 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." msgstr "" #. type: Content of: <refentry><refsect1><variablelist> -#: apt.conf.5.xml:950 +#: apt.conf.5.xml:942 msgid "&file-aptconf;" msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:955 +#: apt.conf.5.xml:947 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "" diff --git a/doc/po/fr.po b/doc/po/fr.po index 17ed328b1..e340b91c4 100644 --- a/doc/po/fr.po +++ b/doc/po/fr.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2009-09-15 22:56+0300\n" +"POT-Creation-Date: 2009-09-18 16:44+0300\n" "PO-Revision-Date: 2009-09-04 20:23+0200\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" @@ -1882,7 +1882,7 @@ msgstr "&apt-commonoptions;" #. type: Content of: <refentry><refsect1><title> #: apt-cache.8.xml:358 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 -#: apt.conf.5.xml:948 apt_preferences.5.xml:615 +#: apt.conf.5.xml:940 apt_preferences.5.xml:615 msgid "Files" msgstr "Fichiers" @@ -1895,7 +1895,7 @@ msgstr "" #: apt-cache.8.xml:365 apt-cdrom.8.xml:155 apt-config.8.xml:103 #: apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569 #: apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181 -#: apt-sortpkgs.1.xml:69 apt.conf.5.xml:954 apt_preferences.5.xml:622 +#: apt-sortpkgs.1.xml:69 apt.conf.5.xml:946 apt_preferences.5.xml:622 #: sources.list.5.xml:221 msgid "See Also" msgstr "Voir aussi" @@ -3481,7 +3481,7 @@ msgstr "" "configuration : <literal>APT::FTPArchive::ReadOnlyDB</literal>." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:552 apt.conf.5.xml:942 apt_preferences.5.xml:462 +#: apt-ftparchive.1.xml:552 apt.conf.5.xml:934 apt_preferences.5.xml:462 #: sources.list.5.xml:181 msgid "Examples" msgstr "Exemples" @@ -6820,8 +6820,7 @@ msgid "" "DPkg::NoTriggers \"true\";\n" "PackageManager::Configure \"smart\";\n" "DPkg::ConfigurePending \"true\";\n" -"DPkg::TriggersPending \"true\";\n" -"OrderList::Score::Immediate 100;" +"DPkg::TriggersPending \"true\";" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> @@ -6839,12 +6838,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:491 +#: apt.conf.5.xml:490 msgid "DPkg::NoTriggers" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:492 +#: apt.conf.5.xml:491 msgid "" "Add the no triggers flag to all dpkg calls (expect the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -6856,14 +6855,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:499 +#: apt.conf.5.xml:498 #, fuzzy #| msgid "Packages::Compress" msgid "PackageManager::Configure" msgstr "Packages::Compress" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:500 +#: apt.conf.5.xml:499 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". \"<literal>all</literal>\" is the default " @@ -6879,12 +6878,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:510 +#: apt.conf.5.xml:509 msgid "DPkg::ConfigurePending" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:511 +#: apt.conf.5.xml:510 msgid "" "If this option is set apt will call <command>dpkg --configure --pending</" "command> to let dpkg handle all required configurations and triggers. This " @@ -6895,43 +6894,28 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:517 +#: apt.conf.5.xml:516 msgid "DPkg::TriggersPending" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:518 +#: apt.conf.5.xml:517 msgid "" "Useful for <literal>smart</literal> configuration as a package which has " -"pending triggers is not considered as <literal>installed</literal> and dpkg " -"treats them as <literal>unpacked</literal> currently which is a dealbreaker " -"for Pre-Dependencies (see debbugs #526774). Note that this will process all " -"triggers, not only the triggers needed to configure this package." -msgstr "" - -#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:523 -msgid "Dpkg::NoConfTriggers" -msgstr "" - -#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 -msgid "" -"DPkg currently will ignore the --triggers or --no-triggers flag if the " -"trigger is already pending. This option therefore has no real effect as long " -"as dpkg doesn't change his behavior. The option is automatical activated if " -"<literal>DPkg::NoTriggers</literal> is activated. You should use " -"<literal>DPkg::TriggersPending</literal> to take care of these pending " -"triggers." +"pending triggers is not considered as \"<literal>installed</literal>\" and " +"dpkg treats them as \"<literal>unpacked</literal>\" currently which is a " +"dealbreaker for Pre-Dependencies (see also debbugs #526774). Note that this " +"will process all triggers, not only the triggers needed to configure this " +"package." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:530 +#: apt.conf.5.xml:522 msgid "PackageManager::UnpackAll" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:531 +#: apt.conf.5.xml:523 msgid "" "As the configuration can be deferred to be done at the end by dpkg it can be " "tried to order the unpack series only by critical needs, e.g. by Pre-" @@ -6943,12 +6927,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:538 +#: apt.conf.5.xml:530 msgid "OrderList::Score::Immediate" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:546 +#: apt.conf.5.xml:538 #, no-wrap msgid "" "OrderList::Score {\n" @@ -6960,7 +6944,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:539 +#: apt.conf.5.xml:531 msgid "" "Essential packages (and there dependencies) should be configured immediately " "after unpacking. It will be a good idea to do this quite early in the " @@ -6974,13 +6958,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:559 +#: apt.conf.5.xml:551 #, fuzzy msgid "Periodic and Archives options" msgstr "Options « Periodic » et « Archive »" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:560 +#: apt.conf.5.xml:552 #, fuzzy msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " @@ -6993,13 +6977,13 @@ msgstr "" "script <literal>/etc/cron.daily/apt</literal>, lancé quotidiennement." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:568 +#: apt.conf.5.xml:560 #, fuzzy msgid "Debug options" msgstr "Les options de débogage" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:570 +#: apt.conf.5.xml:562 #, fuzzy msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " @@ -7018,7 +7002,7 @@ msgstr "" "peuvent tout de même être utiles :" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:581 +#: apt.conf.5.xml:573 #, fuzzy msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " @@ -7030,7 +7014,7 @@ msgstr "" "upgrade, upgrade, install, remove et purge</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:589 +#: apt.conf.5.xml:581 #, fuzzy msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " @@ -7042,7 +7026,7 @@ msgstr "" "<literal>apt-get -s install</literal>) sans être « root »." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:590 #, fuzzy msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " @@ -7055,7 +7039,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:606 +#: apt.conf.5.xml:598 #, fuzzy msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " @@ -7065,71 +7049,71 @@ msgstr "" "type statfs dans les ID de cédérom." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:616 +#: apt.conf.5.xml:608 #, fuzzy msgid "A full list of debugging options to apt follows." msgstr "Voici une liste complète des options de débogage de APT." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:621 +#: apt.conf.5.xml:613 #, fuzzy msgid "<literal>Debug::Acquire::cdrom</literal>" msgstr "Debug::Acquire::cdrom" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:625 +#: apt.conf.5.xml:617 #, fuzzy msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "Affiche les informations concernant les sources de type cdrom://" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:632 +#: apt.conf.5.xml:624 #, fuzzy msgid "<literal>Debug::Acquire::ftp</literal>" msgstr "Debug::Acquire::ftp" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:636 +#: apt.conf.5.xml:628 #, fuzzy msgid "Print information related to downloading packages using FTP." msgstr "" "Affiche les informations concernant le téléchargement de paquets par FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:643 +#: apt.conf.5.xml:635 #, fuzzy msgid "<literal>Debug::Acquire::http</literal>" msgstr "Debug::Acquire::http" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:639 #, fuzzy msgid "Print information related to downloading packages using HTTP." msgstr "" "Affiche les informations concernant le téléchargement de paquets par HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:654 +#: apt.conf.5.xml:646 #, fuzzy msgid "<literal>Debug::Acquire::https</literal>" msgstr "Debug::Acquire::https" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:658 +#: apt.conf.5.xml:650 #, fuzzy msgid "Print information related to downloading packages using HTTPS." msgstr "" "Affiche les informations concernant le téléchargement de paquets par HTTPS." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:665 +#: apt.conf.5.xml:657 #, fuzzy msgid "<literal>Debug::Acquire::gpgv</literal>" msgstr "Debug::Acquire::gpgv" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:669 +#: apt.conf.5.xml:661 #, fuzzy msgid "" "Print information related to verifying cryptographic signatures using " @@ -7139,13 +7123,13 @@ msgstr "" "cryptographiques avec <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:676 +#: apt.conf.5.xml:668 #, fuzzy msgid "<literal>Debug::aptcdrom</literal>" msgstr "Debug::aptcdrom" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:680 +#: apt.conf.5.xml:672 #, fuzzy msgid "" "Output information about the process of accessing collections of packages " @@ -7155,13 +7139,13 @@ msgstr "" "stockées sur cédérom." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:687 +#: apt.conf.5.xml:679 #, fuzzy msgid "<literal>Debug::BuildDeps</literal>" msgstr "Debug::BuildDeps" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:690 +#: apt.conf.5.xml:682 #, fuzzy msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" @@ -7169,13 +7153,13 @@ msgstr "" "paquets source ( « build-dependencies » ) par &apt-get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:697 +#: apt.conf.5.xml:689 #, fuzzy msgid "<literal>Debug::Hashes</literal>" msgstr "Debug::Hashes" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:700 +#: apt.conf.5.xml:692 #, fuzzy msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" @@ -7185,13 +7169,13 @@ msgstr "" "librairies APT." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:707 +#: apt.conf.5.xml:699 #, fuzzy msgid "<literal>Debug::IdentCDROM</literal>" msgstr "Debug::IdentCdrom" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:710 +#: apt.conf.5.xml:702 #, fuzzy msgid "" "Do not include information from <literal>statfs</literal>, namely the number " @@ -7203,13 +7187,13 @@ msgstr "" "sur le système de fichier du cédérom." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:718 +#: apt.conf.5.xml:710 #, fuzzy msgid "<literal>Debug::NoLocking</literal>" msgstr "Debug::NoLocking" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:721 +#: apt.conf.5.xml:713 #, fuzzy msgid "" "Disable all file locking. For instance, this will allow two instances of " @@ -7219,13 +7203,13 @@ msgstr "" "deux instances de « apt-get update » en même temps." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:729 +#: apt.conf.5.xml:721 #, fuzzy msgid "<literal>Debug::pkgAcquire</literal>" msgstr "Debug::pkgAcquire" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:733 +#: apt.conf.5.xml:725 #, fuzzy msgid "Log when items are added to or removed from the global download queue." msgstr "" @@ -7233,13 +7217,13 @@ msgstr "" "téléchargement." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:740 +#: apt.conf.5.xml:732 #, fuzzy msgid "<literal>Debug::pkgAcquire::Auth</literal>" msgstr "Debug::pkgAcquire::Auth" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:743 +#: apt.conf.5.xml:735 #, fuzzy msgid "" "Output status messages and errors related to verifying checksums and " @@ -7250,13 +7234,13 @@ msgstr "" "éventuelles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:750 +#: apt.conf.5.xml:742 #, fuzzy msgid "<literal>Debug::pkgAcquire::Diffs</literal>" msgstr "Debug::pkgAcquire::Diffs" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:753 +#: apt.conf.5.xml:745 #, fuzzy msgid "" "Output information about downloading and applying package index list diffs, " @@ -7267,13 +7251,13 @@ msgstr "" "éventuelles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:761 +#: apt.conf.5.xml:753 #, fuzzy msgid "<literal>Debug::pkgAcquire::RRed</literal>" msgstr "Debug::pkgAcquire::RRed" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:765 +#: apt.conf.5.xml:757 #, fuzzy msgid "" "Output information related to patching apt package lists when downloading " @@ -7284,13 +7268,13 @@ msgstr "" "éventuelles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:772 +#: apt.conf.5.xml:764 #, fuzzy msgid "<literal>Debug::pkgAcquire::Worker</literal>" msgstr "Debug::pkgAcquire::Worker" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:776 +#: apt.conf.5.xml:768 #, fuzzy msgid "" "Log all interactions with the sub-processes that actually perform downloads." @@ -7299,13 +7283,13 @@ msgstr "" "effectivement des téléchargements." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:783 +#: apt.conf.5.xml:775 #, fuzzy msgid "<literal>Debug::pkgAutoRemove</literal>" msgstr "Debug::pkgAcquire::pkgAutoRemove" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:787 +#: apt.conf.5.xml:779 #, fuzzy msgid "" "Log events related to the automatically-installed status of packages and to " @@ -7315,13 +7299,13 @@ msgstr "" "automatiquement, et la suppression des paquets inutiles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:794 +#: apt.conf.5.xml:786 #, fuzzy msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>" msgstr "Debug::pkgDepCache::AutoInstall" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:797 +#: apt.conf.5.xml:789 #, fuzzy msgid "" "Generate debug messages describing which packages are being automatically " @@ -7337,13 +7321,13 @@ msgstr "" "de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce dernier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:808 +#: apt.conf.5.xml:800 #, fuzzy msgid "<literal>Debug::pkgDepCache::Marker</literal>" msgstr "Debug::pkgDepCache::AutoInstall" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:811 +#: apt.conf.5.xml:803 msgid "" "Generate debug messages describing which package is marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -7360,13 +7344,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:822 #, fuzzy msgid "<literal>Debug::pkgInitConfig</literal>" msgstr "Debug::pkgInitConfig" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:833 +#: apt.conf.5.xml:825 #, fuzzy msgid "Dump the default configuration to standard error on startup." msgstr "" @@ -7374,13 +7358,13 @@ msgstr "" "standard." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:840 +#: apt.conf.5.xml:832 #, fuzzy msgid "<literal>Debug::pkgDPkgPM</literal>" msgstr "Debug::pkgDPkgPM" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:843 +#: apt.conf.5.xml:835 #, fuzzy msgid "" "When invoking &dpkg;, output the precise command line with which it is being " @@ -7390,13 +7374,13 @@ msgstr "" "arguments sont séparés par des espaces." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:851 +#: apt.conf.5.xml:843 #, fuzzy msgid "<literal>Debug::pkgDPkgProgressReporting</literal>" msgstr "Debug::pkgDPkgProgressReporting" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:854 +#: apt.conf.5.xml:846 #, fuzzy msgid "" "Output all the data received from &dpkg; on the status file descriptor and " @@ -7407,13 +7391,13 @@ msgstr "" "fichier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:861 +#: apt.conf.5.xml:853 #, fuzzy msgid "<literal>Debug::pkgOrderList</literal>" msgstr "Debug::pkgOrderList" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:865 +#: apt.conf.5.xml:857 #, fuzzy msgid "" "Generate a trace of the algorithm that decides the order in which " @@ -7423,38 +7407,38 @@ msgstr "" "APT passe les paquets à &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:873 +#: apt.conf.5.xml:865 #, fuzzy msgid "<literal>Debug::pkgPackageManager</literal>" msgstr "Debug::pkgPackageManager" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:877 +#: apt.conf.5.xml:869 #, fuzzy msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "Affiche le détail des opérations liées à l'invocation de &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:884 +#: apt.conf.5.xml:876 #, fuzzy msgid "<literal>Debug::pkgPolicy</literal>" msgstr "Debug::pkgPolicy" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:888 +#: apt.conf.5.xml:880 #, fuzzy msgid "Output the priority of each package list on startup." msgstr "Au lancement, affiche la priorité de chaque liste de paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:894 +#: apt.conf.5.xml:886 #, fuzzy msgid "<literal>Debug::pkgProblemResolver</literal>" msgstr "Debug::pkgProblemResolver" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:898 +#: apt.conf.5.xml:890 #, fuzzy msgid "" "Trace the execution of the dependency resolver (this applies only to what " @@ -7464,13 +7448,13 @@ msgstr "" "concerne que les cas où un problème de dépendances complexe se présente)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:906 +#: apt.conf.5.xml:898 #, fuzzy msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>" msgstr "Debug::pkgProblemResolver" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:909 +#: apt.conf.5.xml:901 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -7478,13 +7462,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:917 +#: apt.conf.5.xml:909 #, fuzzy msgid "<literal>Debug::sourceList</literal>" msgstr "Debug::sourceList" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:921 +#: apt.conf.5.xml:913 #, fuzzy msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." @@ -7494,7 +7478,7 @@ msgstr "" "list</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:943 +#: apt.conf.5.xml:935 #, fuzzy msgid "" "&configureindex; is a configuration file showing example values for all " @@ -7504,7 +7488,7 @@ msgstr "" "exemples pour toutes les options existantes." #. type: Content of: <refentry><refsect1><variablelist> -#: apt.conf.5.xml:950 +#: apt.conf.5.xml:942 #, fuzzy #| msgid "&apt-conf;" msgid "&file-aptconf;" @@ -7512,7 +7496,7 @@ msgstr "&apt-conf;" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:955 +#: apt.conf.5.xml:947 #, fuzzy msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache; &apt-conf;" diff --git a/doc/po/ja.po b/doc/po/ja.po index 7cae35b6e..4802bd2dc 100644 --- a/doc/po/ja.po +++ b/doc/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-09-15 22:56+0300\n" +"POT-Creation-Date: 2009-09-18 16:44+0300\n" "PO-Revision-Date: 2009-07-30 22:55+0900\n" "Last-Translator: KURASAWA Nozomu <nabetaro@caldron.jp>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -1928,7 +1928,7 @@ msgstr "&apt-commonoptions;" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> #: apt-cache.8.xml:358 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 -#: apt.conf.5.xml:948 apt_preferences.5.xml:615 +#: apt.conf.5.xml:940 apt_preferences.5.xml:615 msgid "Files" msgstr "ファイル" @@ -1942,7 +1942,7 @@ msgstr "" #: apt-cache.8.xml:365 apt-cdrom.8.xml:155 apt-config.8.xml:103 #: apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569 #: apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181 -#: apt-sortpkgs.1.xml:69 apt.conf.5.xml:954 apt_preferences.5.xml:622 +#: apt-sortpkgs.1.xml:69 apt.conf.5.xml:946 apt_preferences.5.xml:622 #: sources.list.5.xml:221 msgid "See Also" msgstr "関連項目" @@ -3630,7 +3630,7 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:552 apt.conf.5.xml:942 apt_preferences.5.xml:462 +#: apt-ftparchive.1.xml:552 apt.conf.5.xml:934 apt_preferences.5.xml:462 #: sources.list.5.xml:181 msgid "Examples" msgstr "サンプル" @@ -6878,8 +6878,7 @@ msgid "" "DPkg::NoTriggers \"true\";\n" "PackageManager::Configure \"smart\";\n" "DPkg::ConfigurePending \"true\";\n" -"DPkg::TriggersPending \"true\";\n" -"OrderList::Score::Immediate 100;" +"DPkg::TriggersPending \"true\";" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> @@ -6897,12 +6896,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:491 +#: apt.conf.5.xml:490 msgid "DPkg::NoTriggers" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:492 +#: apt.conf.5.xml:491 msgid "" "Add the no triggers flag to all dpkg calls (expect the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -6915,14 +6914,14 @@ msgstr "" # type: <tag></tag> #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:499 +#: apt.conf.5.xml:498 #, fuzzy #| msgid "Packages::Compress" msgid "PackageManager::Configure" msgstr "Packages::Compress" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:500 +#: apt.conf.5.xml:499 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". \"<literal>all</literal>\" is the default " @@ -6939,13 +6938,13 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:510 +#: apt.conf.5.xml:509 #, fuzzy msgid "DPkg::ConfigurePending" msgstr "ユーザの設定" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:511 +#: apt.conf.5.xml:510 msgid "" "If this option is set apt will call <command>dpkg --configure --pending</" "command> to let dpkg handle all required configurations and triggers. This " @@ -6956,43 +6955,28 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:517 +#: apt.conf.5.xml:516 msgid "DPkg::TriggersPending" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:518 +#: apt.conf.5.xml:517 msgid "" "Useful for <literal>smart</literal> configuration as a package which has " -"pending triggers is not considered as <literal>installed</literal> and dpkg " -"treats them as <literal>unpacked</literal> currently which is a dealbreaker " -"for Pre-Dependencies (see debbugs #526774). Note that this will process all " -"triggers, not only the triggers needed to configure this package." -msgstr "" - -#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:523 -msgid "Dpkg::NoConfTriggers" -msgstr "" - -#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:524 -msgid "" -"DPkg currently will ignore the --triggers or --no-triggers flag if the " -"trigger is already pending. This option therefore has no real effect as long " -"as dpkg doesn't change his behavior. The option is automatical activated if " -"<literal>DPkg::NoTriggers</literal> is activated. You should use " -"<literal>DPkg::TriggersPending</literal> to take care of these pending " -"triggers." +"pending triggers is not considered as \"<literal>installed</literal>\" and " +"dpkg treats them as \"<literal>unpacked</literal>\" currently which is a " +"dealbreaker for Pre-Dependencies (see also debbugs #526774). Note that this " +"will process all triggers, not only the triggers needed to configure this " +"package." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:530 +#: apt.conf.5.xml:522 msgid "PackageManager::UnpackAll" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:531 +#: apt.conf.5.xml:523 msgid "" "As the configuration can be deferred to be done at the end by dpkg it can be " "tried to order the unpack series only by critical needs, e.g. by Pre-" @@ -7004,12 +6988,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:538 +#: apt.conf.5.xml:530 msgid "OrderList::Score::Immediate" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:546 +#: apt.conf.5.xml:538 #, no-wrap msgid "" "OrderList::Score {\n" @@ -7021,7 +7005,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:539 +#: apt.conf.5.xml:531 msgid "" "Essential packages (and there dependencies) should be configured immediately " "after unpacking. It will be a good idea to do this quite early in the " @@ -7035,12 +7019,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:559 +#: apt.conf.5.xml:551 msgid "Periodic and Archives options" msgstr "Periodic オプションと Archives オプション" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:560 +#: apt.conf.5.xml:552 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by " @@ -7054,12 +7038,12 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:568 +#: apt.conf.5.xml:560 msgid "Debug options" msgstr "デバッグオプション" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:570 +#: apt.conf.5.xml:562 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -7070,7 +7054,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:581 +#: apt.conf.5.xml:573 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -7081,7 +7065,7 @@ msgstr "" "にします。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:589 +#: apt.conf.5.xml:581 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -7092,7 +7076,7 @@ msgstr "" "literal>) を行う場合に使用します。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:590 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -7102,66 +7086,66 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:606 +#: apt.conf.5.xml:598 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CDROM IDs." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:616 +#: apt.conf.5.xml:608 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:621 +#: apt.conf.5.xml:613 msgid "<literal>Debug::Acquire::cdrom</literal>" msgstr "<literal>Debug::Acquire::cdrom</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:625 +#: apt.conf.5.xml:617 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" "<literal>cdrom://</literal> ソースへのアクセスに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:632 +#: apt.conf.5.xml:624 msgid "<literal>Debug::Acquire::ftp</literal>" msgstr "<literal>Debug::Acquire::ftp</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:636 +#: apt.conf.5.xml:628 msgid "Print information related to downloading packages using FTP." msgstr "FTP を用いたパッケージのダウンロードに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:643 +#: apt.conf.5.xml:635 msgid "<literal>Debug::Acquire::http</literal>" msgstr "<literal>Debug::Acquire::http</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:647 +#: apt.conf.5.xml:639 msgid "Print information related to downloading packages using HTTP." msgstr "HTTP を用いたパッケージのダウンロードに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:654 +#: apt.conf.5.xml:646 msgid "<literal>Debug::Acquire::https</literal>" msgstr "<literal>Debug::Acquire::https</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:658 +#: apt.conf.5.xml:650 msgid "Print information related to downloading packages using HTTPS." msgstr "HTTPS を用いたパッケージのダウンロードに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:665 +#: apt.conf.5.xml:657 msgid "<literal>Debug::Acquire::gpgv</literal>" msgstr "<literal>Debug::Acquire::gpgv</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:669 +#: apt.conf.5.xml:661 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -7169,46 +7153,46 @@ msgstr "" "<literal>gpg</literal> を用いた暗号署名の検証に関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:676 +#: apt.conf.5.xml:668 msgid "<literal>Debug::aptcdrom</literal>" msgstr "<literal>Debug::aptcdrom</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:680 +#: apt.conf.5.xml:672 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:687 +#: apt.conf.5.xml:679 msgid "<literal>Debug::BuildDeps</literal>" msgstr "<literal>Debug::BuildDeps</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:690 +#: apt.conf.5.xml:682 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:697 +#: apt.conf.5.xml:689 msgid "<literal>Debug::Hashes</literal>" msgstr "<literal>Debug::Hashes</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:700 +#: apt.conf.5.xml:692 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:707 +#: apt.conf.5.xml:699 msgid "<literal>Debug::IdentCDROM</literal>" msgstr "<literal>Debug::IdentCDROM</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:710 +#: apt.conf.5.xml:702 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -7216,93 +7200,93 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:718 +#: apt.conf.5.xml:710 msgid "<literal>Debug::NoLocking</literal>" msgstr "<literal>Debug::NoLocking</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:721 +#: apt.conf.5.xml:713 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:729 +#: apt.conf.5.xml:721 msgid "<literal>Debug::pkgAcquire</literal>" msgstr "<literal>Debug::pkgAcquire</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:733 +#: apt.conf.5.xml:725 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:740 +#: apt.conf.5.xml:732 msgid "<literal>Debug::pkgAcquire::Auth</literal>" msgstr "<literal>Debug::pkgAcquire::Auth</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:743 +#: apt.conf.5.xml:735 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:750 +#: apt.conf.5.xml:742 msgid "<literal>Debug::pkgAcquire::Diffs</literal>" msgstr "<literal>Debug::pkgAcquire::Diffs</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:753 +#: apt.conf.5.xml:745 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:761 +#: apt.conf.5.xml:753 msgid "<literal>Debug::pkgAcquire::RRed</literal>" msgstr "<literal>Debug::pkgAcquire::RRed</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:765 +#: apt.conf.5.xml:757 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:772 +#: apt.conf.5.xml:764 msgid "<literal>Debug::pkgAcquire::Worker</literal>" msgstr "<literal>Debug::pkgAcquire::Worker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:776 +#: apt.conf.5.xml:768 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:783 +#: apt.conf.5.xml:775 msgid "<literal>Debug::pkgAutoRemove</literal>" msgstr "<literal>Debug::pkgAutoRemove</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:787 +#: apt.conf.5.xml:779 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:794 +#: apt.conf.5.xml:786 msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>" msgstr "<literal>Debug::pkgDepCache::AutoInstall</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:797 +#: apt.conf.5.xml:789 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -7312,12 +7296,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:808 +#: apt.conf.5.xml:800 msgid "<literal>Debug::pkgDepCache::Marker</literal>" msgstr "<literal>Debug::pkgDepCache::Marker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:811 +#: apt.conf.5.xml:803 msgid "" "Generate debug messages describing which package is marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -7334,91 +7318,91 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:830 +#: apt.conf.5.xml:822 msgid "<literal>Debug::pkgInitConfig</literal>" msgstr "<literal>Debug::pkgInitConfig</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:833 +#: apt.conf.5.xml:825 msgid "Dump the default configuration to standard error on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:840 +#: apt.conf.5.xml:832 msgid "<literal>Debug::pkgDPkgPM</literal>" msgstr "<literal>Debug::pkgDPkgPM</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:843 +#: apt.conf.5.xml:835 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:851 +#: apt.conf.5.xml:843 msgid "<literal>Debug::pkgDPkgProgressReporting</literal>" msgstr "<literal>Debug::pkgDPkgProgressReporting</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:854 +#: apt.conf.5.xml:846 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:861 +#: apt.conf.5.xml:853 msgid "<literal>Debug::pkgOrderList</literal>" msgstr "<literal>Debug::pkgOrderList</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:865 +#: apt.conf.5.xml:857 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:873 +#: apt.conf.5.xml:865 msgid "<literal>Debug::pkgPackageManager</literal>" msgstr "<literal>Debug::pkgPackageManager</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:877 +#: apt.conf.5.xml:869 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:884 +#: apt.conf.5.xml:876 msgid "<literal>Debug::pkgPolicy</literal>" msgstr "<literal>Debug::pkgPolicy</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:888 +#: apt.conf.5.xml:880 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:894 +#: apt.conf.5.xml:886 msgid "<literal>Debug::pkgProblemResolver</literal>" msgstr "<literal>Debug::pkgProblemResolver</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:898 +#: apt.conf.5.xml:890 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:906 +#: apt.conf.5.xml:898 msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>" msgstr "<literal>Debug::pkgProblemResolver::ShowScores</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:909 +#: apt.conf.5.xml:901 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -7426,12 +7410,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:917 +#: apt.conf.5.xml:909 msgid "<literal>Debug::sourceList</literal>" msgstr "<literal>Debug::sourceList</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:921 +#: apt.conf.5.xml:913 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -7439,7 +7423,7 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:943 +#: apt.conf.5.xml:935 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -7449,7 +7433,7 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><variablelist> -#: apt.conf.5.xml:950 +#: apt.conf.5.xml:942 #, fuzzy #| msgid "&apt-conf;" msgid "&file-aptconf;" @@ -7458,7 +7442,7 @@ msgstr "&apt-conf;" # type: Content of: <refentry><refsect1><para> #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:955 +#: apt.conf.5.xml:947 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." -- cgit v1.2.3 From 5900bd8dd90ebe61697a82fc18f3b1a9edaeedfa Mon Sep 17 00:00:00 2001 From: David Kalnischkies <kalnischkies@gmail.com> Date: Thu, 24 Sep 2009 12:17:34 +0200 Subject: document the Acquire::http::Dl-Limit option in the manpage --- debian/changelog | 2 ++ doc/apt.conf.5.xml | 7 ++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 90e5f8de1..4bf132367 100644 --- a/debian/changelog +++ b/debian/changelog @@ -27,6 +27,8 @@ apt (0.7.24) UNRELEASED; urgency=low * apt-pkg/aptconfiguration.cc, doc/apt.conf.5.xml: - add an order subgroup to the compression types to simplify reordering a bit and improve the documentation for this option group. + * doc/apt.conf.5.xml: + - document the Acquire::http::Dl-Limit option * doc/apt.ent, all man pages: - move the description of files to globally usable entities * doc/apt_preferences.5.xml: diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml index 67aa933cc..11c086bf2 100644 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@ -227,7 +227,12 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; 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.</para></listitem> + require this are in violation of RFC 2068.</para> + + <para>The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</literal> + which accepts integer values in kilobyte. The default value is 0 which deactivates + the limit and tries uses as much as possible of the bandwith (Note that this option implicit + deactivates the download from multiple servers at the same time.)</para></listitem> </varlistentry> <varlistentry><term>https</term> -- cgit v1.2.3 From 3ba36dfffbf5f158090f53a15b94e67db98057aa Mon Sep 17 00:00:00 2001 From: David Kalnischkies <kalnischkies@gmail.com> Date: Thu, 24 Sep 2009 12:18:16 +0200 Subject: clarify the note for the pkgnames command in the manpage (Closes: #547599) --- debian/changelog | 2 ++ doc/apt-cache.8.xml | 7 +++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 4bf132367..e21ed2dfd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -29,6 +29,8 @@ apt (0.7.24) UNRELEASED; urgency=low a bit and improve the documentation for this option group. * doc/apt.conf.5.xml: - document the Acquire::http::Dl-Limit option + * doc/apt-cache.8.xml: + - clarify the note for the pkgnames command (Closes: #547599) * doc/apt.ent, all man pages: - move the description of files to globally usable entities * doc/apt_preferences.5.xml: diff --git a/doc/apt-cache.8.xml b/doc/apt-cache.8.xml index 26d55a519..9851135b1 100644 --- a/doc/apt-cache.8.xml +++ b/doc/apt-cache.8.xml @@ -226,11 +226,14 @@ Reverse Provides: </varlistentry> <varlistentry><term>pkgnames <replaceable>[ prefix ]</replaceable></term> - <listitem><para>This command prints the name of each package in the system. The optional + <listitem><para>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 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.</para></listitem> + <option>--generate</option> option.</para> + <para>Note that a package which APT knows of is not nessasarily available to download, + installable or installed, e.g. virtual packages are also listed in the generated list. + </para></listitem> </varlistentry> <varlistentry><term>dotty <replaceable>pkg(s)</replaceable></term> -- cgit v1.2.3 From 96bc713cb6f2b5442700a40a64f1c6315942d82a Mon Sep 17 00:00:00 2001 From: David Kalnischkies <kalnischkies@gmail.com> Date: Thu, 24 Sep 2009 12:19:42 +0200 Subject: add bugnr to the fix two little typos in the --simulate description. (Closes: #545059) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The double spaces are not a bug of APT nor one of po4a. Thanks to Nicolas François for the explaination! --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index e21ed2dfd..5a9001658 100644 --- a/debian/changelog +++ b/debian/changelog @@ -23,7 +23,7 @@ apt (0.7.24) UNRELEASED; urgency=low * apt-pkg/contrib/strutl.cc: - replace unknown multibytes with ? in UTF8ToCharset (Closes: #545208) * doc/apt-get.8.xml: - - fix two little typos in the --simulate description. + - fix two little typos in the --simulate description. (Closes: #545059) * apt-pkg/aptconfiguration.cc, doc/apt.conf.5.xml: - add an order subgroup to the compression types to simplify reordering a bit and improve the documentation for this option group. -- cgit v1.2.3 From 5e62aac041d57ecbfd07c7e1ec7822d5fbbba522 Mon Sep 17 00:00:00 2001 From: David Kalnischkies <kalnischkies@gmail.com> Date: Thu, 24 Sep 2009 12:58:38 +0200 Subject: When selecting a real package instead of a virtual one, ignore versions for the same package that are not candidates. This allows us to survive repositories that contain more than one version of a package. Bugreport #547788 and patch by Marius Vollmer, thanks! --- cmdline/apt-get.cc | 43 ++++++++++++++++++++++++++++++++++--------- debian/changelog | 3 +++ 2 files changed, 37 insertions(+), 9 deletions(-) diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index 1582fff85..c32d67226 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -1049,17 +1049,42 @@ bool TryToInstall(pkgCache::PkgIterator Pkg,pkgDepCache &Cache, pkgProblemResolver &Fix,bool Remove,bool BrokenFix, unsigned int &ExpectedInst,bool AllowFail = true) { - /* This is a pure virtual package and there is a single available - provides */ - if (Cache[Pkg].CandidateVer == 0 && Pkg->ProvidesList != 0 && - Pkg.ProvidesList()->NextProvides == 0) + /* This is a pure virtual package and there is a single available + candidate providing it. */ + if (Cache[Pkg].CandidateVer == 0 && Pkg->ProvidesList != 0) { - pkgCache::PkgIterator Tmp = Pkg.ProvidesList().OwnerPkg(); - ioprintf(c1out,_("Note, selecting %s instead of %s\n"), - Tmp.Name(),Pkg.Name()); - Pkg = Tmp; + pkgCache::PkgIterator Prov; + bool found_one = false; + + for (pkgCache::PrvIterator P = Pkg.ProvidesList(); P; P++) + { + pkgCache::VerIterator const PVer = P.OwnerVer(); + pkgCache::PkgIterator const PPkg = PVer.ParentPkg(); + + /* Ignore versions that are not a candidate. */ + if (Cache[PPkg].CandidateVer != PVer) + continue; + + if (found_one == false) + { + Prov = PPkg; + found_one = true; + } + else if (PPkg != Prov) + { + found_one = false; // we found at least two + break; + } + } + + if (found_one == true) + { + ioprintf(c1out,_("Note, selecting %s instead of %s\n"), + Prov.Name(),Pkg.Name()); + Pkg = Prov; + } } - + // Handle the no-upgrade case if (_config->FindB("APT::Get::upgrade",true) == false && Pkg->CurrentVer != 0) diff --git a/debian/changelog b/debian/changelog index 5a9001658..dd56495b2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -46,6 +46,9 @@ apt (0.7.24) UNRELEASED; urgency=low * apt-pkg/deb/dpkgpm.cc, apt-pkg/packagemanager.cc, apt-pkg/orderlist.cc: - add and document _experimental_ options to make (aggressive) use of dpkg's trigger and configuration handling (Closes: #473461) + * cmdline/apt-get.cc: + - ignore versions that are not candidates when selecting a package + instead of a virtual one (by Marius Vollmer, Closes: #547788) [ Christian Perrier ] * doc/fr/*, doc/po/fr.po: -- cgit v1.2.3 From 63fc55509fc32466b1027e9e91cc3220ee21a1e0 Mon Sep 17 00:00:00 2001 From: David Kalnischkies <kalnischkies@gmail.com> Date: Thu, 24 Sep 2009 15:03:55 +0200 Subject: try to be cristal clear about the usage of :: and {} (Closes: #503481) See the bugreport (and merged ones) for discussion details which lead to these additions to the introduction of the apt.conf manpage. --- debian/changelog | 1 + doc/apt.conf.5.xml | 29 ++- doc/po/apt-doc.pot | 514 +++++++++++++++++++++++++++----------------------- doc/po/fr.po | 535 +++++++++++++++++++++++++++++----------------------- doc/po/ja.po | 537 ++++++++++++++++++++++++++++++----------------------- 5 files changed, 919 insertions(+), 697 deletions(-) diff --git a/debian/changelog b/debian/changelog index dd56495b2..22f83a4dc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -29,6 +29,7 @@ apt (0.7.24) UNRELEASED; urgency=low a bit and improve the documentation for this option group. * doc/apt.conf.5.xml: - document the Acquire::http::Dl-Limit option + - try to be cristal clear about the usage of :: and {} (Closes: #503481) * doc/apt-cache.8.xml: - clarify the note for the pkgnames command (Closes: #547599) * doc/apt.ent, all man pages: diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml index 11c086bf2..cfc09ec1f 100644 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@ -86,17 +86,40 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; <para>The names of the configuration items are not case-sensitive. So in the previous example you could use <literal>dpkg::pre-install-pkgs</literal>.</para> - <para>Two specials are allowed, <literal>#include</literal> and <literal>#clear</literal> + <para>Names for the configuration items are optional if a list is defined as it can be see in + the <literal>DPkg::Pre-Install-Pkgs</literal> example above. If you don't specify a name a + new entry will simply add a new option to the list. If you specify a name you can override + the option as every other option by reassigning a new value to the option.</para> + + <para>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 descendants are erased.</para> + specified element and all its descendants are erased. + (Note that these lines also need to end with a semicolon.)</para> + + <para>The #clear command is the only way to delete a list or a complete scope. + Reopening a scope or the ::-style described below will <emphasis>not</emphasis> + override previewsly written entries. Only options can be overridden by adressing a new + value to it - lists and scopes can't be overridden, only cleared.</para> <para>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.</para> + a trailing :: to the list name. (As you might suspect: The scope syntax can't be used + on the commandline.)</para> + + <para>Note that you can use :: only for appending one item per line to a list and + that you should not use it in combination with the scope syntax. + (The scope syntax implicit insert ::) Using both syntaxes together will trigger a bug + which some users unfortunately relay on: An option with the unusual name "<literal>::</literal>" + which acts like every other option with a name. These introduces many problems + including that a user who writes multiple lines in this <emphasis>wrong</emphasis> syntax in + the hope to append to a list will gain the opposite as only the last assignment for this option + "<literal>::</literal>" will be used. Upcoming APT versions will raise errors and + will stop working if they encounter this misuse, so please correct such statements now + as long as APT doesn't complain explicit about them.</para> </refsect1> <refsect1><title>The APT Group diff --git a/doc/po/apt-doc.pot b/doc/po/apt-doc.pot index a624f49c0..ddd9d025e 100644 --- a/doc/po/apt-doc.pot +++ b/doc/po/apt-doc.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-09-18 17:15+0300\n" +"POT-Creation-Date: 2009-09-24 15:02+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1126,20 +1126,28 @@ msgstr "" #. type: Content of: #: apt-cache.8.xml:229 msgid "" -"This command prints the name of each package in the system. The optional " +"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 " "for use in a shell tab complete function and the output is generated " "extremely quickly. This command is best used with the " " option." msgstr "" +#. type: Content of: +#: apt-cache.8.xml:234 +msgid "" +"Note that a package which APT knows of is not nessasarily available to " +"download, installable or installed, e.g. virtual packages are also listed in " +"the generated list." +msgstr "" + #. type: Content of: -#: apt-cache.8.xml:236 +#: apt-cache.8.xml:239 msgid "dotty pkg(s)" msgstr "" #. type: Content of: -#: apt-cache.8.xml:237 +#: apt-cache.8.xml:240 msgid "" "dotty takes a list of packages on the command line and " "generates output suitable for use by dotty from the -#: apt-cache.8.xml:246 +#: apt-cache.8.xml:249 msgid "" "The resulting nodes will have several shapes; normal packages are boxes, " "pure provides are triangles, mixed provides are diamonds, missing packages " @@ -1161,17 +1169,17 @@ msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:251 +#: apt-cache.8.xml:254 msgid "Caution, dotty cannot graph larger sets of packages." msgstr "" #. type: Content of: -#: apt-cache.8.xml:254 +#: apt-cache.8.xml:257 msgid "xvcg pkg(s)" msgstr "" #. type: Content of: -#: apt-cache.8.xml:255 +#: apt-cache.8.xml:258 msgid "" "The same as dotty, only for xvcg from the VCG " @@ -1179,12 +1187,12 @@ msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:259 +#: apt-cache.8.xml:262 msgid "policy [ pkg(s) ]" msgstr "" #. type: Content of: -#: apt-cache.8.xml:260 +#: apt-cache.8.xml:263 msgid "" "policy is meant to help debug issues relating to the " "preferences file. With no arguments it will print out the priorities of each " @@ -1193,12 +1201,12 @@ msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:266 +#: apt-cache.8.xml:269 msgid "madison /[ pkg(s) ]" msgstr "" #. type: Content of: -#: apt-cache.8.xml:267 +#: apt-cache.8.xml:270 msgid "" "apt-cache's madison command attempts " "to mimic the output format and a subset of the functionality of the Debian " @@ -1210,22 +1218,22 @@ msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:278 apt-config.8.xml:93 apt-extracttemplates.1.xml:56 apt-ftparchive.1.xml:492 apt-get.8.xml:319 apt-mark.8.xml:89 apt-sortpkgs.1.xml:54 apt.conf.5.xml:408 apt.conf.5.xml:430 +#: apt-cache.8.xml:281 apt-config.8.xml:93 apt-extracttemplates.1.xml:56 apt-ftparchive.1.xml:492 apt-get.8.xml:319 apt-mark.8.xml:89 apt-sortpkgs.1.xml:54 apt.conf.5.xml:436 apt.conf.5.xml:458 msgid "options" msgstr "" #. type: Content of: -#: apt-cache.8.xml:282 +#: apt-cache.8.xml:285 msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:282 +#: apt-cache.8.xml:285 msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:283 +#: apt-cache.8.xml:286 msgid "" "Select the file to store the package cache. The package cache is the primary " "cache used by all operations. Configuration Item: " @@ -1233,17 +1241,17 @@ msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:288 apt-ftparchive.1.xml:535 apt-get.8.xml:376 apt-sortpkgs.1.xml:58 +#: apt-cache.8.xml:291 apt-ftparchive.1.xml:535 apt-get.8.xml:376 apt-sortpkgs.1.xml:58 msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:288 +#: apt-cache.8.xml:291 msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:289 +#: apt-cache.8.xml:292 msgid "" "Select the file to store the source cache. The source is used only by " "gencaches and it stores a parsed version of the package " @@ -1253,17 +1261,17 @@ msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:296 apt-ftparchive.1.xml:509 apt-get.8.xml:366 +#: apt-cache.8.xml:299 apt-ftparchive.1.xml:509 apt-get.8.xml:366 msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:296 apt-ftparchive.1.xml:509 apt-get.8.xml:366 +#: apt-cache.8.xml:299 apt-ftparchive.1.xml:509 apt-get.8.xml:366 msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:297 +#: apt-cache.8.xml:300 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quietness up to a maximum of 2. You can also use " @@ -1272,17 +1280,17 @@ msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:303 +#: apt-cache.8.xml:306 msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:303 +#: apt-cache.8.xml:306 msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:304 +#: apt-cache.8.xml:307 msgid "" "Print only important dependencies; for use with unmet and depends. Causes " "only Depends and Pre-Depends relations to be printed. Configuration Item: " @@ -1290,34 +1298,34 @@ msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:309 apt-cdrom.8.xml:121 apt-get.8.xml:333 +#: apt-cache.8.xml:312 apt-cdrom.8.xml:121 apt-get.8.xml:333 msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:309 +#: apt-cache.8.xml:312 msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:310 +#: apt-cache.8.xml:313 msgid "" "Print full package records when searching. Configuration Item: " "APT::Cache::ShowFull." msgstr "" #. type: Content of: -#: apt-cache.8.xml:314 apt-cdrom.8.xml:131 +#: apt-cache.8.xml:317 apt-cdrom.8.xml:131 msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:314 +#: apt-cache.8.xml:317 msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:315 +#: apt-cache.8.xml:318 msgid "" "Print full records for all available versions. This is the default; to turn " "it off, use . If " @@ -1328,17 +1336,17 @@ msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:323 +#: apt-cache.8.xml:326 msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:323 +#: apt-cache.8.xml:326 msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:324 +#: apt-cache.8.xml:327 msgid "" "Perform automatic package cache regeneration, rather than use the cache as " "it is. This is the default; to turn it off, use " @@ -1347,29 +1355,29 @@ msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:329 +#: apt-cache.8.xml:332 msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:329 apt-cdrom.8.xml:139 +#: apt-cache.8.xml:332 apt-cdrom.8.xml:139 msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:330 +#: apt-cache.8.xml:333 msgid "" "Only search on the package names, not the long descriptions. Configuration " "Item: APT::Cache::NamesOnly." msgstr "" #. type: Content of: -#: apt-cache.8.xml:334 +#: apt-cache.8.xml:337 msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:335 +#: apt-cache.8.xml:338 msgid "" "Make pkgnames print all names, including virtual packages " "and missing dependencies. Configuration Item: " @@ -1377,12 +1385,12 @@ msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:340 +#: apt-cache.8.xml:343 msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:341 +#: apt-cache.8.xml:344 msgid "" "Make depends and rdepends recursive so " "that all packages mentioned are printed once. Configuration Item: " @@ -1390,12 +1398,12 @@ msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:346 +#: apt-cache.8.xml:349 msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:348 +#: apt-cache.8.xml:351 msgid "" "Limit the output of depends and " "rdepends to packages which are currently installed. " @@ -1403,37 +1411,37 @@ msgid "" msgstr "" #. type: Content of: -#: apt-cache.8.xml:353 apt-cdrom.8.xml:150 apt-config.8.xml:98 apt-extracttemplates.1.xml:67 apt-ftparchive.1.xml:547 apt-get.8.xml:554 apt-sortpkgs.1.xml:64 +#: apt-cache.8.xml:356 apt-cdrom.8.xml:150 apt-config.8.xml:98 apt-extracttemplates.1.xml:67 apt-ftparchive.1.xml:547 apt-get.8.xml:554 apt-sortpkgs.1.xml:64 msgid "&apt-commonoptions;" msgstr "" #. type: Content of: -#: apt-cache.8.xml:358 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 apt.conf.5.xml:940 apt_preferences.5.xml:615 +#: apt-cache.8.xml:361 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 apt.conf.5.xml:968 apt_preferences.5.xml:615 msgid "Files" msgstr "" #. type: Content of: <refentry><refsect1><variablelist> -#: apt-cache.8.xml:360 +#: apt-cache.8.xml:363 msgid "&file-sourceslist; &file-statelists;" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-cache.8.xml:365 apt-cdrom.8.xml:155 apt-config.8.xml:103 apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569 apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181 apt-sortpkgs.1.xml:69 apt.conf.5.xml:946 apt_preferences.5.xml:622 sources.list.5.xml:221 +#: apt-cache.8.xml:368 apt-cdrom.8.xml:155 apt-config.8.xml:103 apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569 apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181 apt-sortpkgs.1.xml:69 apt.conf.5.xml:974 apt_preferences.5.xml:622 sources.list.5.xml:221 msgid "See Also" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:366 +#: apt-cache.8.xml:369 msgid "&apt-conf;, &sources-list;, &apt-get;" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-cache.8.xml:370 apt-cdrom.8.xml:160 apt-config.8.xml:108 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:567 apt-get.8.xml:575 apt-mark.8.xml:137 apt-sortpkgs.1.xml:73 +#: apt-cache.8.xml:373 apt-cdrom.8.xml:160 apt-config.8.xml:108 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:567 apt-get.8.xml:575 apt-mark.8.xml:137 apt-sortpkgs.1.xml:73 msgid "Diagnostics" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:371 +#: apt-cache.8.xml:374 msgid "" "<command>apt-cache</command> returns zero on normal operation, decimal 100 " "on error." @@ -2673,7 +2681,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:552 apt.conf.5.xml:934 apt_preferences.5.xml:462 sources.list.5.xml:181 +#: apt-ftparchive.1.xml:552 apt.conf.5.xml:962 apt_preferences.5.xml:462 sources.list.5.xml:181 msgid "Examples" msgstr "" @@ -4267,43 +4275,81 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:89 msgid "" +"Names for the configuration items are optional if a list is defined as it " +"can be see in the <literal>DPkg::Pre-Install-Pkgs</literal> example " +"above. If you don't specify a name a new entry will simply add a new option " +"to the list. If you specify a name you can override the option as every " +"other option by reassigning a new value to the option." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:94 +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 " +"<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 descendants are " -"erased." +"erased. (Note that these lines also need to end with a semicolon.)" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:95 +#: apt.conf.5.xml:101 +msgid "" +"The #clear command is the only way to delete a list or a complete scope. " +"Reopening a scope or the ::-style described below will " +"<emphasis>not</emphasis> override previewsly written entries. Only options " +"can be overridden by adressing a new value to it - lists and scopes can't be " +"overridden, only cleared." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:106 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." +"appended too by adding a trailing :: to the list name. (As you might " +"suspect: The scope syntax can't be used on the commandline.)" +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:113 +msgid "" +"Note that you can use :: only for appending one item per line to a list and " +"that you should not use it in combination with the scope syntax. (The scope " +"syntax implicit insert ::) Using both syntaxes together will trigger a bug " +"which some users unfortunately relay on: An option with the unusual name " +"\"<literal>::</literal>\" which acts like every other option with a " +"name. These introduces many problems including that a user who writes " +"multiple lines in this <emphasis>wrong</emphasis> syntax in the hope to " +"append to a list will gain the opposite as only the last assignment for this " +"option \"<literal>::</literal>\" will be used. Upcoming APT versions will " +"raise errors and will stop working if they encounter this misuse, so please " +"correct such statements now as long as APT doesn't complain explicit about " +"them." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:102 +#: apt.conf.5.xml:125 msgid "The APT Group" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:103 +#: apt.conf.5.xml:126 msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:107 +#: apt.conf.5.xml:130 msgid "Architecture" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:108 +#: apt.conf.5.xml:131 msgid "" "System Architecture; sets the architecture to use when fetching files and " "parsing package lists. The internal default is the architecture apt was " @@ -4311,12 +4357,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:113 +#: apt.conf.5.xml:136 msgid "Default-Release" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:114 +#: apt.conf.5.xml:137 msgid "" "Default release to install packages from if more than one version " "available. Contains release name, codename or release version. Examples: " @@ -4325,24 +4371,24 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:118 +#: apt.conf.5.xml:141 msgid "Ignore-Hold" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:119 +#: apt.conf.5.xml:142 msgid "" "Ignore Held packages; This global option causes the problem resolver to " "ignore held packages in its decision making." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:123 +#: apt.conf.5.xml:146 msgid "Clean-Installed" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:124 +#: apt.conf.5.xml:147 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -4351,12 +4397,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:130 +#: apt.conf.5.xml:153 msgid "Immediate-Configure" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:131 +#: apt.conf.5.xml:154 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 " @@ -4366,12 +4412,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:138 +#: apt.conf.5.xml:161 msgid "Force-LoopBreak" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:139 +#: apt.conf.5.xml:162 msgid "" "Never Enable this option unless you -really- know what you are doing. It " "permits APT to temporarily remove an essential package to break a " @@ -4382,87 +4428,87 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:147 +#: apt.conf.5.xml:170 msgid "Cache-Limit" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:148 +#: apt.conf.5.xml:171 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 "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:152 +#: apt.conf.5.xml:175 msgid "Build-Essential" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:153 +#: apt.conf.5.xml:176 msgid "Defines which package(s) are considered essential build dependencies." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:156 +#: apt.conf.5.xml:179 msgid "Get" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:157 +#: apt.conf.5.xml:180 msgid "" "The Get subsection controls the &apt-get; tool, please see its documentation " "for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:161 +#: apt.conf.5.xml:184 msgid "Cache" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:162 +#: apt.conf.5.xml:185 msgid "" "The Cache subsection controls the &apt-cache; tool, please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:166 +#: apt.conf.5.xml:189 msgid "CDROM" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:167 +#: apt.conf.5.xml:190 msgid "" "The CDROM subsection controls the &apt-cdrom; tool, please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:173 +#: apt.conf.5.xml:196 msgid "The Acquire Group" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:178 +#: apt.conf.5.xml:201 msgid "PDiffs" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:179 +#: apt.conf.5.xml:202 msgid "" "Try to download deltas called <literal>PDiffs</literal> for Packages or " "Sources files instead of downloading whole ones. True by default." msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:184 +#: apt.conf.5.xml:207 msgid "Queue-Mode" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:185 +#: apt.conf.5.xml:208 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of " "<literal>host</literal> or <literal>access</literal> which determines how " @@ -4472,36 +4518,36 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:192 +#: apt.conf.5.xml:215 msgid "Retries" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:193 +#: apt.conf.5.xml:216 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:197 +#: apt.conf.5.xml:220 msgid "Source-Symlinks" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:198 +#: apt.conf.5.xml:221 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:202 sources.list.5.xml:139 +#: apt.conf.5.xml:225 sources.list.5.xml:139 msgid "http" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:203 +#: apt.conf.5.xml:226 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 " @@ -4513,7 +4559,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:211 +#: apt.conf.5.xml:234 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy to not use its cached " @@ -4527,7 +4573,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:221 apt.conf.5.xml:273 +#: apt.conf.5.xml:244 apt.conf.5.xml:301 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method, this applies to all things including connection timeout and data " @@ -4535,7 +4581,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:224 +#: apt.conf.5.xml:247 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) " @@ -4546,13 +4592,23 @@ msgid "" "are in violation of RFC 2068." msgstr "" +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:255 +msgid "" +"The used bandwidth can be limited with " +"<literal>Acquire::http::Dl-Limit</literal> which accepts integer values in " +"kilobyte. The default value is 0 which deactivates the limit and tries uses " +"as much as possible of the bandwith (Note that this option implicit " +"deactivates the download from multiple servers at the same time.)" +msgstr "" + #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:233 +#: apt.conf.5.xml:261 msgid "https" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:234 +#: apt.conf.5.xml:262 msgid "" "HTTPS URIs. Cache-control and proxy options are the same as for " "<literal>http</literal> method. <literal>Pipeline-Depth</literal> option is " @@ -4560,7 +4616,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:238 +#: apt.conf.5.xml:266 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is " @@ -4582,12 +4638,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:256 sources.list.5.xml:150 +#: apt.conf.5.xml:284 sources.list.5.xml:150 msgid "ftp" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:257 +#: apt.conf.5.xml:285 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 " @@ -4607,7 +4663,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:276 +#: apt.conf.5.xml:304 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on, it works in nearly every environment. However " @@ -4617,7 +4673,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:283 +#: apt.conf.5.xml:311 msgid "" "It is possible to proxy FTP over HTTP by setting the " "<envar>ftp_proxy</envar> environment variable to a http url - see the " @@ -4627,7 +4683,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:288 +#: apt.conf.5.xml:316 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -4637,18 +4693,18 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:295 sources.list.5.xml:132 +#: apt.conf.5.xml:323 sources.list.5.xml:132 msgid "cdrom" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:301 +#: apt.conf.5.xml:329 #, no-wrap msgid "\"/cdrom/\"::Mount \"foo\";" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:296 +#: apt.conf.5.xml:324 msgid "" "CDROM URIs; the only setting for CDROM URIs is the mount point, " "<literal>cdrom::Mount</literal> which must be the mount point for the CDROM " @@ -4661,12 +4717,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:306 +#: apt.conf.5.xml:334 msgid "gpgv" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:307 +#: apt.conf.5.xml:335 msgid "" "GPGV URIs; the only option for GPGV URIs is the option to pass additional " "parameters to gpgv. <literal>gpgv::Options</literal> Additional options " @@ -4674,12 +4730,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:312 +#: apt.conf.5.xml:340 msgid "CompressionTypes" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:318 +#: apt.conf.5.xml:346 #, no-wrap msgid "" "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> " @@ -4687,7 +4743,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:313 +#: apt.conf.5.xml:341 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -4699,19 +4755,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:323 +#: apt.conf.5.xml:351 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:326 +#: apt.conf.5.xml:354 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:319 +#: apt.conf.5.xml:347 msgid "" "Also the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -4728,13 +4784,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:330 +#: apt.conf.5.xml:358 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:328 +#: apt.conf.5.xml:356 msgid "" "Note that at run time the " "<literal>Dir::Bin::<replaceable>Methodname</replaceable></literal> will be " @@ -4749,7 +4805,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:335 +#: apt.conf.5.xml:363 msgid "" "While it is possible to add an empty compression type to the order list, but " "APT in its current version doesn't understand it correctly and will display " @@ -4759,7 +4815,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:174 +#: apt.conf.5.xml:197 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages and the URI handlers. <placeholder type=\"variablelist\" " @@ -4767,12 +4823,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:344 +#: apt.conf.5.xml:372 msgid "Directories" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:346 +#: apt.conf.5.xml:374 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -4784,7 +4840,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:353 +#: apt.conf.5.xml:381 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -4797,7 +4853,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:362 +#: apt.conf.5.xml:390 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4807,7 +4863,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:368 +#: apt.conf.5.xml:396 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4815,7 +4871,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:372 +#: apt.conf.5.xml:400 msgid "" "Binary programs are pointed to by " "<literal>Dir::Bin</literal>. <literal>Dir::Bin::Methods</literal> specifies " @@ -4827,7 +4883,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:380 +#: apt.conf.5.xml:408 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4840,12 +4896,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:393 +#: apt.conf.5.xml:421 msgid "APT in DSelect" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:395 +#: apt.conf.5.xml:423 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behaviour. These are in the <literal>DSelect</literal> " @@ -4853,12 +4909,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:399 +#: apt.conf.5.xml:427 msgid "Clean" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:400 +#: apt.conf.5.xml:428 msgid "" "Cache Clean mode; this value may be one of always, prompt, auto, pre-auto " "and never. always and prompt will remove all packages from the cache after " @@ -4869,50 +4925,50 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:409 +#: apt.conf.5.xml:437 msgid "" "The contents of this variable is passed to &apt-get; as command line options " "when it is run for the install phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:413 +#: apt.conf.5.xml:441 msgid "Updateoptions" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:414 +#: apt.conf.5.xml:442 msgid "" "The contents of this variable is passed to &apt-get; as command line options " "when it is run for the update phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:418 +#: apt.conf.5.xml:446 msgid "PromptAfterUpdate" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:419 +#: apt.conf.5.xml:447 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:425 +#: apt.conf.5.xml:453 msgid "How APT calls dpkg" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:426 +#: apt.conf.5.xml:454 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:431 +#: apt.conf.5.xml:459 msgid "" "This is a list of options to pass to dpkg. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4920,17 +4976,17 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:436 +#: apt.conf.5.xml:464 msgid "Pre-Invoke" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:436 +#: apt.conf.5.xml:464 msgid "Post-Invoke" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:437 +#: apt.conf.5.xml:465 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4939,12 +4995,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:443 +#: apt.conf.5.xml:471 msgid "Pre-Install-Pkgs" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:444 +#: apt.conf.5.xml:472 msgid "" "This is a list of shell commands to run before invoking dpkg. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4954,7 +5010,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:450 +#: apt.conf.5.xml:478 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -4965,36 +5021,36 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:457 +#: apt.conf.5.xml:485 msgid "Run-Directory" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:458 +#: apt.conf.5.xml:486 msgid "" "APT chdirs to this directory before invoking dpkg, the default is " "<filename>/</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:462 +#: apt.conf.5.xml:490 msgid "Build-options" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:463 +#: apt.conf.5.xml:491 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages, the " "default is to disable signing and produce all binaries." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:468 +#: apt.conf.5.xml:496 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:469 +#: apt.conf.5.xml:497 msgid "" "APT can call dpkg in a way so it can make aggressive use of triggers over " "multiply calls of dpkg. Without further options dpkg will use triggers only " @@ -5009,7 +5065,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:484 +#: apt.conf.5.xml:512 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -5019,7 +5075,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:478 +#: apt.conf.5.xml:506 msgid "" "Note that it is not garanteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -5033,12 +5089,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:518 msgid "DPkg::NoTriggers" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:491 +#: apt.conf.5.xml:519 msgid "" "Add the no triggers flag to all dpkg calls (expect the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -5050,12 +5106,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:498 +#: apt.conf.5.xml:526 msgid "PackageManager::Configure" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:499 +#: apt.conf.5.xml:527 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". \"<literal>all</literal>\" is the default " @@ -5072,12 +5128,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:509 +#: apt.conf.5.xml:537 msgid "DPkg::ConfigurePending" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:510 +#: apt.conf.5.xml:538 msgid "" "If this option is set apt will call <command>dpkg --configure " "--pending</command> to let dpkg handle all required configurations and " @@ -5089,12 +5145,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:516 +#: apt.conf.5.xml:544 msgid "DPkg::TriggersPending" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:517 +#: apt.conf.5.xml:545 msgid "" "Useful for <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal> and dpkg " @@ -5104,12 +5160,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:522 +#: apt.conf.5.xml:550 msgid "PackageManager::UnpackAll" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:523 +#: apt.conf.5.xml:551 msgid "" "As the configuration can be deferred to be done at the end by dpkg it can be " "tried to order the unpack series only by critical needs, e.g. by " @@ -5121,12 +5177,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:530 +#: apt.conf.5.xml:558 msgid "OrderList::Score::Immediate" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:538 +#: apt.conf.5.xml:566 #, no-wrap msgid "" "OrderList::Score {\n" @@ -5138,7 +5194,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:531 +#: apt.conf.5.xml:559 msgid "" "Essential packages (and there dependencies) should be configured immediately " "after unpacking. It will be a good idea to do this quite early in the " @@ -5152,12 +5208,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:551 +#: apt.conf.5.xml:579 msgid "Periodic and Archives options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:552 +#: apt.conf.5.xml:580 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by " @@ -5166,12 +5222,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:560 +#: apt.conf.5.xml:588 msgid "Debug options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:562 +#: apt.conf.5.xml:590 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -5182,7 +5238,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:573 +#: apt.conf.5.xml:601 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, " @@ -5190,7 +5246,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:581 +#: apt.conf.5.xml:609 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s " @@ -5198,7 +5254,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:590 +#: apt.conf.5.xml:618 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -5208,110 +5264,110 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:626 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CDROM IDs." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:608 +#: apt.conf.5.xml:636 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:613 +#: apt.conf.5.xml:641 msgid "<literal>Debug::Acquire::cdrom</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:645 msgid "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:624 +#: apt.conf.5.xml:652 msgid "<literal>Debug::Acquire::ftp</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:628 +#: apt.conf.5.xml:656 msgid "Print information related to downloading packages using FTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:635 +#: apt.conf.5.xml:663 msgid "<literal>Debug::Acquire::http</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:639 +#: apt.conf.5.xml:667 msgid "Print information related to downloading packages using HTTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:646 +#: apt.conf.5.xml:674 msgid "<literal>Debug::Acquire::https</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:650 +#: apt.conf.5.xml:678 msgid "Print information related to downloading packages using HTTPS." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:657 +#: apt.conf.5.xml:685 msgid "<literal>Debug::Acquire::gpgv</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:661 +#: apt.conf.5.xml:689 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:668 +#: apt.conf.5.xml:696 msgid "<literal>Debug::aptcdrom</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:672 +#: apt.conf.5.xml:700 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:679 +#: apt.conf.5.xml:707 msgid "<literal>Debug::BuildDeps</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:682 +#: apt.conf.5.xml:710 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:689 +#: apt.conf.5.xml:717 msgid "<literal>Debug::Hashes</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:692 +#: apt.conf.5.xml:720 msgid "" "Output each cryptographic hash that is generated by the " "<literal>apt</literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:699 +#: apt.conf.5.xml:727 msgid "<literal>Debug::IdentCDROM</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:702 +#: apt.conf.5.xml:730 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5319,92 +5375,92 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:710 +#: apt.conf.5.xml:738 msgid "<literal>Debug::NoLocking</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:713 +#: apt.conf.5.xml:741 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:721 +#: apt.conf.5.xml:749 msgid "<literal>Debug::pkgAcquire</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:725 +#: apt.conf.5.xml:753 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:732 +#: apt.conf.5.xml:760 msgid "<literal>Debug::pkgAcquire::Auth</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:735 +#: apt.conf.5.xml:763 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:742 +#: apt.conf.5.xml:770 msgid "<literal>Debug::pkgAcquire::Diffs</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:745 +#: apt.conf.5.xml:773 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:753 +#: apt.conf.5.xml:781 msgid "<literal>Debug::pkgAcquire::RRed</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:757 +#: apt.conf.5.xml:785 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:764 +#: apt.conf.5.xml:792 msgid "<literal>Debug::pkgAcquire::Worker</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:768 +#: apt.conf.5.xml:796 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:775 +#: apt.conf.5.xml:803 msgid "<literal>Debug::pkgAutoRemove</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:779 +#: apt.conf.5.xml:807 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:786 +#: apt.conf.5.xml:814 msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:789 +#: apt.conf.5.xml:817 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial " @@ -5414,12 +5470,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:800 +#: apt.conf.5.xml:828 msgid "<literal>Debug::pkgDepCache::Marker</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:803 +#: apt.conf.5.xml:831 msgid "" "Generate debug messages describing which package is marked as " "keep/install/remove while the ProblemResolver does his work. Each addition " @@ -5437,90 +5493,90 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:822 +#: apt.conf.5.xml:850 msgid "<literal>Debug::pkgInitConfig</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:825 +#: apt.conf.5.xml:853 msgid "Dump the default configuration to standard error on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:860 msgid "<literal>Debug::pkgDPkgPM</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:835 +#: apt.conf.5.xml:863 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:843 +#: apt.conf.5.xml:871 msgid "<literal>Debug::pkgDPkgProgressReporting</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:846 +#: apt.conf.5.xml:874 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:853 +#: apt.conf.5.xml:881 msgid "<literal>Debug::pkgOrderList</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:857 +#: apt.conf.5.xml:885 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:865 +#: apt.conf.5.xml:893 msgid "<literal>Debug::pkgPackageManager</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:869 +#: apt.conf.5.xml:897 msgid "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:876 +#: apt.conf.5.xml:904 msgid "<literal>Debug::pkgPolicy</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:880 +#: apt.conf.5.xml:908 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:886 +#: apt.conf.5.xml:914 msgid "<literal>Debug::pkgProblemResolver</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:890 +#: apt.conf.5.xml:918 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:898 +#: apt.conf.5.xml:926 msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:901 +#: apt.conf.5.xml:929 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5528,32 +5584,32 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:909 +#: apt.conf.5.xml:937 msgid "<literal>Debug::sourceList</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:913 +#: apt.conf.5.xml:941 msgid "" "Print information about the vendors read from " "<filename>/etc/apt/vendors.list</filename>." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:935 +#: apt.conf.5.xml:963 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." msgstr "" #. type: Content of: <refentry><refsect1><variablelist> -#: apt.conf.5.xml:942 +#: apt.conf.5.xml:970 msgid "&file-aptconf;" msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:947 +#: apt.conf.5.xml:975 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "" diff --git a/doc/po/fr.po b/doc/po/fr.po index 6088f9ecf..461638080 100644 --- a/doc/po/fr.po +++ b/doc/po/fr.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2009-09-18 17:09+0300\n" +"POT-Creation-Date: 2009-09-24 15:02+0300\n" "PO-Revision-Date: 2009-09-14 20:15+0200\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" @@ -1515,8 +1515,15 @@ msgstr "pkgnames <replaceable>[ préfixe ]</replaceable>" #. 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 in the system. The optional " +"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 " "for use in a shell tab complete function and the output is generated " "extremely quickly. This command is best used with the <option>--generate</" @@ -1528,13 +1535,21 @@ msgstr "" "est produite très rapidement. On utilise au mieux cette commande avec " "l'option <option>--generate</option>." +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:234 +msgid "" +"Note that a package which APT knows of is not nessasarily available to " +"download, installable or installed, e.g. virtual packages are also listed in " +"the generated list." +msgstr "" + #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:236 +#: apt-cache.8.xml:239 msgid "dotty <replaceable>pkg(s)</replaceable>" msgstr "dotty <replaceable>paquet(s)</replaceable>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:237 +#: apt-cache.8.xml:240 msgid "" "<literal>dotty</literal> takes a list of packages on the command line and " "generates output suitable for use by dotty from the <ulink url=\"http://www." @@ -1556,7 +1571,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:246 +#: apt-cache.8.xml:249 msgid "" "The resulting nodes will have several shapes; normal packages are boxes, " "pure provides are triangles, mixed provides are diamonds, missing packages " @@ -1571,19 +1586,19 @@ msgstr "" "conflits." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:251 +#: apt-cache.8.xml:254 msgid "Caution, dotty cannot graph larger sets of packages." msgstr "" "Attention, dotty ne peut pas représenter des ensembles très grands de " "paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:254 +#: apt-cache.8.xml:257 msgid "xvcg <replaceable>pkg(s)</replaceable>" msgstr "xvcg <replaceable>paquet(s)</replaceable>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:255 +#: apt-cache.8.xml:258 msgid "" "The same as <literal>dotty</literal>, only for xvcg from the <ulink url=" "\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." @@ -1593,12 +1608,12 @@ msgstr "" "ulink>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:259 +#: apt-cache.8.xml:262 msgid "policy <replaceable>[ pkg(s) ]</replaceable>" msgstr "policy <replaceable>[ paquet(s) ]</replaceable>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:260 +#: apt-cache.8.xml:263 msgid "" "<literal>policy</literal> is meant to help debug issues relating to the " "preferences file. With no arguments it will print out the priorities of each " @@ -1611,12 +1626,12 @@ msgstr "" "paquet donné en argument." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:266 +#: apt-cache.8.xml:269 msgid "madison <replaceable>/[ pkg(s) ]</replaceable>" msgstr "madison <replaceable>[ paquet(s) ]</replaceable>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:267 +#: apt-cache.8.xml:270 msgid "" "<literal>apt-cache</literal>'s <literal>madison</literal> command attempts " "to mimic the output format and a subset of the functionality of the Debian " @@ -1636,24 +1651,24 @@ msgstr "" "literal>)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:278 apt-config.8.xml:93 apt-extracttemplates.1.xml:56 +#: apt-cache.8.xml:281 apt-config.8.xml:93 apt-extracttemplates.1.xml:56 #: apt-ftparchive.1.xml:492 apt-get.8.xml:319 apt-mark.8.xml:89 -#: apt-sortpkgs.1.xml:54 apt.conf.5.xml:408 apt.conf.5.xml:430 +#: apt-sortpkgs.1.xml:54 apt.conf.5.xml:436 apt.conf.5.xml:458 msgid "options" msgstr "options" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:282 +#: apt-cache.8.xml:285 msgid "<option>-p</option>" msgstr "<option>-p</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:282 +#: apt-cache.8.xml:285 msgid "<option>--pkg-cache</option>" msgstr "<option>--pkg-cache</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:283 +#: apt-cache.8.xml:286 msgid "" "Select the file to store the package cache. The package cache is the primary " "cache used by all operations. Configuration Item: <literal>Dir::Cache::" @@ -1664,18 +1679,18 @@ msgstr "" "<literal>Dir::Cache::pkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:288 apt-ftparchive.1.xml:535 apt-get.8.xml:376 +#: apt-cache.8.xml:291 apt-ftparchive.1.xml:535 apt-get.8.xml:376 #: apt-sortpkgs.1.xml:58 msgid "<option>-s</option>" msgstr "<option>-s</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:288 +#: apt-cache.8.xml:291 msgid "<option>--src-cache</option>" msgstr "<option>--src-cache</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:289 +#: apt-cache.8.xml:292 msgid "" "Select the file to store the source cache. The source is used only by " "<literal>gencaches</literal> and it stores a parsed version of the package " @@ -1691,17 +1706,17 @@ msgstr "" "<literal>Dir::Cache::srcpkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:296 apt-ftparchive.1.xml:509 apt-get.8.xml:366 +#: apt-cache.8.xml:299 apt-ftparchive.1.xml:509 apt-get.8.xml:366 msgid "<option>-q</option>" msgstr "<option>-q</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:296 apt-ftparchive.1.xml:509 apt-get.8.xml:366 +#: apt-cache.8.xml:299 apt-ftparchive.1.xml:509 apt-get.8.xml:366 msgid "<option>--quiet</option>" msgstr "<option>--quiet</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:297 +#: apt-cache.8.xml:300 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quietness up to a maximum of 2. You can also use " @@ -1716,17 +1731,17 @@ msgstr "" "<literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:303 +#: apt-cache.8.xml:306 msgid "<option>-i</option>" msgstr "<option>-i</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:303 +#: apt-cache.8.xml:306 msgid "<option>--important</option>" msgstr "<option>--important</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:304 +#: apt-cache.8.xml:307 msgid "" "Print only important dependencies; for use with unmet and depends. Causes " "only Depends and Pre-Depends relations to be printed. Configuration Item: " @@ -1737,17 +1752,17 @@ msgstr "" "Élément de configuration : <literal>APT::Cache::Important</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:309 apt-cdrom.8.xml:121 apt-get.8.xml:333 +#: apt-cache.8.xml:312 apt-cdrom.8.xml:121 apt-get.8.xml:333 msgid "<option>-f</option>" msgstr "<option>-f</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:309 +#: apt-cache.8.xml:312 msgid "<option>--full</option>" msgstr "<option>--full</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:310 +#: apt-cache.8.xml:313 msgid "" "Print full package records when searching. Configuration Item: " "<literal>APT::Cache::ShowFull</literal>." @@ -1757,17 +1772,17 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:314 apt-cdrom.8.xml:131 +#: apt-cache.8.xml:317 apt-cdrom.8.xml:131 msgid "<option>-a</option>" msgstr "<option>-a</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:314 +#: apt-cache.8.xml:317 msgid "<option>--all-versions</option>" msgstr "<option>--all-versions</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:315 +#: apt-cache.8.xml:318 msgid "" "Print full records for all available versions. This is the default; to turn " "it off, use <option>--no-all-versions</option>. If <option>--no-all-" @@ -1785,17 +1800,17 @@ msgstr "" "<literal>APT::Cache::AllVersions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:323 +#: apt-cache.8.xml:326 msgid "<option>-g</option>" msgstr "<option>-g</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:323 +#: apt-cache.8.xml:326 msgid "<option>--generate</option>" msgstr "<option>--generate</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:324 +#: apt-cache.8.xml:327 msgid "" "Perform automatic package cache regeneration, rather than use the cache as " "it is. This is the default; to turn it off, use <option>--no-generate</" @@ -1807,17 +1822,17 @@ msgstr "" "configuration : <literal>APT::Cache::Generate</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:329 +#: apt-cache.8.xml:332 msgid "<option>--names-only</option>" msgstr "<option>--names-only</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:329 apt-cdrom.8.xml:139 +#: apt-cache.8.xml:332 apt-cdrom.8.xml:139 msgid "<option>-n</option>" msgstr "<option>-n</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:330 +#: apt-cache.8.xml:333 msgid "" "Only search on the package names, not the long descriptions. Configuration " "Item: <literal>APT::Cache::NamesOnly</literal>." @@ -1827,12 +1842,12 @@ msgstr "" "NamesOnly</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:334 +#: apt-cache.8.xml:337 msgid "<option>--all-names</option>" msgstr "<option>--all-names</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:335 +#: apt-cache.8.xml:338 msgid "" "Make <literal>pkgnames</literal> print all names, including virtual packages " "and missing dependencies. Configuration Item: <literal>APT::Cache::" @@ -1843,12 +1858,12 @@ msgstr "" "configuration : <literal>APT::Cache::AllNames</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:340 +#: apt-cache.8.xml:343 msgid "<option>--recurse</option>" msgstr "<option>--recurse</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:341 +#: apt-cache.8.xml:344 msgid "" "Make <literal>depends</literal> and <literal>rdepends</literal> recursive so " "that all packages mentioned are printed once. Configuration Item: " @@ -1860,12 +1875,12 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:346 +#: apt-cache.8.xml:349 msgid "<option>--installed</option>" msgstr "<option>--installed</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:348 +#: apt-cache.8.xml:351 msgid "" "Limit the output of <literal>depends</literal> and <literal>rdepends</" "literal> to packages which are currently installed. Configuration Item: " @@ -1876,46 +1891,46 @@ msgstr "" "Élément de configuration : <literal>APT::Cache::Installed</literal>." #. type: Content of: <refentry><refsect1><variablelist> -#: apt-cache.8.xml:353 apt-cdrom.8.xml:150 apt-config.8.xml:98 +#: apt-cache.8.xml:356 apt-cdrom.8.xml:150 apt-config.8.xml:98 #: apt-extracttemplates.1.xml:67 apt-ftparchive.1.xml:547 apt-get.8.xml:554 #: apt-sortpkgs.1.xml:64 msgid "&apt-commonoptions;" msgstr "&apt-commonoptions;" #. type: Content of: <refentry><refsect1><title> -#: apt-cache.8.xml:358 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 -#: apt.conf.5.xml:940 apt_preferences.5.xml:615 +#: apt-cache.8.xml:361 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 +#: apt.conf.5.xml:968 apt_preferences.5.xml:615 msgid "Files" msgstr "Fichiers" #. type: Content of: <refentry><refsect1><variablelist> -#: apt-cache.8.xml:360 +#: apt-cache.8.xml:363 msgid "&file-sourceslist; &file-statelists;" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-cache.8.xml:365 apt-cdrom.8.xml:155 apt-config.8.xml:103 +#: apt-cache.8.xml:368 apt-cdrom.8.xml:155 apt-config.8.xml:103 #: apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569 #: apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181 -#: apt-sortpkgs.1.xml:69 apt.conf.5.xml:946 apt_preferences.5.xml:622 +#: apt-sortpkgs.1.xml:69 apt.conf.5.xml:974 apt_preferences.5.xml:622 #: sources.list.5.xml:221 msgid "See Also" msgstr "Voir aussi" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:366 +#: apt-cache.8.xml:369 msgid "&apt-conf;, &sources-list;, &apt-get;" msgstr "&apt-conf;, &sources-list;, &apt-get;." #. type: Content of: <refentry><refsect1><title> -#: apt-cache.8.xml:370 apt-cdrom.8.xml:160 apt-config.8.xml:108 +#: apt-cache.8.xml:373 apt-cdrom.8.xml:160 apt-config.8.xml:108 #: apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:567 apt-get.8.xml:575 #: apt-mark.8.xml:137 apt-sortpkgs.1.xml:73 msgid "Diagnostics" msgstr "Diagnostique" #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:371 +#: apt-cache.8.xml:374 msgid "" "<command>apt-cache</command> returns zero on normal operation, decimal 100 " "on error." @@ -3483,7 +3498,7 @@ msgstr "" "configuration : <literal>APT::FTPArchive::ReadOnlyDB</literal>." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:552 apt.conf.5.xml:934 apt_preferences.5.xml:462 +#: apt-ftparchive.1.xml:552 apt.conf.5.xml:962 apt_preferences.5.xml:462 #: sources.list.5.xml:181 msgid "Examples" msgstr "Exemples" @@ -5668,6 +5683,16 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:89 +msgid "" +"Names for the configuration items are optional if a list is defined as it " +"can be see in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. " +"If you don't specify a name a new entry will simply add a new option to the " +"list. If you specify a name you can override the option as every other " +"option by reassigning a new value to the option." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:94 #, fuzzy #| msgid "" #| "Two specials are allowed, <literal>#include</literal> and " @@ -5678,10 +5703,11 @@ msgstr "" #| "erased." 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>: <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 descendants are erased." +"The specified element and all its descendants are erased. (Note that these " +"lines also need to end with a semicolon.)" msgstr "" "Deux éléments spéciaux sont autorisés : <literal>#include</literal> et " "<literal>#clear</literal>. <literal>#include</literal> inclut le fichier " @@ -5691,13 +5717,31 @@ msgstr "" "ses descendants sont supprimés." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:95 +#: apt.conf.5.xml:101 +msgid "" +"The #clear command is the only way to delete a list or a complete scope. " +"Reopening a scope or the ::-style described below will <emphasis>not</" +"emphasis> override previewsly written entries. Only options can be " +"overridden by adressing a new value to it - lists and scopes can't be " +"overridden, only cleared." +msgstr "" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:106 +#, 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 " "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." +"appended too by adding a trailing :: to the list name. (As you might " +"suspect: The scope syntax can't be used on the commandline.)" msgstr "" "Tous les outils d'APT possèdent une option <option>-o</option> qui permet de " "spécifier une configuration quelconque depuis la ligne de commande. La " @@ -5706,13 +5750,30 @@ msgstr "" "de l'option. On peut compléter une liste en ajoutant un « :: » au nom de la " "liste." +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:113 +msgid "" +"Note that you can use :: only for appending one item per line to a list and " +"that you should not use it in combination with the scope syntax. (The scope " +"syntax implicit insert ::) Using both syntaxes together will trigger a bug " +"which some users unfortunately relay on: An option with the unusual name " +"\"<literal>::</literal>\" which acts like every other option with a name. " +"These introduces many problems including that a user who writes multiple " +"lines in this <emphasis>wrong</emphasis> syntax in the hope to append to a " +"list will gain the opposite as only the last assignment for this option " +"\"<literal>::</literal>\" will be used. Upcoming APT versions will raise " +"errors and will stop working if they encounter this misuse, so please " +"correct such statements now as long as APT doesn't complain explicit about " +"them." +msgstr "" + #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:102 +#: apt.conf.5.xml:125 msgid "The APT Group" msgstr "Le groupe APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:103 +#: apt.conf.5.xml:126 msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." @@ -5721,12 +5782,12 @@ msgstr "" "également des options communes à tous les outils." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:107 +#: apt.conf.5.xml:130 msgid "Architecture" msgstr "Architecture" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:108 +#: apt.conf.5.xml:131 msgid "" "System Architecture; sets the architecture to use when fetching files and " "parsing package lists. The internal default is the architecture apt was " @@ -5737,12 +5798,12 @@ msgstr "" "valeur interne par défaut est l'architecture pour laquelle APT a été compilé." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:113 +#: apt.conf.5.xml:136 msgid "Default-Release" msgstr "Default-Release" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:114 +#: apt.conf.5.xml:137 msgid "" "Default release to install packages from if more than one version available. " "Contains release name, codename or release version. Examples: 'stable', " @@ -5755,12 +5816,12 @@ msgstr "" "« 4.0 », « 5.0* ». Voir aussi &apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:118 +#: apt.conf.5.xml:141 msgid "Ignore-Hold" msgstr "Ignore-Hold" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:119 +#: apt.conf.5.xml:142 msgid "" "Ignore Held packages; This global option causes the problem resolver to " "ignore held packages in its decision making." @@ -5770,12 +5831,12 @@ msgstr "" "décision." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:123 +#: apt.conf.5.xml:146 msgid "Clean-Installed" msgstr "Clean-Installed" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:124 +#: apt.conf.5.xml:147 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -5789,12 +5850,12 @@ msgstr "" "les réinstaller." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:130 +#: apt.conf.5.xml:153 msgid "Immediate-Configure" msgstr "Immediate-Configure" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:131 +#: apt.conf.5.xml:154 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 " @@ -5810,12 +5871,12 @@ msgstr "" "vos risques et périls." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:138 +#: apt.conf.5.xml:161 msgid "Force-LoopBreak" msgstr "Force-LoopBreak" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:139 +#: apt.conf.5.xml:162 msgid "" "Never Enable this option unless you -really- know what you are doing. It " "permits APT to temporarily remove an essential package to break a Conflicts/" @@ -5833,12 +5894,12 @@ msgstr "" "ces paquets dépendent." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:147 +#: apt.conf.5.xml:170 msgid "Cache-Limit" msgstr "Cache-Limit" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:148 +#: apt.conf.5.xml:171 msgid "" "APT uses a fixed size memory mapped cache file to store the 'available' " "information. This sets the size of that cache (in bytes)." @@ -5848,24 +5909,24 @@ msgstr "" "mémoire allouée pour le chargement de ce cache." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:152 +#: apt.conf.5.xml:175 msgid "Build-Essential" msgstr "Build-Essential" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:153 +#: apt.conf.5.xml:176 msgid "Defines which package(s) are considered essential build dependencies." msgstr "" "Cette option définit les paquets qui sont considérés comme faisant partie " "des dépendances essentielles pour la construction de paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:156 +#: apt.conf.5.xml:179 msgid "Get" msgstr "Get" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:157 +#: apt.conf.5.xml:180 msgid "" "The Get subsection controls the &apt-get; tool, please see its documentation " "for more information about the options here." @@ -5875,12 +5936,12 @@ msgstr "" "question." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:161 +#: apt.conf.5.xml:184 msgid "Cache" msgstr "Cache" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:162 +#: apt.conf.5.xml:185 msgid "" "The Cache subsection controls the &apt-cache; tool, please see its " "documentation for more information about the options here." @@ -5890,12 +5951,12 @@ msgstr "" "options en question." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:166 +#: apt.conf.5.xml:189 msgid "CDROM" msgstr "CDROM" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:167 +#: apt.conf.5.xml:190 msgid "" "The CDROM subsection controls the &apt-cdrom; tool, please see its " "documentation for more information about the options here." @@ -5905,17 +5966,17 @@ msgstr "" "options en question." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:173 +#: apt.conf.5.xml:196 msgid "The Acquire Group" msgstr "Le groupe Acquire" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:178 +#: apt.conf.5.xml:201 msgid "PDiffs" msgstr "PDiffs" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:179 +#: apt.conf.5.xml:202 msgid "" "Try to download deltas called <literal>PDiffs</literal> for Packages or " "Sources files instead of downloading whole ones. True by default." @@ -5925,12 +5986,12 @@ msgstr "" "télécharger entièrement. Par défaut à « true »." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:184 +#: apt.conf.5.xml:207 msgid "Queue-Mode" msgstr "Queue-Mode" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:185 +#: apt.conf.5.xml:208 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -5946,12 +6007,12 @@ msgstr "" "initiée." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:192 +#: apt.conf.5.xml:215 msgid "Retries" msgstr "Retries" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:193 +#: apt.conf.5.xml:216 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." @@ -5961,12 +6022,12 @@ msgstr "" "échoué." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:197 +#: apt.conf.5.xml:220 msgid "Source-Symlinks" msgstr "Source-Symlinks" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:198 +#: apt.conf.5.xml:221 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." @@ -5976,12 +6037,12 @@ msgstr "" "archives de sources au lieu de les copier. Par défaut à « true »." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:202 sources.list.5.xml:139 +#: apt.conf.5.xml:225 sources.list.5.xml:139 msgid "http" msgstr "http" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:203 +#: apt.conf.5.xml:226 #, fuzzy #| msgid "" #| "HTTP URIs; http::Proxy is the default http proxy to use. It is in the " @@ -6008,7 +6069,7 @@ msgstr "" "les options de mandataire HTTP." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:211 +#: apt.conf.5.xml:234 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy to not use its cached " @@ -6033,7 +6094,7 @@ msgstr "" "en compte aucune de ces options." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:221 apt.conf.5.xml:273 +#: apt.conf.5.xml:244 apt.conf.5.xml:301 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method, this applies to all things including connection timeout and data " @@ -6043,7 +6104,7 @@ msgstr "" "(timeout) utilisé par la méthode. Cela vaut pour tout, connexion et données." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:224 +#: apt.conf.5.xml:247 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) " @@ -6062,13 +6123,23 @@ msgstr "" "sinon des données seront corrompues. Les machines qui ont besoin de cette " "option ne respectent pas la RFC 2068." +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:255 +msgid "" +"The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" +"literal> which accepts integer values in kilobyte. The default value is 0 " +"which deactivates the limit and tries uses as much as possible of the " +"bandwith (Note that this option implicit deactivates the download from " +"multiple servers at the same time.)" +msgstr "" + #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:233 +#: apt.conf.5.xml:261 msgid "https" msgstr "https" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:234 +#: apt.conf.5.xml:262 msgid "" "HTTPS URIs. Cache-control and proxy options are the same as for " "<literal>http</literal> method. <literal>Pipeline-Depth</literal> option is " @@ -6079,7 +6150,7 @@ msgstr "" "<literal>Pipeline-Depth</literal> n'est pas encore supportée." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:238 +#: apt.conf.5.xml:266 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is " @@ -6111,12 +6182,12 @@ msgstr "" "ou 'SSLv3'." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:256 sources.list.5.xml:150 +#: apt.conf.5.xml:284 sources.list.5.xml:150 msgid "ftp" msgstr "ftp" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:257 +#: apt.conf.5.xml:285 #, fuzzy #| msgid "" #| "FTP URIs; ftp::Proxy is the default proxy server to use. It is in the " @@ -6164,7 +6235,7 @@ msgstr "" "respectif de l'URI." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:276 +#: apt.conf.5.xml:304 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on, it works in nearly every environment. However " @@ -6181,7 +6252,7 @@ msgstr "" "modèle de fichier de configuration)." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:283 +#: apt.conf.5.xml:311 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to a http url - see the discussion of the http " @@ -6196,7 +6267,7 @@ msgstr "" "de cette méthode." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:288 +#: apt.conf.5.xml:316 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -6212,18 +6283,18 @@ msgstr "" "des serveurs FTP ne suivent pas la RFC 2428." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:295 sources.list.5.xml:132 +#: apt.conf.5.xml:323 sources.list.5.xml:132 msgid "cdrom" msgstr "cdrom" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:301 +#: apt.conf.5.xml:329 #, no-wrap msgid "\"/cdrom/\"::Mount \"foo\";" msgstr "\"/cdrom/\"::Mount \"foo\";" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:296 +#: apt.conf.5.xml:324 msgid "" "CDROM URIs; the only setting for CDROM URIs is the mount point, " "<literal>cdrom::Mount</literal> which must be the mount point for the CDROM " @@ -6245,12 +6316,12 @@ msgstr "" "spécifiées en utilisant <literal>UMount</literal>." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:306 +#: apt.conf.5.xml:334 msgid "gpgv" msgstr "gpgv" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:307 +#: apt.conf.5.xml:335 msgid "" "GPGV URIs; the only option for GPGV URIs is the option to pass additional " "parameters to gpgv. <literal>gpgv::Options</literal> Additional options " @@ -6261,18 +6332,18 @@ msgstr "" "supplémentaires passées à gpgv." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:312 +#: apt.conf.5.xml:340 msgid "CompressionTypes" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:318 +#: apt.conf.5.xml:346 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:313 +#: apt.conf.5.xml:341 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -6284,19 +6355,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:323 +#: apt.conf.5.xml:351 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:326 +#: apt.conf.5.xml:354 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:319 +#: apt.conf.5.xml:347 msgid "" "Also the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -6313,13 +6384,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:330 +#: apt.conf.5.xml:358 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:328 +#: apt.conf.5.xml:356 msgid "" "Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</" "replaceable></literal> will be checked: If this setting exists the method " @@ -6334,7 +6405,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:335 +#: apt.conf.5.xml:363 msgid "" "While it is possible to add an empty compression type to the order list, but " "APT in its current version doesn't understand it correctly and will display " @@ -6344,7 +6415,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:174 +#: apt.conf.5.xml:197 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages and the URI handlers. <placeholder type=\"variablelist\" id=\"0\"/>" @@ -6354,12 +6425,12 @@ msgstr "" "id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:344 +#: apt.conf.5.xml:372 msgid "Directories" msgstr "Les répertoires" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:346 +#: apt.conf.5.xml:374 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -6379,7 +6450,7 @@ msgstr "" "filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:353 +#: apt.conf.5.xml:381 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -6402,7 +6473,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:362 +#: apt.conf.5.xml:390 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -6417,7 +6488,7 @@ msgstr "" "fichier de configuration indiqué par la variable <envar>APT_CONFIG</envar>)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:368 +#: apt.conf.5.xml:396 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -6428,7 +6499,7 @@ msgstr "" "configuration est chargé." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:372 +#: apt.conf.5.xml:400 #, fuzzy #| msgid "" #| "Binary programs are pointed to by <literal>Dir::Bin</literal>. " @@ -6453,7 +6524,7 @@ msgstr "" "l'emplacement des programmes correspondants." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:380 +#: apt.conf.5.xml:408 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -6475,12 +6546,12 @@ msgstr "" "staging/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:393 +#: apt.conf.5.xml:421 msgid "APT in DSelect" msgstr "APT et DSelect" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:395 +#: apt.conf.5.xml:423 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behaviour. These are in the <literal>DSelect</literal> " @@ -6491,12 +6562,12 @@ msgstr "" "<literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:399 +#: apt.conf.5.xml:427 msgid "Clean" msgstr "Clean" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:400 +#: apt.conf.5.xml:428 msgid "" "Cache Clean mode; this value may be one of always, prompt, auto, pre-auto " "and never. always and prompt will remove all packages from the cache after " @@ -6514,7 +6585,7 @@ msgstr "" "supprime avant de récupérer de nouveaux paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:409 +#: apt.conf.5.xml:437 msgid "" "The contents of this variable is passed to &apt-get; as command line options " "when it is run for the install phase." @@ -6523,12 +6594,12 @@ msgstr "" "&apt-get; lors de la phase d'installation." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:413 +#: apt.conf.5.xml:441 msgid "Updateoptions" msgstr "UpdateOptions" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:414 +#: apt.conf.5.xml:442 msgid "" "The contents of this variable is passed to &apt-get; as command line options " "when it is run for the update phase." @@ -6537,12 +6608,12 @@ msgstr "" "&apt-get; lors de la phase de mise à jour." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:418 +#: apt.conf.5.xml:446 msgid "PromptAfterUpdate" msgstr "PromptAfterUpdate" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:419 +#: apt.conf.5.xml:447 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -6552,12 +6623,12 @@ msgstr "" "d'erreur que l'on propose à l'utilisateur d'intervenir." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:425 +#: apt.conf.5.xml:453 msgid "How APT calls dpkg" msgstr "Méthode d'appel de &dpkg; par APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:426 +#: apt.conf.5.xml:454 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -6566,7 +6637,7 @@ msgstr "" "&dpkg; : elles figurent dans la section <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:431 +#: apt.conf.5.xml:459 msgid "" "This is a list of options to pass to dpkg. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -6577,17 +6648,17 @@ msgstr "" "est passé comme un seul paramètre à &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:436 +#: apt.conf.5.xml:464 msgid "Pre-Invoke" msgstr "Pre-Invoke" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:436 +#: apt.conf.5.xml:464 msgid "Post-Invoke" msgstr "Post-Invoke" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:437 +#: apt.conf.5.xml:465 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -6600,12 +6671,12 @@ msgstr "" "<filename>/bin/sh</filename> : APT s'arrête dès que l'une d'elles échoue." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:443 +#: apt.conf.5.xml:471 msgid "Pre-Install-Pkgs" msgstr "Pre-Install-Pkgs" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:444 +#: apt.conf.5.xml:472 msgid "" "This is a list of shell commands to run before invoking dpkg. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -6621,7 +6692,7 @@ msgstr "" "qu'il va installer, à raison d'un par ligne." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:450 +#: apt.conf.5.xml:478 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -6637,12 +6708,12 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:457 +#: apt.conf.5.xml:485 msgid "Run-Directory" msgstr "Run-Directory" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:458 +#: apt.conf.5.xml:486 msgid "" "APT chdirs to this directory before invoking dpkg, the default is <filename>/" "</filename>." @@ -6651,12 +6722,12 @@ msgstr "" "le répertoire <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:462 +#: apt.conf.5.xml:490 msgid "Build-options" msgstr "Build-options" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:463 +#: apt.conf.5.xml:491 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages, the " "default is to disable signing and produce all binaries." @@ -6666,12 +6737,12 @@ msgstr "" "créés." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:468 +#: apt.conf.5.xml:496 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:469 +#: apt.conf.5.xml:497 msgid "" "APT can call dpkg in a way so it can make aggressive use of triggers over " "multiply calls of dpkg. Without further options dpkg will use triggers only " @@ -6686,7 +6757,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:484 +#: apt.conf.5.xml:512 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -6696,7 +6767,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:478 +#: apt.conf.5.xml:506 msgid "" "Note that it is not garanteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -6710,12 +6781,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:518 msgid "DPkg::NoTriggers" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:491 +#: apt.conf.5.xml:519 msgid "" "Add the no triggers flag to all dpkg calls (expect the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -6727,14 +6798,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:498 +#: apt.conf.5.xml:526 #, fuzzy #| msgid "Packages::Compress" msgid "PackageManager::Configure" msgstr "Packages::Compress" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:499 +#: apt.conf.5.xml:527 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". \"<literal>all</literal>\" is the default " @@ -6750,12 +6821,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:509 +#: apt.conf.5.xml:537 msgid "DPkg::ConfigurePending" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:510 +#: apt.conf.5.xml:538 msgid "" "If this option is set apt will call <command>dpkg --configure --pending</" "command> to let dpkg handle all required configurations and triggers. This " @@ -6766,12 +6837,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:516 +#: apt.conf.5.xml:544 msgid "DPkg::TriggersPending" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:517 +#: apt.conf.5.xml:545 msgid "" "Useful for <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal> and dpkg " @@ -6781,12 +6852,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:522 +#: apt.conf.5.xml:550 msgid "PackageManager::UnpackAll" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:523 +#: apt.conf.5.xml:551 msgid "" "As the configuration can be deferred to be done at the end by dpkg it can be " "tried to order the unpack series only by critical needs, e.g. by Pre-" @@ -6798,12 +6869,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:530 +#: apt.conf.5.xml:558 msgid "OrderList::Score::Immediate" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:538 +#: apt.conf.5.xml:566 #, no-wrap msgid "" "OrderList::Score {\n" @@ -6815,7 +6886,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:531 +#: apt.conf.5.xml:559 msgid "" "Essential packages (and there dependencies) should be configured immediately " "after unpacking. It will be a good idea to do this quite early in the " @@ -6829,12 +6900,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:551 +#: apt.conf.5.xml:579 msgid "Periodic and Archives options" msgstr "Options « Periodic » et « Archive »" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:552 +#: apt.conf.5.xml:580 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by " @@ -6846,12 +6917,12 @@ msgstr "" "script <literal>/etc/cron.daily/apt</literal>, lancé quotidiennement." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:560 +#: apt.conf.5.xml:588 msgid "Debug options" msgstr "Les options de débogage" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:562 +#: apt.conf.5.xml:590 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -6869,7 +6940,7 @@ msgstr "" "peuvent tout de même être utiles :" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:573 +#: apt.conf.5.xml:601 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -6880,7 +6951,7 @@ msgstr "" "upgrade, upgrade, install, remove et purge</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:581 +#: apt.conf.5.xml:609 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -6892,7 +6963,7 @@ msgstr "" "superutilisateur." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:590 +#: apt.conf.5.xml:618 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -6904,7 +6975,7 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:626 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CDROM IDs." @@ -6913,17 +6984,17 @@ msgstr "" "type statfs dans les identifiants de CD." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:608 +#: apt.conf.5.xml:636 msgid "A full list of debugging options to apt follows." msgstr "Liste complète des options de débogage de APT :" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:613 +#: apt.conf.5.xml:641 msgid "<literal>Debug::Acquire::cdrom</literal>" msgstr "<literal>Debug::Acquire::cdrom</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:645 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" @@ -6931,44 +7002,44 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:624 +#: apt.conf.5.xml:652 msgid "<literal>Debug::Acquire::ftp</literal>" msgstr "<literal>Debug::Acquire::ftp</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:628 +#: apt.conf.5.xml:656 msgid "Print information related to downloading packages using FTP." msgstr "" "Affiche les informations concernant le téléchargement de paquets par FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:635 +#: apt.conf.5.xml:663 msgid "<literal>Debug::Acquire::http</literal>" msgstr "<literal>Debug::Acquire::http</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:639 +#: apt.conf.5.xml:667 msgid "Print information related to downloading packages using HTTP." msgstr "" "Affiche les informations concernant le téléchargement de paquets par HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:646 +#: apt.conf.5.xml:674 msgid "<literal>Debug::Acquire::https</literal>" msgstr "<literal>Debug::Acquire::https</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:650 +#: apt.conf.5.xml:678 msgid "Print information related to downloading packages using HTTPS." msgstr "Print information related to downloading packages using HTTPS." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:657 +#: apt.conf.5.xml:685 msgid "<literal>Debug::Acquire::gpgv</literal>" msgstr "<literal>Debug::Acquire::gpgv</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:661 +#: apt.conf.5.xml:689 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -6977,12 +7048,12 @@ msgstr "" "cryptographiques avec <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:668 +#: apt.conf.5.xml:696 msgid "<literal>Debug::aptcdrom</literal>" msgstr "<literal>Debug::aptcdrom</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:672 +#: apt.conf.5.xml:700 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -6991,24 +7062,24 @@ msgstr "" "stockées sur CD." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:679 +#: apt.conf.5.xml:707 msgid "<literal>Debug::BuildDeps</literal>" msgstr "<literal>Debug::BuildDeps</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:682 +#: apt.conf.5.xml:710 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "Décrit le processus de résolution des dépendances pour la construction de " "paquets source ( « build-dependencies » ) par &apt-get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:689 +#: apt.conf.5.xml:717 msgid "<literal>Debug::Hashes</literal>" msgstr "<literal>Debug::Hashes</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:692 +#: apt.conf.5.xml:720 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -7017,12 +7088,12 @@ msgstr "" "librairies d'<literal>apt</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:699 +#: apt.conf.5.xml:727 msgid "<literal>Debug::IdentCDROM</literal>" msgstr "<literal>Debug::IdentCDROM</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:702 +#: apt.conf.5.xml:730 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -7033,12 +7104,12 @@ msgstr "" "utilisés sur le système de fichier du CD." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:710 +#: apt.conf.5.xml:738 msgid "<literal>Debug::NoLocking</literal>" msgstr "<literal>Debug::NoLocking</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:713 +#: apt.conf.5.xml:741 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." @@ -7048,24 +7119,24 @@ msgstr "" "temps." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:721 +#: apt.conf.5.xml:749 msgid "<literal>Debug::pkgAcquire</literal>" msgstr "<literal>Debug::pkgAcquire</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:725 +#: apt.conf.5.xml:753 msgid "Log when items are added to or removed from the global download queue." msgstr "" "Trace les ajouts et suppressions d'éléments de la queue globale de " "téléchargement." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:732 +#: apt.conf.5.xml:760 msgid "<literal>Debug::pkgAcquire::Auth</literal>" msgstr "<literal>Debug::pkgAcquire::Auth</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:735 +#: apt.conf.5.xml:763 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -7075,12 +7146,12 @@ msgstr "" "éventuelles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:742 +#: apt.conf.5.xml:770 msgid "<literal>Debug::pkgAcquire::Diffs</literal>" msgstr "<literal>Debug::pkgAcquire::Diffs</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:745 +#: apt.conf.5.xml:773 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -7090,12 +7161,12 @@ msgstr "" "éventuelles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:753 +#: apt.conf.5.xml:781 msgid "<literal>Debug::pkgAcquire::RRed</literal>" msgstr "<literal>Debug::pkgAcquire::RRed</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:757 +#: apt.conf.5.xml:785 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -7105,12 +7176,12 @@ msgstr "" "place des fichiers complets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:764 +#: apt.conf.5.xml:792 msgid "<literal>Debug::pkgAcquire::Worker</literal>" msgstr "<literal>Debug::pkgAcquire::Worker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:768 +#: apt.conf.5.xml:796 msgid "" "Log all interactions with the sub-processes that actually perform downloads." msgstr "" @@ -7118,12 +7189,12 @@ msgstr "" "effectivement des téléchargements." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:775 +#: apt.conf.5.xml:803 msgid "<literal>Debug::pkgAutoRemove</literal>" msgstr "<literal>Debug::pkgAutoRemove</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:779 +#: apt.conf.5.xml:807 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -7132,12 +7203,12 @@ msgstr "" "automatiquement, et la suppression des paquets inutiles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:786 +#: apt.conf.5.xml:814 msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>" msgstr "<literal>Debug::pkgDepCache::AutoInstall</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:789 +#: apt.conf.5.xml:817 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -7152,12 +7223,12 @@ msgstr "" "de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce dernier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:800 +#: apt.conf.5.xml:828 msgid "<literal>Debug::pkgDepCache::Marker</literal>" msgstr "<literal>Debug::pkgDepCache::Marker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:803 +#: apt.conf.5.xml:831 msgid "" "Generate debug messages describing which package is marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -7192,24 +7263,24 @@ msgstr "" "de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce dernier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:822 +#: apt.conf.5.xml:850 msgid "<literal>Debug::pkgInitConfig</literal>" msgstr "<literal>Debug::pkgInitConfig</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:825 +#: apt.conf.5.xml:853 msgid "Dump the default configuration to standard error on startup." msgstr "" "Affiche, au lancement, l'ensemble de la configuration sur la sortie d'erreur " "standard." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:860 msgid "<literal>Debug::pkgDPkgPM</literal>" msgstr "<literal>Debug::pkgDPkgPM</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:835 +#: apt.conf.5.xml:863 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -7218,12 +7289,12 @@ msgstr "" "paramètres sont séparés par des espaces." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:843 +#: apt.conf.5.xml:871 msgid "<literal>Debug::pkgDPkgProgressReporting</literal>" msgstr "<literal>Debug::pkgDPkgProgressReporting</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:846 +#: apt.conf.5.xml:874 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -7233,12 +7304,12 @@ msgstr "" "fichier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:853 +#: apt.conf.5.xml:881 msgid "<literal>Debug::pkgOrderList</literal>" msgstr "<literal>Debug::pkgOrderList</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:857 +#: apt.conf.5.xml:885 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -7247,33 +7318,33 @@ msgstr "" "<literal>apt</literal> passe les paquets à &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:865 +#: apt.conf.5.xml:893 msgid "<literal>Debug::pkgPackageManager</literal>" msgstr "<literal>Debug::pkgPackageManager</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:869 +#: apt.conf.5.xml:897 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "Affiche le détail des opérations liées à l'invocation de &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:876 +#: apt.conf.5.xml:904 msgid "<literal>Debug::pkgPolicy</literal>" msgstr "<literal>Debug::pkgPolicy</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:880 +#: apt.conf.5.xml:908 msgid "Output the priority of each package list on startup." msgstr "Affiche, au lancement, la priorité de chaque liste de paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:886 +#: apt.conf.5.xml:914 msgid "<literal>Debug::pkgProblemResolver</literal>" msgstr "<literal>Debug::pkgProblemResolver</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:890 +#: apt.conf.5.xml:918 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -7282,12 +7353,12 @@ msgstr "" "concerne que les cas où un problème de dépendances complexe se présente)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:898 +#: apt.conf.5.xml:926 msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>" msgstr "<literal>Debug::pkgProblemResolver::ShowScores</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:901 +#: apt.conf.5.xml:929 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -7298,12 +7369,12 @@ msgstr "" "est décrite dans <literal>Debug::pkgDepCache::Marker</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:909 +#: apt.conf.5.xml:937 msgid "<literal>Debug::sourceList</literal>" msgstr "<literal>Debug::sourceList</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:913 +#: apt.conf.5.xml:941 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -7312,7 +7383,7 @@ msgstr "" "list</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:935 +#: apt.conf.5.xml:963 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -7321,7 +7392,7 @@ msgstr "" "exemples pour toutes les options existantes." #. type: Content of: <refentry><refsect1><variablelist> -#: apt.conf.5.xml:942 +#: apt.conf.5.xml:970 #, fuzzy #| msgid "&apt-conf;" msgid "&file-aptconf;" @@ -7329,7 +7400,7 @@ msgstr "&apt-conf;" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:947 +#: apt.conf.5.xml:975 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." diff --git a/doc/po/ja.po b/doc/po/ja.po index e7d67ddaa..fc1fec09e 100644 --- a/doc/po/ja.po +++ b/doc/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-09-18 17:09+0300\n" +"POT-Creation-Date: 2009-09-24 15:02+0300\n" "PO-Revision-Date: 2009-07-30 22:55+0900\n" "Last-Translator: KURASAWA Nozomu <nabetaro@caldron.jp>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -1557,8 +1557,15 @@ 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 in the system. The optional " +"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 " "for use in a shell tab complete function and the output is generated " "extremely quickly. This command is best used with the <option>--generate</" @@ -1569,15 +1576,23 @@ msgstr "" "タブによる補完機能に使いやすく、また非常に速く生成されます。このコマンドは " "<option>--generate</option> オプションと共に使用すると非常に便利です。" +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:234 +msgid "" +"Note that a package which APT knows of is not nessasarily available to " +"download, installable or installed, e.g. virtual packages are also listed in " +"the generated list." +msgstr "" + # type: Content of: <refentry><refsect1><refsect2><para><programlisting> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:236 +#: apt-cache.8.xml:239 msgid "dotty <replaceable>pkg(s)</replaceable>" msgstr "dotty <replaceable>pkg(s)</replaceable>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:237 +#: apt-cache.8.xml:240 msgid "" "<literal>dotty</literal> takes a list of packages on the command line and " "generates output suitable for use by dotty from the <ulink url=\"http://www." @@ -1597,7 +1612,7 @@ msgstr "" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:246 +#: apt-cache.8.xml:249 msgid "" "The resulting nodes will have several shapes; normal packages are boxes, " "pure provides are triangles, mixed provides are diamonds, missing packages " @@ -1611,18 +1626,18 @@ msgstr "" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:251 +#: apt-cache.8.xml:254 msgid "Caution, dotty cannot graph larger sets of packages." msgstr "注意) dotty は、パッケージのより大きなセットのグラフは描けません。" # type: Content of: <refentry><refsect1><refsect2><para><programlisting> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:254 +#: apt-cache.8.xml:257 msgid "xvcg <replaceable>pkg(s)</replaceable>" msgstr "xvcg <replaceable>pkg(s)</replaceable>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:255 +#: apt-cache.8.xml:258 msgid "" "The same as <literal>dotty</literal>, only for xvcg from the <ulink url=" "\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." @@ -1632,13 +1647,13 @@ msgstr "" # type: Content of: <refentry><refsect1><refsect2><para><programlisting> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:259 +#: apt-cache.8.xml:262 msgid "policy <replaceable>[ pkg(s) ]</replaceable>" msgstr "policy <replaceable>[ pkg(s) ]</replaceable>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:260 +#: apt-cache.8.xml:263 msgid "" "<literal>policy</literal> is meant to help debug issues relating to the " "preferences file. With no arguments it will print out the priorities of each " @@ -1651,13 +1666,13 @@ msgstr "" # type: Content of: <refentry><refsect1><refsect2><para><programlisting> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:266 +#: apt-cache.8.xml:269 msgid "madison <replaceable>/[ pkg(s) ]</replaceable>" msgstr "madison <replaceable>/[ pkg(s) ]</replaceable>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:267 +#: apt-cache.8.xml:270 msgid "" "<literal>apt-cache</literal>'s <literal>madison</literal> command attempts " "to mimic the output format and a subset of the functionality of the Debian " @@ -1676,25 +1691,25 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:278 apt-config.8.xml:93 apt-extracttemplates.1.xml:56 +#: apt-cache.8.xml:281 apt-config.8.xml:93 apt-extracttemplates.1.xml:56 #: apt-ftparchive.1.xml:492 apt-get.8.xml:319 apt-mark.8.xml:89 -#: apt-sortpkgs.1.xml:54 apt.conf.5.xml:408 apt.conf.5.xml:430 +#: apt-sortpkgs.1.xml:54 apt.conf.5.xml:436 apt.conf.5.xml:458 msgid "options" msgstr "オプション" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:282 +#: apt-cache.8.xml:285 msgid "<option>-p</option>" msgstr "<option>-p</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:282 +#: apt-cache.8.xml:285 msgid "<option>--pkg-cache</option>" msgstr "<option>--pkg-cache</option>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:283 +#: apt-cache.8.xml:286 msgid "" "Select the file to store the package cache. The package cache is the primary " "cache used by all operations. Configuration Item: <literal>Dir::Cache::" @@ -1705,19 +1720,19 @@ msgstr "" "pkgcache</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:288 apt-ftparchive.1.xml:535 apt-get.8.xml:376 +#: apt-cache.8.xml:291 apt-ftparchive.1.xml:535 apt-get.8.xml:376 #: apt-sortpkgs.1.xml:58 msgid "<option>-s</option>" msgstr "<option>-s</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:288 +#: apt-cache.8.xml:291 msgid "<option>--src-cache</option>" msgstr "<option>--src-cache</option>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:289 +#: apt-cache.8.xml:292 msgid "" "Select the file to store the source cache. The source is used only by " "<literal>gencaches</literal> and it stores a parsed version of the package " @@ -1732,18 +1747,18 @@ msgstr "" "<literal>Dir::Cache::srcpkgcache</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:296 apt-ftparchive.1.xml:509 apt-get.8.xml:366 +#: apt-cache.8.xml:299 apt-ftparchive.1.xml:509 apt-get.8.xml:366 msgid "<option>-q</option>" msgstr "<option>-q</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:296 apt-ftparchive.1.xml:509 apt-get.8.xml:366 +#: apt-cache.8.xml:299 apt-ftparchive.1.xml:509 apt-get.8.xml:366 msgid "<option>--quiet</option>" msgstr "<option>--quiet</option>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:297 +#: apt-cache.8.xml:300 msgid "" "Quiet; produces output suitable for logging, omitting progress indicators. " "More q's will produce more quietness up to a maximum of 2. You can also use " @@ -1756,18 +1771,18 @@ msgstr "" "<literal>quiet</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:303 +#: apt-cache.8.xml:306 msgid "<option>-i</option>" msgstr "<option>-i</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:303 +#: apt-cache.8.xml:306 msgid "<option>--important</option>" msgstr "<option>--important</option>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:304 +#: apt-cache.8.xml:307 msgid "" "Print only important dependencies; for use with unmet and depends. Causes " "only Depends and Pre-Depends relations to be printed. Configuration Item: " @@ -1778,18 +1793,18 @@ msgstr "" "Cache::Important</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:309 apt-cdrom.8.xml:121 apt-get.8.xml:333 +#: apt-cache.8.xml:312 apt-cdrom.8.xml:121 apt-get.8.xml:333 msgid "<option>-f</option>" msgstr "<option>-f</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:309 +#: apt-cache.8.xml:312 msgid "<option>--full</option>" msgstr "<option>--full</option>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:310 +#: apt-cache.8.xml:313 msgid "" "Print full package records when searching. Configuration Item: " "<literal>APT::Cache::ShowFull</literal>." @@ -1798,18 +1813,18 @@ msgstr "" "ShowFull</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:314 apt-cdrom.8.xml:131 +#: apt-cache.8.xml:317 apt-cdrom.8.xml:131 msgid "<option>-a</option>" msgstr "<option>-a</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:314 +#: apt-cache.8.xml:317 msgid "<option>--all-versions</option>" msgstr "<option>--all-versions</option>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:315 +#: apt-cache.8.xml:318 msgid "" "Print full records for all available versions. This is the default; to turn " "it off, use <option>--no-all-versions</option>. If <option>--no-all-" @@ -1825,18 +1840,18 @@ msgstr "" "用できます。設定項目 - <literal>APT::Cache::AllVersions</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:323 +#: apt-cache.8.xml:326 msgid "<option>-g</option>" msgstr "<option>-g</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:323 +#: apt-cache.8.xml:326 msgid "<option>--generate</option>" msgstr "<option>--generate</option>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:324 +#: apt-cache.8.xml:327 msgid "" "Perform automatic package cache regeneration, rather than use the cache as " "it is. This is the default; to turn it off, use <option>--no-generate</" @@ -1848,18 +1863,18 @@ msgstr "" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:329 +#: apt-cache.8.xml:332 msgid "<option>--names-only</option>" msgstr "<option>--names-only</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:329 apt-cdrom.8.xml:139 +#: apt-cache.8.xml:332 apt-cdrom.8.xml:139 msgid "<option>-n</option>" msgstr "<option>-n</option>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:330 +#: apt-cache.8.xml:333 msgid "" "Only search on the package names, not the long descriptions. Configuration " "Item: <literal>APT::Cache::NamesOnly</literal>." @@ -1868,13 +1883,13 @@ msgstr "" "Cache::NamesOnly</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:334 +#: apt-cache.8.xml:337 msgid "<option>--all-names</option>" msgstr "<option>--all-names</option>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:335 +#: apt-cache.8.xml:338 msgid "" "Make <literal>pkgnames</literal> print all names, including virtual packages " "and missing dependencies. Configuration Item: <literal>APT::Cache::" @@ -1884,13 +1899,13 @@ msgstr "" "表示します。設定項目 - <literal>APT::Cache::AllNames</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:340 +#: apt-cache.8.xml:343 msgid "<option>--recurse</option>" msgstr "<option>--recurse</option>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:341 +#: apt-cache.8.xml:344 msgid "" "Make <literal>depends</literal> and <literal>rdepends</literal> recursive so " "that all packages mentioned are printed once. Configuration Item: " @@ -1901,13 +1916,13 @@ msgstr "" "RecurseDepends</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:346 +#: apt-cache.8.xml:349 msgid "<option>--installed</option>" msgstr "<option>--installed</option>" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt-cache.8.xml:348 +#: apt-cache.8.xml:351 msgid "" "Limit the output of <literal>depends</literal> and <literal>rdepends</" "literal> to packages which are currently installed. Configuration Item: " @@ -1919,7 +1934,7 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><variablelist> -#: apt-cache.8.xml:353 apt-cdrom.8.xml:150 apt-config.8.xml:98 +#: apt-cache.8.xml:356 apt-cdrom.8.xml:150 apt-config.8.xml:98 #: apt-extracttemplates.1.xml:67 apt-ftparchive.1.xml:547 apt-get.8.xml:554 #: apt-sortpkgs.1.xml:64 msgid "&apt-commonoptions;" @@ -1927,35 +1942,35 @@ msgstr "&apt-commonoptions;" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> -#: apt-cache.8.xml:358 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 -#: apt.conf.5.xml:940 apt_preferences.5.xml:615 +#: apt-cache.8.xml:361 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 +#: apt.conf.5.xml:968 apt_preferences.5.xml:615 msgid "Files" msgstr "ファイル" #. type: Content of: <refentry><refsect1><variablelist> -#: apt-cache.8.xml:360 +#: apt-cache.8.xml:363 msgid "&file-sourceslist; &file-statelists;" msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> -#: apt-cache.8.xml:365 apt-cdrom.8.xml:155 apt-config.8.xml:103 +#: apt-cache.8.xml:368 apt-cdrom.8.xml:155 apt-config.8.xml:103 #: apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569 #: apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181 -#: apt-sortpkgs.1.xml:69 apt.conf.5.xml:946 apt_preferences.5.xml:622 +#: apt-sortpkgs.1.xml:69 apt.conf.5.xml:974 apt_preferences.5.xml:622 #: sources.list.5.xml:221 msgid "See Also" msgstr "関連項目" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:366 +#: apt-cache.8.xml:369 msgid "&apt-conf;, &sources-list;, &apt-get;" msgstr "&apt-conf;, &sources-list;, &apt-get;" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> -#: apt-cache.8.xml:370 apt-cdrom.8.xml:160 apt-config.8.xml:108 +#: apt-cache.8.xml:373 apt-cdrom.8.xml:160 apt-config.8.xml:108 #: apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:567 apt-get.8.xml:575 #: apt-mark.8.xml:137 apt-sortpkgs.1.xml:73 msgid "Diagnostics" @@ -1963,7 +1978,7 @@ msgstr "診断メッセージ" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt-cache.8.xml:371 +#: apt-cache.8.xml:374 msgid "" "<command>apt-cache</command> returns zero on normal operation, decimal 100 " "on error." @@ -3630,7 +3645,7 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:552 apt.conf.5.xml:934 apt_preferences.5.xml:462 +#: apt-ftparchive.1.xml:552 apt.conf.5.xml:962 apt_preferences.5.xml:462 #: sources.list.5.xml:181 msgid "Examples" msgstr "サンプル" @@ -5849,9 +5864,19 @@ msgstr "" "設定項目の名前は、文字の大小を区別しません。そのため、前述の例を " "<literal>dpkg::pre-install-pkgs</literal> とできます。" -# type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:89 +msgid "" +"Names for the configuration items are optional if a list is defined as it " +"can be see in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. " +"If you don't specify a name a new entry will simply add a new option to the " +"list. If you specify a name you can override the option as every other " +"option by reassigning a new value to the option." +msgstr "" + +# type: Content of: <refentry><refsect1><para> +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:94 #, fuzzy #| msgid "" #| "Two specials are allowed, <literal>#include</literal> and " @@ -5862,10 +5887,11 @@ msgstr "" #| "erased." 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>: <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 descendants are erased." +"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> は指定したファイルを取り込みます。" @@ -5873,30 +5899,65 @@ msgstr "" "す。<literal>#clear</literal> は、設定ツリーの一部を削除するにに使用します。" "指定した要素と、それ以下の要素を削除します。" +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:101 +msgid "" +"The #clear command is the only way to delete a list or a complete scope. " +"Reopening a scope or the ::-style described below will <emphasis>not</" +"emphasis> override previewsly written entries. Only options can be " +"overridden by adressing a new value to it - lists and scopes can't be " +"overridden, only cleared." +msgstr "" + # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:95 +#: apt.conf.5.xml:106 +#, 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 " "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." +"appended too by adding a trailing :: to the list name. (As you might " +"suspect: The scope syntax can't be used on the commandline.)" msgstr "" "すべての APT ツールで、コマンドラインで任意の設定を行う -o オプションが使用で" "きます。文法は、完全なオプション名 (例: <literal>APT::Get::Assume-Yes</" "literal>)、等号、続いてオプションの新しい値となります。リスト名に続き::を加え" "ることで、リストを追加することができます。" +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:113 +msgid "" +"Note that you can use :: only for appending one item per line to a list and " +"that you should not use it in combination with the scope syntax. (The scope " +"syntax implicit insert ::) Using both syntaxes together will trigger a bug " +"which some users unfortunately relay on: An option with the unusual name " +"\"<literal>::</literal>\" which acts like every other option with a name. " +"These introduces many problems including that a user who writes multiple " +"lines in this <emphasis>wrong</emphasis> syntax in the hope to append to a " +"list will gain the opposite as only the last assignment for this option " +"\"<literal>::</literal>\" will be used. Upcoming APT versions will raise " +"errors and will stop working if they encounter this misuse, so please " +"correct such statements now as long as APT doesn't complain explicit about " +"them." +msgstr "" + # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:102 +#: apt.conf.5.xml:125 msgid "The APT Group" msgstr "APT グループ" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:103 +#: apt.conf.5.xml:126 msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." @@ -5906,13 +5967,13 @@ msgstr "" # type: <tag></tag> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:107 +#: apt.conf.5.xml:130 msgid "Architecture" msgstr "Architecture" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:108 +#: apt.conf.5.xml:131 msgid "" "System Architecture; sets the architecture to use when fetching files and " "parsing package lists. The internal default is the architecture apt was " @@ -5924,12 +5985,12 @@ msgstr "" # type: Content of: <refentry><refsect1><refsect2><para><programlisting> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:113 +#: apt.conf.5.xml:136 msgid "Default-Release" msgstr "Default-Release" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:114 +#: apt.conf.5.xml:137 msgid "" "Default release to install packages from if more than one version available. " "Contains release name, codename or release version. Examples: 'stable', " @@ -5942,13 +6003,13 @@ msgstr "" "す。 &apt-preferences; も参照してください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:118 +#: apt.conf.5.xml:141 msgid "Ignore-Hold" msgstr "Ignore-Hold" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:119 +#: apt.conf.5.xml:142 msgid "" "Ignore Held packages; This global option causes the problem resolver to " "ignore held packages in its decision making." @@ -5958,13 +6019,13 @@ msgstr "" # type: <tag></tag> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:123 +#: apt.conf.5.xml:146 msgid "Clean-Installed" msgstr "Clean-Installed" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:124 +#: apt.conf.5.xml:147 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -5979,13 +6040,13 @@ msgstr "" # type: Content of: <refentry><refnamediv><refname> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:130 +#: apt.conf.5.xml:153 msgid "Immediate-Configure" msgstr "Immediate-Configure" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:131 +#: apt.conf.5.xml:154 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 " @@ -6000,13 +6061,13 @@ msgstr "" "ください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:138 +#: apt.conf.5.xml:161 msgid "Force-LoopBreak" msgstr "Force-LoopBreak" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:139 +#: apt.conf.5.xml:162 msgid "" "Never Enable this option unless you -really- know what you are doing. It " "permits APT to temporarily remove an essential package to break a Conflicts/" @@ -6024,13 +6085,13 @@ msgstr "" "不可欠パッケージで動作します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:147 +#: apt.conf.5.xml:170 msgid "Cache-Limit" msgstr "Cache-Limit" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:148 +#: apt.conf.5.xml:171 msgid "" "APT uses a fixed size memory mapped cache file to store the 'available' " "information. This sets the size of that cache (in bytes)." @@ -6039,24 +6100,24 @@ msgstr "" "ファイルを使用します。このオプションは、そのキャッシュサイズを指定します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:152 +#: apt.conf.5.xml:175 msgid "Build-Essential" msgstr "Build-Essential" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:153 +#: apt.conf.5.xml:176 msgid "Defines which package(s) are considered essential build dependencies." msgstr "構築依存関係で不可欠なパッケージを定義します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:156 +#: apt.conf.5.xml:179 msgid "Get" msgstr "Get" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:157 +#: apt.conf.5.xml:180 msgid "" "The Get subsection controls the &apt-get; tool, please see its documentation " "for more information about the options here." @@ -6065,13 +6126,13 @@ msgstr "" "&apt-get; の文書を参照してください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:161 +#: apt.conf.5.xml:184 msgid "Cache" msgstr "Cache" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:162 +#: apt.conf.5.xml:185 msgid "" "The Cache subsection controls the &apt-cache; tool, please see its " "documentation for more information about the options here." @@ -6080,13 +6141,13 @@ msgstr "" "は &apt-cache; の文書を参照してください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:166 +#: apt.conf.5.xml:189 msgid "CDROM" msgstr "CDROM" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:167 +#: apt.conf.5.xml:190 msgid "" "The CDROM subsection controls the &apt-cdrom; tool, please see its " "documentation for more information about the options here." @@ -6096,17 +6157,17 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:173 +#: apt.conf.5.xml:196 msgid "The Acquire Group" msgstr "Acquire グループ" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:178 +#: apt.conf.5.xml:201 msgid "PDiffs" msgstr "PDiffs" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:179 +#: apt.conf.5.xml:202 msgid "" "Try to download deltas called <literal>PDiffs</literal> for Packages or " "Sources files instead of downloading whole ones. True by default." @@ -6116,13 +6177,13 @@ msgstr "" "ルトでは True です。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:184 +#: apt.conf.5.xml:207 msgid "Queue-Mode" msgstr "Queue-Mode" # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:185 +#: apt.conf.5.xml:208 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -6137,13 +6198,13 @@ msgstr "" # type: Content of: <refentry><refsect1><refsect2><title> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:192 +#: apt.conf.5.xml:215 msgid "Retries" msgstr "Retries" # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:193 +#: apt.conf.5.xml:216 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." @@ -6152,13 +6213,13 @@ msgstr "" "えられた回数だけリトライを行います。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:197 +#: apt.conf.5.xml:220 msgid "Source-Symlinks" msgstr "Source-Symlinks" # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:198 +#: apt.conf.5.xml:221 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." @@ -6169,13 +6230,13 @@ msgstr "" # type: <tag></tag> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:202 sources.list.5.xml:139 +#: apt.conf.5.xml:225 sources.list.5.xml:139 msgid "http" 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:203 +#: apt.conf.5.xml:226 #, fuzzy #| msgid "" #| "HTTP URIs; http::Proxy is the default http proxy to use. It is in the " @@ -6201,7 +6262,7 @@ 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:211 +#: apt.conf.5.xml:234 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy to not use its cached " @@ -6226,7 +6287,7 @@ 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:221 apt.conf.5.xml:273 +#: apt.conf.5.xml:244 apt.conf.5.xml:301 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method, this applies to all things including connection timeout and data " @@ -6238,7 +6299,7 @@ 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:224 +#: apt.conf.5.xml:247 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) " @@ -6256,14 +6317,24 @@ msgstr "" "ければデータが破損してしまいます。これが必要なホストは RFC 2068 に違反してい" "ます。" +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:255 +msgid "" +"The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" +"literal> which accepts integer values in kilobyte. The default value is 0 " +"which deactivates the limit and tries uses as much as possible of the " +"bandwith (Note that this option implicit deactivates the download from " +"multiple servers at the same time.)" +msgstr "" + # type: <tag></tag> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:233 +#: apt.conf.5.xml:261 msgid "https" msgstr "https" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:234 +#: apt.conf.5.xml:262 msgid "" "HTTPS URIs. Cache-control and proxy options are the same as for " "<literal>http</literal> method. <literal>Pipeline-Depth</literal> option is " @@ -6274,7 +6345,7 @@ msgstr "" "していません。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:238 +#: apt.conf.5.xml:266 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is " @@ -6296,13 +6367,13 @@ msgstr "" # type: <tag></tag> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:256 sources.list.5.xml:150 +#: apt.conf.5.xml:284 sources.list.5.xml:150 msgid "ftp" 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:257 +#: apt.conf.5.xml:285 #, fuzzy #| msgid "" #| "FTP URIs; ftp::Proxy is the default proxy server to use. It is in the " @@ -6345,7 +6416,7 @@ 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:276 +#: apt.conf.5.xml:304 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on, it works in nearly every environment. However " @@ -6361,7 +6432,7 @@ 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:283 +#: apt.conf.5.xml:311 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to a http url - see the discussion of the http " @@ -6375,7 +6446,7 @@ 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:288 +#: apt.conf.5.xml:316 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -6392,19 +6463,19 @@ msgstr "" # type: Content of: <refentry><refnamediv><refname> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:295 sources.list.5.xml:132 +#: apt.conf.5.xml:323 sources.list.5.xml:132 msgid "cdrom" msgstr "cdrom" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:301 +#: apt.conf.5.xml:329 #, no-wrap msgid "\"/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> -#: apt.conf.5.xml:296 +#: apt.conf.5.xml:324 msgid "" "CDROM URIs; the only setting for CDROM URIs is the mount point, " "<literal>cdrom::Mount</literal> which must be the mount point for the CDROM " @@ -6425,13 +6496,13 @@ msgstr "" "す。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:306 +#: apt.conf.5.xml:334 msgid "gpgv" msgstr "gpgv" # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:307 +#: apt.conf.5.xml:335 msgid "" "GPGV URIs; the only option for GPGV URIs is the option to pass additional " "parameters to gpgv. <literal>gpgv::Options</literal> Additional options " @@ -6442,18 +6513,18 @@ msgstr "" "す。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:312 +#: apt.conf.5.xml:340 msgid "CompressionTypes" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:318 +#: apt.conf.5.xml:346 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:313 +#: apt.conf.5.xml:341 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -6465,19 +6536,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:323 +#: apt.conf.5.xml:351 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:326 +#: apt.conf.5.xml:354 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:319 +#: apt.conf.5.xml:347 msgid "" "Also the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -6494,13 +6565,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:330 +#: apt.conf.5.xml:358 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:328 +#: apt.conf.5.xml:356 msgid "" "Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</" "replaceable></literal> will be checked: If this setting exists the method " @@ -6515,7 +6586,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:335 +#: apt.conf.5.xml:363 msgid "" "While it is possible to add an empty compression type to the order list, but " "APT in its current version doesn't understand it correctly and will display " @@ -6526,7 +6597,7 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:174 +#: apt.conf.5.xml:197 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages and the URI handlers. <placeholder type=\"variablelist\" id=\"0\"/>" @@ -6537,13 +6608,13 @@ msgstr "" # type: Content of: <refentry><refsect1><refsect2><title> #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:344 +#: apt.conf.5.xml:372 msgid "Directories" msgstr "ディレクトリ" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:346 +#: apt.conf.5.xml:374 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -6563,7 +6634,7 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:353 +#: apt.conf.5.xml:381 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -6585,7 +6656,7 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:362 +#: apt.conf.5.xml:390 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -6600,7 +6671,7 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:368 +#: apt.conf.5.xml:396 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -6612,7 +6683,7 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:372 +#: apt.conf.5.xml:400 #, fuzzy #| msgid "" #| "Binary programs are pointed to by <literal>Dir::Bin</literal>. " @@ -6637,7 +6708,7 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:380 +#: apt.conf.5.xml:408 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -6658,13 +6729,13 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:393 +#: apt.conf.5.xml:421 msgid "APT in DSelect" msgstr "DSelect での APT" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:395 +#: apt.conf.5.xml:423 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behaviour. These are in the <literal>DSelect</literal> " @@ -6674,13 +6745,13 @@ msgstr "" "設定項目で、デフォルトの動作を制御します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:399 +#: apt.conf.5.xml:427 msgid "Clean" msgstr "Clean" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:400 +#: apt.conf.5.xml:428 msgid "" "Cache Clean mode; this value may be one of always, prompt, auto, pre-auto " "and never. always and prompt will remove all packages from the cache after " @@ -6697,7 +6768,7 @@ msgstr "" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:409 +#: apt.conf.5.xml:437 msgid "" "The contents of this variable is passed to &apt-get; as command line options " "when it is run for the install phase." @@ -6707,13 +6778,13 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:413 +#: apt.conf.5.xml:441 msgid "Updateoptions" msgstr "Updateoptions" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:414 +#: apt.conf.5.xml:442 msgid "" "The contents of this variable is passed to &apt-get; as command line options " "when it is run for the update phase." @@ -6722,13 +6793,13 @@ msgstr "" "されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:418 +#: apt.conf.5.xml:446 msgid "PromptAfterUpdate" msgstr "PromptAfterUpdate" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:419 +#: apt.conf.5.xml:447 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -6738,13 +6809,13 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:425 +#: apt.conf.5.xml:453 msgid "How APT calls dpkg" msgstr "APT が dpkg を呼ぶ方法" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:426 +#: apt.conf.5.xml:454 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -6754,7 +6825,7 @@ msgstr "" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:431 +#: apt.conf.5.xml:459 msgid "" "This is a list of options to pass to dpkg. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -6764,18 +6835,18 @@ msgstr "" "ければなりません。また、各リストは単一の引数として &dpkg; に渡されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:436 +#: apt.conf.5.xml:464 msgid "Pre-Invoke" msgstr "Pre-Invoke" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:436 +#: apt.conf.5.xml:464 msgid "Post-Invoke" msgstr "Post-Invoke" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:437 +#: apt.conf.5.xml:465 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -6789,13 +6860,13 @@ msgstr "" # type: <tag></tag> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:443 +#: apt.conf.5.xml:471 msgid "Pre-Install-Pkgs" msgstr "Pre-Install-Pkgs" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:444 +#: apt.conf.5.xml:472 msgid "" "This is a list of shell commands to run before invoking dpkg. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -6811,7 +6882,7 @@ msgstr "" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:450 +#: apt.conf.5.xml:478 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -6827,13 +6898,13 @@ msgstr "" # type: Content of: <refentry><refsect1><refsect2><title> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:457 +#: apt.conf.5.xml:485 msgid "Run-Directory" msgstr "Run-Directory" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:458 +#: apt.conf.5.xml:486 msgid "" "APT chdirs to this directory before invoking dpkg, the default is <filename>/" "</filename>." @@ -6843,13 +6914,13 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:462 +#: apt.conf.5.xml:490 msgid "Build-options" msgstr "Build-options" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:463 +#: apt.conf.5.xml:491 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages, the " "default is to disable signing and produce all binaries." @@ -6858,12 +6929,12 @@ msgstr "" "ます。デフォルトでは署名を無効にし、全バイナリを生成します。" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:468 +#: apt.conf.5.xml:496 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:469 +#: apt.conf.5.xml:497 msgid "" "APT can call dpkg in a way so it can make aggressive use of triggers over " "multiply calls of dpkg. Without further options dpkg will use triggers only " @@ -6878,7 +6949,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:484 +#: apt.conf.5.xml:512 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -6888,7 +6959,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:478 +#: apt.conf.5.xml:506 msgid "" "Note that it is not garanteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -6902,12 +6973,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:518 msgid "DPkg::NoTriggers" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:491 +#: apt.conf.5.xml:519 msgid "" "Add the no triggers flag to all dpkg calls (expect the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -6920,14 +6991,14 @@ msgstr "" # type: <tag></tag> #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:498 +#: apt.conf.5.xml:526 #, fuzzy #| msgid "Packages::Compress" msgid "PackageManager::Configure" msgstr "Packages::Compress" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:499 +#: apt.conf.5.xml:527 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". \"<literal>all</literal>\" is the default " @@ -6944,13 +7015,13 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:509 +#: apt.conf.5.xml:537 #, fuzzy msgid "DPkg::ConfigurePending" msgstr "ユーザの設定" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:510 +#: apt.conf.5.xml:538 msgid "" "If this option is set apt will call <command>dpkg --configure --pending</" "command> to let dpkg handle all required configurations and triggers. This " @@ -6961,12 +7032,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:516 +#: apt.conf.5.xml:544 msgid "DPkg::TriggersPending" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:517 +#: apt.conf.5.xml:545 msgid "" "Useful for <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal> and dpkg " @@ -6976,12 +7047,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:522 +#: apt.conf.5.xml:550 msgid "PackageManager::UnpackAll" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:523 +#: apt.conf.5.xml:551 msgid "" "As the configuration can be deferred to be done at the end by dpkg it can be " "tried to order the unpack series only by critical needs, e.g. by Pre-" @@ -6993,12 +7064,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:530 +#: apt.conf.5.xml:558 msgid "OrderList::Score::Immediate" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:538 +#: apt.conf.5.xml:566 #, no-wrap msgid "" "OrderList::Score {\n" @@ -7010,7 +7081,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:531 +#: apt.conf.5.xml:559 msgid "" "Essential packages (and there dependencies) should be configured immediately " "after unpacking. It will be a good idea to do this quite early in the " @@ -7024,12 +7095,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:551 +#: apt.conf.5.xml:579 msgid "Periodic and Archives options" msgstr "Periodic オプションと Archives オプション" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:552 +#: apt.conf.5.xml:580 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by " @@ -7043,12 +7114,12 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:560 +#: apt.conf.5.xml:588 msgid "Debug options" msgstr "デバッグオプション" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:562 +#: apt.conf.5.xml:590 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -7059,7 +7130,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:573 +#: apt.conf.5.xml:601 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -7070,7 +7141,7 @@ msgstr "" "にします。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:581 +#: apt.conf.5.xml:609 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -7081,7 +7152,7 @@ msgstr "" "literal>) を行う場合に使用します。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:590 +#: apt.conf.5.xml:618 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -7091,66 +7162,66 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:598 +#: apt.conf.5.xml:626 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CDROM IDs." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:608 +#: apt.conf.5.xml:636 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:613 +#: apt.conf.5.xml:641 msgid "<literal>Debug::Acquire::cdrom</literal>" msgstr "<literal>Debug::Acquire::cdrom</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:617 +#: apt.conf.5.xml:645 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" "<literal>cdrom://</literal> ソースへのアクセスに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:624 +#: apt.conf.5.xml:652 msgid "<literal>Debug::Acquire::ftp</literal>" msgstr "<literal>Debug::Acquire::ftp</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:628 +#: apt.conf.5.xml:656 msgid "Print information related to downloading packages using FTP." msgstr "FTP を用いたパッケージのダウンロードに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:635 +#: apt.conf.5.xml:663 msgid "<literal>Debug::Acquire::http</literal>" msgstr "<literal>Debug::Acquire::http</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:639 +#: apt.conf.5.xml:667 msgid "Print information related to downloading packages using HTTP." msgstr "HTTP を用いたパッケージのダウンロードに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:646 +#: apt.conf.5.xml:674 msgid "<literal>Debug::Acquire::https</literal>" msgstr "<literal>Debug::Acquire::https</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:650 +#: apt.conf.5.xml:678 msgid "Print information related to downloading packages using HTTPS." msgstr "HTTPS を用いたパッケージのダウンロードに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:657 +#: apt.conf.5.xml:685 msgid "<literal>Debug::Acquire::gpgv</literal>" msgstr "<literal>Debug::Acquire::gpgv</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:661 +#: apt.conf.5.xml:689 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -7158,46 +7229,46 @@ msgstr "" "<literal>gpg</literal> を用いた暗号署名の検証に関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:668 +#: apt.conf.5.xml:696 msgid "<literal>Debug::aptcdrom</literal>" msgstr "<literal>Debug::aptcdrom</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:672 +#: apt.conf.5.xml:700 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:679 +#: apt.conf.5.xml:707 msgid "<literal>Debug::BuildDeps</literal>" msgstr "<literal>Debug::BuildDeps</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:682 +#: apt.conf.5.xml:710 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:689 +#: apt.conf.5.xml:717 msgid "<literal>Debug::Hashes</literal>" msgstr "<literal>Debug::Hashes</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:692 +#: apt.conf.5.xml:720 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:699 +#: apt.conf.5.xml:727 msgid "<literal>Debug::IdentCDROM</literal>" msgstr "<literal>Debug::IdentCDROM</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:702 +#: apt.conf.5.xml:730 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -7205,93 +7276,93 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:710 +#: apt.conf.5.xml:738 msgid "<literal>Debug::NoLocking</literal>" msgstr "<literal>Debug::NoLocking</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:713 +#: apt.conf.5.xml:741 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:721 +#: apt.conf.5.xml:749 msgid "<literal>Debug::pkgAcquire</literal>" msgstr "<literal>Debug::pkgAcquire</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:725 +#: apt.conf.5.xml:753 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:732 +#: apt.conf.5.xml:760 msgid "<literal>Debug::pkgAcquire::Auth</literal>" msgstr "<literal>Debug::pkgAcquire::Auth</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:735 +#: apt.conf.5.xml:763 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:742 +#: apt.conf.5.xml:770 msgid "<literal>Debug::pkgAcquire::Diffs</literal>" msgstr "<literal>Debug::pkgAcquire::Diffs</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:745 +#: apt.conf.5.xml:773 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:753 +#: apt.conf.5.xml:781 msgid "<literal>Debug::pkgAcquire::RRed</literal>" msgstr "<literal>Debug::pkgAcquire::RRed</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:757 +#: apt.conf.5.xml:785 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:764 +#: apt.conf.5.xml:792 msgid "<literal>Debug::pkgAcquire::Worker</literal>" msgstr "<literal>Debug::pkgAcquire::Worker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:768 +#: apt.conf.5.xml:796 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:775 +#: apt.conf.5.xml:803 msgid "<literal>Debug::pkgAutoRemove</literal>" msgstr "<literal>Debug::pkgAutoRemove</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:779 +#: apt.conf.5.xml:807 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:786 +#: apt.conf.5.xml:814 msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>" msgstr "<literal>Debug::pkgDepCache::AutoInstall</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:789 +#: apt.conf.5.xml:817 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -7301,12 +7372,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:800 +#: apt.conf.5.xml:828 msgid "<literal>Debug::pkgDepCache::Marker</literal>" msgstr "<literal>Debug::pkgDepCache::Marker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:803 +#: apt.conf.5.xml:831 msgid "" "Generate debug messages describing which package is marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -7323,91 +7394,91 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:822 +#: apt.conf.5.xml:850 msgid "<literal>Debug::pkgInitConfig</literal>" msgstr "<literal>Debug::pkgInitConfig</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:825 +#: apt.conf.5.xml:853 msgid "Dump the default configuration to standard error on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:832 +#: apt.conf.5.xml:860 msgid "<literal>Debug::pkgDPkgPM</literal>" msgstr "<literal>Debug::pkgDPkgPM</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:835 +#: apt.conf.5.xml:863 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:843 +#: apt.conf.5.xml:871 msgid "<literal>Debug::pkgDPkgProgressReporting</literal>" msgstr "<literal>Debug::pkgDPkgProgressReporting</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:846 +#: apt.conf.5.xml:874 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:853 +#: apt.conf.5.xml:881 msgid "<literal>Debug::pkgOrderList</literal>" msgstr "<literal>Debug::pkgOrderList</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:857 +#: apt.conf.5.xml:885 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:865 +#: apt.conf.5.xml:893 msgid "<literal>Debug::pkgPackageManager</literal>" msgstr "<literal>Debug::pkgPackageManager</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:869 +#: apt.conf.5.xml:897 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:876 +#: apt.conf.5.xml:904 msgid "<literal>Debug::pkgPolicy</literal>" msgstr "<literal>Debug::pkgPolicy</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:880 +#: apt.conf.5.xml:908 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:886 +#: apt.conf.5.xml:914 msgid "<literal>Debug::pkgProblemResolver</literal>" msgstr "<literal>Debug::pkgProblemResolver</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:890 +#: apt.conf.5.xml:918 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:898 +#: apt.conf.5.xml:926 msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>" msgstr "<literal>Debug::pkgProblemResolver::ShowScores</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:901 +#: apt.conf.5.xml:929 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -7415,12 +7486,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:909 +#: apt.conf.5.xml:937 msgid "<literal>Debug::sourceList</literal>" msgstr "<literal>Debug::sourceList</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:913 +#: apt.conf.5.xml:941 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -7428,7 +7499,7 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:935 +#: apt.conf.5.xml:963 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -7438,7 +7509,7 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><variablelist> -#: apt.conf.5.xml:942 +#: apt.conf.5.xml:970 #, fuzzy #| msgid "&apt-conf;" msgid "&file-aptconf;" @@ -7447,7 +7518,7 @@ msgstr "&apt-conf;" # type: Content of: <refentry><refsect1><para> #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:947 +#: apt.conf.5.xml:975 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." -- cgit v1.2.3 From b3895e8685e40f1cac01e735ae42bdb8dab684a3 Mon Sep 17 00:00:00 2001 From: David Kalnischkies <kalnischkies@gmail.com> Date: Thu, 24 Sep 2009 15:09:05 +0200 Subject: readd the pl-translation for the offline apt documentation for now as long as these files are not included in the po4a-powered translation work --- debian/changelog | 5 +- doc/pl/makefile | 11 +++ doc/pl/offline.pl.sgml | 252 +++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 265 insertions(+), 3 deletions(-) create mode 100644 doc/pl/makefile create mode 100644 doc/pl/offline.pl.sgml diff --git a/debian/changelog b/debian/changelog index 22f83a4dc..35a396537 100644 --- a/debian/changelog +++ b/debian/changelog @@ -55,9 +55,8 @@ apt (0.7.24) UNRELEASED; urgency=low * doc/fr/*, doc/po/fr.po: - remove the old fr man page translation and replace it with the new po4a-powered translation - * doc/pl, doc/de: dropped (pl translation is useless as the translated - document is not provideed anymore and the de translation is too - incomplete to be used) + * doc/de: dropped (translation is too incomplete to be useful in + the transition to the po4a-powered translations) -- David Kalnischkies <kalnischkies@gmail.com> Fri, 28 Aug 2009 09:40:08 +0200 diff --git a/doc/pl/makefile b/doc/pl/makefile new file mode 100644 index 000000000..94939e156 --- /dev/null +++ b/doc/pl/makefile @@ -0,0 +1,11 @@ +# -*- make -*- +BASE=../.. +SUBDIR=doc/pl + +# Bring in the default rules +include ../../buildlib/defaults.mak + +# Debian Doc SGML Documents +SOURCE = offline.pl.sgml +DEBIANDOC_HTML_OPTIONS=-l pl +include $(DEBIANDOC_H) diff --git a/doc/pl/offline.pl.sgml b/doc/pl/offline.pl.sgml new file mode 100644 index 000000000..0d301d4fb --- /dev/null +++ b/doc/pl/offline.pl.sgml @@ -0,0 +1,252 @@ +<!doctype debiandoc PUBLIC "-//DebianDoc//DTD DebianDoc//EN"> +<!-- -*- mode: sgml; mode: fold -*- --> +<book> +<title>Uywanie APT w trybie offline + +Jason Gunthorpe jgg@debian.org +Polskie tumaczenie Krzysztof Fiertek akfedux@megapolis.pl +$Id: offline.sgml,v 1.8 2003/02/12 15:06:41 doogie Exp $ + + +Dokument ten opisuje uywanie programu APT w rodowiskach pozbawionych dostpu, +do sieci, a w szczeglnoci metod pozwalajc na robienie aktualizacji systemu. + + + +Copyright © Jason Gunthorpe, 1999. +

+Copyright © polskiego tumaczenia Krzysztof Fiertek, 2004. +

+"APT" i ten dokument s oprogramowaniem wolnodostpnym; moesz +rozpowszechnia je i/lub zmienia w zgodzie z postanowieniami +"Oglnej Licencji Publicznej GNU" (GNU General Public License) +takiej, jak zostaa opublikowana przez "Fundacje Wolnego +Oprogramowania (Free Software Foundation); albo w wersji 2 teje +licencji, albo (twj wybr) w dowolnej pniejszej. + +

+Wicej szczegw mona uzyska, przegldajc plik zawierajcy peny tekst +licencji (w systemach Debian jest to plik /usr/share/common-licenses/GPL). + + + + +Wstp + + +Wprowadzenie + +

+Normalnie APT wymaga bezporedniego dostpu do archiww Debiana przez +sie lokaln albo przez sie internetow. Kolejn niedogodnoci moe by +fakt, e nasz komputer, ktry pracuje na powolnym czu takim jak modem, +jest znacznie oddalony od innego komputera z szybkim czem. + +

+Rozwizaniem tego problemu jest uycie pojemnych przenonych nonikw +takich jak dyskietka Zip lub dysk SuperDisk. Noniki te nie s +wystarczajco pojemne, by zgromadzi kompletne archiwum Debiana, ale mona +miao dopasowa podzbir duego archiwum wystarczajcy dla wikszoci +uytkownikw. Pomys polega na tym, by uy programu APT do wygenerowania +listy pakietw, ktre s wymagane, a nastpnie pobraniu ich na dysk, uywajc +innego komputera z waciw zwartoci. Jest nawet moliwe, by uy innego +komputera z Debianem z zainstalowanym programem APT lub zupenie innym +systemem operacyjnym i programem narzdziowym do pobierania plikw takim +jak wget. + +

+Osigane jest to przez twrcze manipulowanie plikiem konfiguracyjnym +programu APT. Rzecz niezbdn jest poinformowanie programu APT, aby wskazywa +na dysk z plikami archiwum. Naley zauway, e dysk powinien by +sformatowany do obsugi systemu plikw pozwalajcego posugiwa si dugimi +nazwami plikw (np. ext2, fat32 albo vfat). + + + + + +Uywanie programu APT na obu komputerach + + +Wprowadzenie + +

+APT bdcy do dyspozycji na obu komputerach daje najprostsz kombinacj. +Zasadniczym pomysem tej metody jest umieszczenie kopii pliku status na dysku +i uycie odlegego komputera, aby uzyska najnowsze pliki pakietw +i zdecydowa, ktre pakiety trzeba pobra. Struktura katalogw na dysku +powinna wyglda nastpujco: + + + /disc/ + archives/ + partial/ + lists/ + partial/ + status + sources.list + apt.conf + + + + + + +Plik konfiguracyjny + +

+Plik konfiguracyjny powinien informowa program APT, aby przechowywa swoje +pliki na dysku, a take uywa plikw konfiguracyjnych z dysku. Plik +sources.list powinien zawiera prawidowe odnoniki, ktrych naley +uy na zdalnym komputerze, a plik status powinien by kopi +/var/lib/dpkg/status. Zauwa, e jeli uywasz lokalnego archiwum +musisz uy tych samych odnonikw o identycznej skadni. + +

+apt.conf musi zawiera niezbdne wpisy, by APT korzysta z dysku: + + + APT + { + /* Ten wpis nie jest wymagany, jeli oba komputery maj t sam + architektur; mwi on programowi APT na komputerze pobierajcym + pakiety, jaka jest architektura naszego komputera */ + Architecture "i386"; + + Get::Download-Only "true"; + }; + + Dir + { + /* Uyj katalogu disc na informacje stanu i przekieruj plik status + z domylnego /var/lib/dpkg */ + State "/disc/"; + State::status "status"; + + // Katalog lokalnie przechowywanych pakietw binarnych + Cache::archives "/disc/archives/"; + + Cache "/tmp/"; + + // Lokalizacja pliku sources.list. + Etc "/disc"; + }; + + +Wicej szczegw mona zobaczy w stronie podrcznika apt.conf i w przykadowym +pliku konfiguracyjnym /usr/share/doc/apt/examples/apt.conf. + +

+Pierwsz rzecz, jak naley zrobi na oddalonym komputerze z Debianem to +zamontowa dysk i przekopiowa na niego plik /var/lib/dpkg/status. +Trzeba take utworzy stuktur katalogw przedstawion we "Wprowadzeniu": +archives/partial/ i lists/partial/. Nastpnie niesiemy +dysk do oddalonego komputera z szybkim czem i konfigurujemy plik +sources.list. Na oddalonym komputerze wykonujemy kolejno: + + + # export APT_CONFIG="/disc/apt.conf" + # apt-get update + [ APT aktualizuje ustawienia ] + # apt-get dist-upgrade + [ APT pobiera wszystkie pakiety potrzebne do aktualizacji Twojego systemu ] + + + +Polecenie dist-upgrade mona zastpi kadym innym podstawowym poleceniem +APT, w szczeglnoci dselect-upgrade. Mona nawet uy APT jako metody +dostpu dla dselect. Jednak stworzy to problem w przeniesieniu +Twoich operacji wyborw z powrotem na lokalny komputer. + +

+W tej chwili katalog disc zawiera wszystkie pliki indeksowe oraz archiwa +niezbdne do aktualizacji maszyny z Debianem. Bierzemy dysk z powrotem do +siebie i wpisujemy: + + + # export APT_CONFIG="/disc/apt.conf" + # apt-get check + [ APT tworzy lokaln kopi plikw cache ] + # apt-get --no-d -o dir::state::status=/var/lib/dpkg/status dist-upgrade + [ Moe te by inne polecenie programu APT ] + + +

+Do prawidowego dziaania koniecznie naley poda plik status z lokalnej +maszyny. To jest bardzo wane! + +

+Jeli uywasz dselect, moesz wykona bardzo ryzykown operacj skopiowania +disc/status do /var/lib/dpkg/status, tak e wszystkie zmiany, ktrych +dokonae na odlegym komputerze, bd przeniesione. Mocno zalecam, aby +dokonywa doboru pakietw tylko na lokalnym komputerze, ale nie zawsze +jest to moliwe. NIE podmieniaj pliku status, jeli dpkg lub APT byy +uruchamiane w midzyczasie!! + + + + +Uywanie programw APT i wget + + +Wprowadzenie + +

+wget jest popularnym i przenonym programem narzdziowym +pobierania plikw, ktry dziaa prawie na kadym komputerze. +W przeciwiestwie do metody opisanej powyej ta wymaga, aby na lokalnym komputerze +bya aktualna lista dostpnych pakietw. + +

+Naley stworzy katalog disc tylko na pakiety do pobrania z innego +komputera. Uyta zostanie do tego opcja --print-uris programu apt-get, +a nastpnie przygotujemy skrypt dla programu wget, ktry pobierze waciwe +pakiety. + + + + + +Kolejne kroki + +

+W odrnieniu od poprzedniej metody dziaania ta nie wymaga specjalnych +plikw konfiguracyjnych. Uywamy jedynie podstawowych polece APT, by +wygenerowa list plikw. + + + # apt-get dist-upgrade + [ Wybierz "no" po znaku zachty, upewnij si, czy to waciwy wybr ] + # apt-get -qq --print-uris dist-upgrade > uris + # awk '{print "wget -O " $2 " " $1}' < uris > /disc/wget-script + + +Take inne opcje ni dist-upgrade mog tu by uyte, wczajc +dselect-upgrade. + +

+Plik skryptu /disc/wget-script bdzie teraz zawiera list wywoa programu +wget, niezbdnych do pobrania potrzebnych archiww. +Skrypt ten naley uruchomi w biecym katalogu o punkcie montowania disc, +tak aby tu zapisywa dane na dysku. + +

+Na oddalonym komputerze naley wykona co takiego + + + # cd /disc + # sh -x ./wget-script + [ czekaj.. ] + + +Gdy archiwa zostan pobrane i dysk wrci do komputera z Debianem, +instalowanie mona prowadzi dalej poleceniem: + + + # apt-get -o dir::cache::archives="/disc/" dist-upgrade + + +ktre uyje pobranych uprzednio archiww z dysku. + + + -- cgit v1.2.3 From 5c23dbcc3f056ab0ff5838595a85c4e514e5b57a Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Thu, 24 Sep 2009 18:01:52 +0200 Subject: Ignore TriggerPendings between multiple --configure calls --- apt-pkg/deb/dpkgpm.cc | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/apt-pkg/deb/dpkgpm.cc b/apt-pkg/deb/dpkgpm.cc index aec4edc49..bb0469752 100644 --- a/apt-pkg/deb/dpkgpm.cc +++ b/apt-pkg/deb/dpkgpm.cc @@ -641,6 +641,7 @@ bool pkgDPkgPM::Go(int OutStatusFd) // support subpressing of triggers processing for special // cases like d-i that runs the triggers handling manually bool const SmartConf = (_config->Find("PackageManager::Configure", "all") != "all"); + bool const TriggersPending = _config->FindB("DPkg::TriggersPending", false); if (_config->FindB("DPkg::ConfigurePending", SmartConf) == true) List.push_back(Item(Item::ConfigurePending, PkgIterator())); @@ -701,9 +702,23 @@ bool pkgDPkgPM::Go(int OutStatusFd) // this loop is runs once per operation for (vector::const_iterator I = List.begin(); I != List.end();) { + // Do all actions with the same Op in one run vector::const_iterator J = I; - for (; J != List.end() && J->Op == I->Op; J++) - /* nothing */; + if (TriggersPending == true) + for (; J != List.end(); J++) + { + if (J->Op == I->Op) + continue; + if (J->Op != Item::TriggersPending) + break; + vector::const_iterator T = J + 1; + if (T != List.end() && T->Op == I->Op) + continue; + break; + } + else + for (; J != List.end() && J->Op == I->Op; J++) + /* nothing */; // Generate the argument list const char *Args[MaxArgs + 50]; -- cgit v1.2.3 From b98f40fadef0ee5419e2315d82110869135e410f Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Thu, 24 Sep 2009 18:11:10 +0200 Subject: add a NEWS entry for the upcoming upload summarizing the bigger and/or user-visible changes. --- debian/NEWS | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/debian/NEWS b/debian/NEWS index 88f2c564e..1df94144d 100644 --- a/debian/NEWS +++ b/debian/NEWS @@ -1,3 +1,19 @@ +apt (0.7.24) unstable; urgency=low + + * Allready included in the last version but now with better documentation + is the possibility to add/prefer different compression types while + downloading archive informations, which can decrease the time needed for + update on slow machines. See apt.conf (5) manpage for details. + * APT manages his manpage translations now with po4a, thanks to Nicolas + François and Kurasawa Nozomu, who also provide the ja translation. + Thanks to Christian Perrier we have already a fr translation and + a few more are hopefully added in the near future. + * This version also introduces some _experimental_ configuration options + to make more aggressive use of dpkg's triggers. If you want to help + testing these _experimental_ options see apt.conf (5) manpage. + + -- David Kalnischkies Thu, 24 Sep 2009 15:13:16 +0200 + apt (0.7.23) unstable; urgency=low * Code that determines which proxy to use was changed. Now -- cgit v1.2.3 From a956474121b3d3b7ffac821a330f9fe7737ac91b Mon Sep 17 00:00:00 2001 From: David Kalnischkies Date: Fri, 25 Sep 2009 09:49:45 +0200 Subject: fix same typos in debian/changelog and doc/apt.conf.5.xml --- debian/changelog | 2 +- doc/apt.conf.5.xml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/debian/changelog b/debian/changelog index 35a396537..c9c0d49e6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -29,7 +29,7 @@ apt (0.7.24) UNRELEASED; urgency=low a bit and improve the documentation for this option group. * doc/apt.conf.5.xml: - document the Acquire::http::Dl-Limit option - - try to be cristal clear about the usage of :: and {} (Closes: #503481) + - try to be crystal clear about the usage of :: and {} (Closes: #503481) * doc/apt-cache.8.xml: - clarify the note for the pkgnames command (Closes: #547599) * doc/apt.ent, all man pages: diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml index cfc09ec1f..e752f9d27 100644 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@ -100,7 +100,7 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; The #clear command is the only way to delete a list or a complete scope. Reopening a scope or the ::-style described below will not - override previewsly written entries. Only options can be overridden by adressing a new + override previously written entries. Only options can be overridden by addressing a new value to it - lists and scopes can't be overridden, only cleared. All of the APT tools take a -o option which allows an arbitrary configuration @@ -108,7 +108,7 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; name (APT::Get::Assume-Yes 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. (As you might suspect: The scope syntax can't be used - on the commandline.) + on the command line.) Note that you can use :: only for appending one item per line to a list and that you should not use it in combination with the scope syntax. @@ -254,7 +254,7 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; The used bandwidth can be limited with Acquire::http::Dl-Limit which accepts integer values in kilobyte. The default value is 0 which deactivates - the limit and tries uses as much as possible of the bandwith (Note that this option implicit + the limit and tries uses as much as possible of the bandwidth (Note that this option implicit deactivates the download from multiple servers at the same time.) @@ -356,7 +356,7 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; Note that at run time the Dir::Bin::Methodname will be checked: If this setting exists the method will only be used if this file exists, e.g. for the bzip2 method (the inbuilt) setting is Dir::Bin::bzip2 "/bin/bzip2"; - Note also that list entries specified on the commandline will be added at the end of the list + Note also that list entries specified on the command line will be added at the end of the list specified in the configuration files, but before the default entries. To prefer a type in this case over the ones specified in in the configuration files you can set the option direct - not in list style. This will not override the defined list, it will only prefix the list with this type. @@ -498,12 +498,12 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; multiply calls of dpkg. Without further options dpkg will use triggers only in between his own run. Activating these options can therefore decrease the time needed to perform the install / upgrade. Note that it is intended to activate these options per default in the - future, but as it changes the way APT calling dpkg drastical it needs a lot more testing. + future, but as it changes the way APT calling dpkg drastically it needs a lot more testing. These options are therefore currently experimental and should not be used in productive environments. Also it breaks the progress reporting so all frontends will currently stay around half (or more) of the time in the 100% state while it actually configures all packages. - Note that it is not garanteed that APT will support these options or that these options will + Note that it is not guaranteed that APT will support these options or that these options will not cause (big) trouble in the future. If you have understand the current risks and problems with these options, but are brave enough to help testing them create a new configuration file and test a combination of options. Please report any bugs, problems and improvements you encounter and make sure @@ -550,7 +550,7 @@ DPkg::TriggersPending "true"; PackageManager::UnpackAll As the configuration can be deferred to be done at the end by dpkg it can be tried to order the unpack series only by critical needs, e.g. by Pre-Depends. Default is true - and therefore the "old" method of ordering in verious steps by everything. While both method + and therefore the "old" method of ordering in various steps by everything. While both method were present in earlier APT versions the OrderCritical method was unused, so this method is very experimental and needs further improvements before becoming really useful. @@ -560,7 +560,7 @@ DPkg::TriggersPending "true"; after unpacking. It will be a good idea to do this quite early in the upgrade process as these these configure calls require currently also DPkg::TriggersPending which will run quite a few triggers (which maybe not needed). Essentials get per default a high score - but the immediate flag is relativly low (a package which has a Pre-Depends is higher rated). + but the immediate flag is relatively low (a package which has a Pre-Depends is higher rated). These option and the others in the same group can be used to change the scoring. The following example shows the settings with there default values. OrderList::Score { -- cgit v1.2.3 From 2ec8479cef7475fbc82ffdaf6a7bf658f5c3ac52 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 25 Sep 2009 20:30:05 +0200 Subject: releasing version 0.7.24 --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index f8e8abecf..94dee639e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -apt (0.7.24) UNRELEASED; urgency=low +apt (0.7.24) unstable; urgency=low [ Nicolas François ] * Cleaned up the first patch draft from KURASAWA Nozomu to finally @@ -65,7 +65,7 @@ apt (0.7.24) UNRELEASED; urgency=low * doc/de: dropped (translation is too incomplete to be useful in the transition to the po4a-powered translations) - -- David Kalnischkies Fri, 28 Aug 2009 09:40:08 +0200 + -- Michael Vogt Fri, 25 Sep 2009 19:57:25 +0200 apt (0.7.23.1) unstable; urgency=low -- cgit v1.2.3 From 8ddbb01559ec61f93010642d55b124e7f999f169 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sat, 26 Sep 2009 11:19:29 +0200 Subject: Fix ftp(archive(1) documentation of -o --- debian/changelog | 7 +++++++ doc/apt-ftparchive.1.xml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 94dee639e..101ad03a7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +apt (0.7.25) UNRELEASED; urgency=low + + * Fix apt-ftparchive(1) wrt description of the "-o" option. + Thanks to Dann Frazier for the patch. Closes: #273100 + + -- Christian Perrier Sat, 26 Sep 2009 11:17:25 +0200 + apt (0.7.24) unstable; urgency=low [ Nicolas François ] diff --git a/doc/apt-ftparchive.1.xml b/doc/apt-ftparchive.1.xml index 7131303ae..334cc85da 100644 --- a/doc/apt-ftparchive.1.xml +++ b/doc/apt-ftparchive.1.xml @@ -39,7 +39,7 @@ - + packagespathoverridepathprefix -- cgit v1.2.3 From 66a9a58e391f3923b82e579e2d9d5316ee255718 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sat, 26 Sep 2009 12:12:06 +0200 Subject: Update PO files --- po/ar.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/bg.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/bs.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/ca.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/cs.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/cy.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/da.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/de.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/dz.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/el.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/en_GB.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/es.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/eu.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/fi.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/fr.po | 220 +++++++++++++++++++++++++++++++----------------------------- po/gl.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/he.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/hu.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/it.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/ja.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/km.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/ko.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/ku.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/mr.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/nb.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/ne.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/nl.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/nn.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/pl.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/pt.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/pt_BR.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/ro.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/ru.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/sk.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/sl.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/sv.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/th.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/tl.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/uk.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/vi.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/zh_CN.po | 213 ++++++++++++++++++++++++++++++---------------------------- po/zh_TW.po | 213 ++++++++++++++++++++++++++++++---------------------------- 42 files changed, 4583 insertions(+), 4370 deletions(-) diff --git a/po/ar.po b/po/ar.po index dc8accf2e..2d6a75fd8 100644 --- a/po/ar.po +++ b/po/ar.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2006-10-20 21:28+0300\n" "Last-Translator: Ossama M. Khayat \n" "Language-Team: Arabic \n" @@ -156,7 +156,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -554,7 +554,7 @@ msgstr "فشل تغيير اسم %s إلى %s" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "" @@ -715,11 +715,11 @@ msgstr "حزم بحاجة للإزالة لكن الإزالة مُعطّلة." msgid "Internal error, Ordering didn't finish" msgstr "خطأ داخلي، لم تنته عملية الترتيب" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "تعذر قَفْل دليل التنزيل" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "تعذرت قراءة قائمة المصادر." @@ -748,7 +748,7 @@ msgstr "بعد الاستخراج %sب من المساحة الإضافيّة س msgid "After this operation, %sB disk space will be freed.\n" msgstr "بعد الاستخراج %sب من المساحة ستفرّغ.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "تعذر حساب المساحة الحرة في %s" @@ -785,7 +785,7 @@ msgstr "إجهاض." msgid "Do you want to continue [Y/n]? " msgstr "هل تريد الاستمرار [Y/n]؟" -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "فشل إحضار %s %s\n" @@ -794,7 +794,7 @@ msgstr "فشل إحضار %s %s\n" msgid "Some files failed to download" msgstr "فشل تنزيل بعض الملفات" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "اكتمل التنزيل وفي وضع التنزيل فقط" @@ -818,35 +818,35 @@ msgstr "تعذر تصحيح الحزم المفقودة." msgid "Aborting install." msgstr "إجهاض التثبيت." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "لاحظ، تحديد %s بدلاً من %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "تخطّي %s، حيث أنها مثبتة ولم يتمّ تعيين الترقية.\n" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "الحزمة %s غير مُثبّتة، لذلك لن تُزال\n" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "الحزمة %s وهميّة وتوفّرها:\n" -#: cmdline/apt-get.cc:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [مُثبّتة]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "يجب اختيار واحدة بالتحديد لتثبيتها." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -854,74 +854,74 @@ msgid "" "is only available from another source\n" msgstr "" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "على أيّ فإن الحزم التالية تحلّ مكانها:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "الحزمة %s ليس لها مرشح تثبيت" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "إعادة تثبيت %s غير ممكنة، حيث أنّه لا يمكن تنزيلها.\n" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s هي النسخة الأحدث.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "تعذر العثور على الإصدارة '%s' للحزمة '%s'" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "تعذر العثور على النسخة '%s' للحزمة '%s'" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "النسخة المحددة %s (%s) للإصدارة %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "لا يقبل الأمر update أية مُعطيات" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "تعذر قفل دليل القائمة" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "سيتم تثبيت الحزم الجديدة التالية:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "سيتم تثبيت الحزم الجديدة التالية:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -937,51 +937,51 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "قد تساعد المعلومات التالية في حل المشكلة:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "خطأ داخلي، عطب AllUpgrade بعض الأشياء" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, fuzzy, c-format msgid "Couldn't find task %s" msgstr "تعذر العثور على الحزمة %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "تعذر العثور على الحزمة %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "لاحظ، تحديد %s بسبب صيغة regex '%s'\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "إلا أنه سيتم تثبيت %s" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "قد ترغب بتشغيل `apt-get -f install' لتصحيح هذه:" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" "مُعتمدات غير مستوفاة. جرب 'apt-get -f install' بدون أسماء حزم (أو حدّد حلاً)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -989,152 +989,152 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "حزم معطوبة" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "سيتم تثبيت الحزم الإضافيّة التالية:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "الحزم المقترحة:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "الحزم المستحسنة:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "حساب الترقية..." -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "فشل" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "تمّ" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "يجب تحديد حزمة واحدة على الأقل لجلب مصدرها" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "تعذر العثور على مصدر الحزمة %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "تخطي الملف '%s' المنزل مسبقاً\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "ليس هناك مساحة كافية في %s" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "يجب جلب %sب/%sب من الأرشيفات المصدرية.\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "يجب جلب %sب من الأرشيفات المصدريّة.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "إحضار المصدر %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "فشل إحضار بعض الأرشيفات." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "أمر فك الحزمة '%s' فشل.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "أمر البناء '%s' فشل.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, 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:2551 +#: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "الوحدات المدعومة:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1178,7 +1178,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1304,7 +1304,12 @@ msgstr "توقيع الأرشيف غير صالح" msgid "Error reading archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "توقيع الأرشيف غير صالح" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "" @@ -1406,7 +1411,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -1931,80 +1936,80 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "تعذر العثور على التحديد %s" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "اختصار نوع مجهول: '%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "فتح ملف التهيئة %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "" -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "" @@ -2316,7 +2321,7 @@ msgstr "" msgid "Malformed line %u in source list %s (vendor id)" msgstr "" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2694,12 +2699,12 @@ msgstr "" msgid "Installing %s" msgstr "تم تثبيت %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "تهيئة %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "إزالة %s" @@ -2709,56 +2714,56 @@ msgstr "إزالة %s" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "تحضير %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "فتح %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "التحضير لتهيئة %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "تم تثبيت %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "التحضير لإزالة %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "تم إزالة %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "التحضير لإزالة %s بالكامل" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "تمت إزالة %s بالكامل" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/bg.po b/po/bg.po index fd8e8da65..5aa3fe4c3 100644 --- a/po/bg.po +++ b/po/bg.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2009-01-27 12:41+0200\n" "Last-Translator: Damyan Ivanov \n" "Language-Team: Bulgarian \n" @@ -156,7 +156,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s за %s компилиран на %s %s\n" @@ -660,7 +660,7 @@ msgstr "Неуспех при преименуването на %s на %s" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Грешка при компилирането на регулярния израз - %s" @@ -823,11 +823,11 @@ msgstr "Трябва да бъдат премахнати пакети, но п msgid "Internal error, Ordering didn't finish" msgstr "Вътрешна грешка, „Ordering“ не завърши" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Неуспех при заключването на директорията за изтегляне" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Списъкът с източници не можа да бъде прочетен." @@ -859,7 +859,7 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "След тази операция ще бъде освободено %sB дисково пространство.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Неуспех при определянето на свободното пространство в %s" @@ -896,7 +896,7 @@ msgstr "Прекъсване." msgid "Do you want to continue [Y/n]? " msgstr "Искате ли да продължите [Y/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Неуспех при изтеглянето на %s %s\n" @@ -905,7 +905,7 @@ msgstr "Неуспех при изтеглянето на %s %s\n" msgid "Some files failed to download" msgstr "Някои файлове не можаха да бъдат изтеглени" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Изтеглянето завърши в режим само на изтегляне" @@ -929,35 +929,35 @@ msgstr "Неуспех при коригирането на липсващите msgid "Aborting install." msgstr "Прекъсване на инсталирането." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Забележете, избиране на %s вместо %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "Пропускане на %s, вече е инсталиран и не е маркиран за актуализация.\n" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Пакетът %s не е инсталиран, така че не е премахнат\n" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Пакетът %s е виртуален пакет, осигурен от:\n" -#: cmdline/apt-get.cc:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Инсталиран]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Трябва изрично да изберете един за инсталиране." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -968,75 +968,75 @@ msgstr "" "Това може да означава, че пакета липсва, остарял е, или е достъпен\n" "само от друг източник\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Обаче следните пакети го заместват:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Пакетът %s няма кандидат за инсталиране" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Преинсталацията на %s не е възможна, не може да бъде изтеглен.\n" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s вече е най-новата версия.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Не е намерено издание „%s“ на „%s“" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Не е намерена версия „%s“ на „%s“" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Избрана е версия %s (%s) за %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Командата „update“ не възприема аргументи" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Неуспех при заключването на директорията със списъка на пакетите" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Не би трябвало да се изтрива. AutoRemover няма да бъде стартиран" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" "Следните пакети са били инсталирани автоматично и вече не са необходими:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" "Следните пакети са били инсталирани автоматично и вече не са необходими:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Използвайте „apt-get autoremove“ за да ги премахнете." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1054,44 +1054,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "" "Следната информация може да помогне за намиране на изход от ситуацията:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Вътрешна грешка, AutoRemover счупи нещо в системата" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Вътрешна грешка, „AllUpgrade“ счупи нещо в системата" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Неуспех при намирането на задача %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Неуспех при намирането на пакет %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Забележете, избиране на %s за регулярен израз „%s“\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s е отбелязан като ръчно инсталиран.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "Възможно е да изпълните „apt-get -f install“, за да коригирате:" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1099,7 +1099,7 @@ msgstr "" "Неудовлетворени зависимости. Опитайте „apt-get -f install“ без пакети (или " "укажете разрешение)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1111,118 +1111,118 @@ msgstr "" "дистрибуция, че някои необходими пакети още не са създадени или пък\n" "са били преместени от Incoming." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Счупени пакети" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Следните допълнителни пакети ще бъдат инсталирани:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Предложени пакети:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Препоръчвани пакети:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Изчисляване на актуализацията..." -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Неуспех" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Готово" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Вътрешна грешка, „problem resolver“ счупи нещо в системата" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "Трябва да укажете поне един пакет за изтегляне на изходния му код" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Неуспех при намирането на изходен код на пакет %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Пропускане на вече изтегления файл „%s“\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "Нямате достатъчно свободно пространство в %s" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Необходимо е да се изтеглят %sB/%sB архиви изходен код.\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Необходимо е да се изтеглят %sB архиви изходен код.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Изтегляне на изходен код %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Неуспех при изтеглянето на някои архиви." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" "Пропускане на разпакетирането на вече разпакетирания изходен код в %s\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Командата за разпакетиране „%s“ пропадна.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Проверете дали имате инсталиран пакета „dpkg-dev“.\n" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Командата за компилиране „%s“ пропадна.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Процесът-потомък пропадна" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "" "Трябва да укажете поне един пакет за проверка на зависимости за компилиране" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" "Неуспех при получаването на информация за зависимостите за компилиране на %s" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s няма зависимости за компилиране.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1231,7 +1231,7 @@ msgstr "" "Зависимост %s за пакета %s не може да бъде удовлетворена, понеже пакета %s " "не може да бъде намерен" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1241,32 +1241,32 @@ msgstr "" "налични версии на пакета %s, които могат да удовлетворят изискването за " "версия" -#: cmdline/apt-get.cc:2551 +#: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Неуспех при удовлетворяването на зависимост %s за пакета %s: Инсталираният " "пакет %s е твърде нов" -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Неуспех при удовлетворяването на зависимост %s за пакета %s: %s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Зависимостите за компилиране на %s не можаха да бъдат удовлетворени." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Неуспех при обработката на зависимостите за компилиране" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Поддържани модули:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1353,7 +1353,7 @@ msgstr "" "информация и опции.\n" " Това APT има Върховни Сили.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1491,7 +1491,12 @@ msgstr "Невалиден подпис на архива" msgid "Error reading archive member header" msgstr "Грешка при четене на заглавната част на елемента на архива" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Невалидна заглавна част на елемента на архива" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Невалидна заглавна част на елемента на архива" @@ -1593,7 +1598,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2131,82 +2136,82 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Изборът %s не е намерен" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Неизвестен тип на абревиатура: „%c“" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Отваряне на конфигурационен файл %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Синтактична грешка %s:%u: В началото на блока няма име." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Синтактична грешка %s:%u: Лошо форматиран таг" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Синтактична грешка %s:%u: Излишни символи след стойността" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Синтактична грешка %s:%u: Директиви могат да се задават само в най-горното " "ниво" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Синтактична грешка %s:%u: Твърде много вложени „include“" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Синтактична грешка %s:%u: Извикан „include“ оттук" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Синтактична грешка %s:%u: Неподдържана директива „%s“" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Синтактична грешка %s:%u: Излишни символи в края на файла" @@ -2524,7 +2529,7 @@ msgstr "" "Лошо форматиран ред %u в списъка с източници %s (идентификатор на " "производител)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2928,12 +2933,12 @@ msgstr "Записани са %i записа с %i липсващи и %i не msgid "Installing %s" msgstr "Инсталиране на %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Конфигуриране на %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Премахване на %s" @@ -2943,58 +2948,58 @@ msgstr "Премахване на %s" msgid "Running post-installation trigger %s" msgstr "Изпълнение на тригер след инсталиране %s" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Директорията „%s“ липсва" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Подготвяне на %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Разпакетиране на %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Подготвяне на %s за конфигуриране" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "%s е инсталиран" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Подготвяне за премахване на %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "%s е премахнат" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Подготовка за пълно премахване на %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "%s е напълно премахнат" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Неуспех при запис в журнала, openpty() се провали (дали /dev/pts е " "монтирана?)\n" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/bs.po b/po/bs.po index bb1681415..6fa343cce 100644 --- a/po/bs.po +++ b/po/bs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2004-05-06 15:25+0100\n" "Last-Translator: Safir Šećerović \n" "Language-Team: Bosnian \n" @@ -152,7 +152,7 @@ msgstr "" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "" @@ -563,7 +563,7 @@ msgstr "" msgid "Y" msgstr "" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "" @@ -724,11 +724,11 @@ msgstr "" msgid "Internal error, Ordering didn't finish" msgstr "" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "" @@ -757,7 +757,7 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "" @@ -792,7 +792,7 @@ msgstr "Odustani." msgid "Do you want to continue [Y/n]? " msgstr "Da li želite nastaviti? [Y/n]" -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "" @@ -801,7 +801,7 @@ msgstr "" msgid "Some files failed to download" msgstr "" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "" @@ -823,35 +823,35 @@ msgstr "" msgid "Aborting install." msgstr "Odustajem od instalacije." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "" -#: cmdline/apt-get.cc:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr "[Instalirano]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "" -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -859,74 +859,74 @@ msgid "" "is only available from another source\n" msgstr "" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Međutim, slijedeći paketi ga zamjenjuju:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Slijedeći NOVI paketi će biti instalirani:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "Slijedeći NOVI paketi će biti instalirani:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -942,49 +942,49 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ali se %s treba instalirati" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -992,152 +992,152 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Oštećeni paketi" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Slijedeći dodatni paketi će biti instalirani:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Predloženi paketi:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Preporučeni paketi:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Računam nadogradnju..." -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Neuspješno" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Urađeno" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, 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:2551 +#: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Podržani moduli:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1181,7 +1181,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1304,7 +1304,12 @@ msgstr "" msgid "Error reading archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, c-format +msgid "Invalid archive member header %s" +msgstr "" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "" @@ -1406,7 +1411,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -1931,80 +1936,80 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "" -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "" @@ -2317,7 +2322,7 @@ msgstr "" msgid "Malformed line %u in source list %s (vendor id)" msgstr "" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2694,12 +2699,12 @@ msgstr "" msgid "Installing %s" msgstr " Instalirano:" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, fuzzy, c-format msgid "Configuring %s" msgstr "Povezujem se sa %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, fuzzy, c-format msgid "Removing %s" msgstr "Otvaram %s" @@ -2709,56 +2714,56 @@ msgstr "Otvaram %s" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, fuzzy, c-format msgid "Preparing %s" msgstr "Otvaram %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, fuzzy, c-format msgid "Unpacking %s" msgstr "Otvaram %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, fuzzy, c-format msgid "Installed %s" msgstr " Instalirano:" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, fuzzy, c-format msgid "Removed %s" msgstr "Preporučuje" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Completely removed %s" msgstr "Ne mogu ukloniti %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/ca.po b/po/ca.po index d63a308ec..11a9aebca 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.22\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2009-06-06 02:17+0200\n" "Last-Translator: Jordi Mallach \n" "Language-Team: Catalan \n" @@ -153,7 +153,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -650,7 +650,7 @@ msgstr "No s'ha pogut canviar el nom de %s a %s" msgid "Y" msgstr "S" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "S'ha produït un error de compilació de l'expressió regular - %s" @@ -814,11 +814,11 @@ msgstr "" msgid "Internal error, Ordering didn't finish" msgstr "S'ha produït un error intern, l'ordenació no ha acabat" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "No és possible blocar el directori de descàrrega" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "No s'ha pogut llegir la llista de les fonts." @@ -849,7 +849,7 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Després d'aquesta operació s'alliberaran %sB d'espai en disc.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "No s'ha pogut determinar l'espai lliure en %s" @@ -886,7 +886,7 @@ msgstr "Avortat." msgid "Do you want to continue [Y/n]? " msgstr "Voleu continuar [S/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "No s'ha pogut obtenir %s %s\n" @@ -895,7 +895,7 @@ msgstr "No s'ha pogut obtenir %s %s\n" msgid "Some files failed to download" msgstr "Alguns fitxers no s'han pogut baixar" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Descàrrega completa i en mode de només descàrrega" @@ -919,36 +919,36 @@ msgstr "No es poden corregir els paquets que falten." msgid "Aborting install." msgstr "S'està avortant la instal·lació." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Nota: s'està seleccionant %s en comptes de %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, 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:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Instal·lat]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Necessiteu seleccionar-ne un explícitament per a instal·lar-lo." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -959,77 +959,77 @@ 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:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Tot i que els següents paquets el reemplacen:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "El paquet %s no té candidat d'instal·lació" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, 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:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "No s'ha trobat la versió puntual «%s» per a «%s»" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "No s'ha trobat la versió «%s» per a «%s»" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Versió seleccionada %s (%s) per a %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "No hi ha cap paquet font «%s», es selecciona «%s» en el seu lloc\n" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "L'ordre update no pren arguments" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "No es pot blocar el directori de la llista" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 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:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" "Els paquets següents s'instal·laren automàticament i ja no són necessaris:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" "Els paquets següents s'instal·laren automàticament i ja no són necessaris:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Empreu «apt-get autoremove» per a suprimir-los." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1047,43 +1047,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 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:1493 +#: cmdline/apt-get.cc:1518 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:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Error intern, AllUpgrade ha trencat coses" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "No s'ha pogut trobar la tasca %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "No s'ha pogut trobar el paquet %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Nota: s'està seleccionant %s per a l'expressió regular '%s'\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "S'ha marcat %s com instal·lat manualment.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 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:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1091,7 +1091,7 @@ msgstr "" "Dependències insatisfetes. Intenteu 'apt-get -f install' sense paquets (o " "especifiqueu una solució)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1103,120 +1103,120 @@ msgstr "" "unstable i alguns paquets requerits encara no han estat creats o bé\n" "encara no els hi han afegit." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Paquets trencats" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "S'instal·laran els següents paquets extres:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Paquets suggerits:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Paquets recomanats:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "S'està calculant l'actualització... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Ha fallat" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Fet" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 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:2113 +#: cmdline/apt-get.cc:2138 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:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, 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:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "S'està ometent el fitxer ja baixat «%s»\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "No teniu prou espai lliure en %s" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, 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:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Es necessita baixar %sB d'arxius font.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Obté el font %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "No s'ha pogut baixar alguns arxius." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, 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:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "L'ordre de desempaquetar «%s» ha fallat.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, 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:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "L'ordre de construir «%s» ha fallat.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Ha fallat el procés fill" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 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:2390 +#: cmdline/apt-get.cc:2415 #, 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:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s no té dependències de construcció.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1225,7 +1225,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:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1234,32 +1234,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:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, 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:2594 +#: cmdline/apt-get.cc:2619 #, 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:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "No es poden processar les dependències de construcció" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Mòduls suportats:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1345,7 +1345,7 @@ msgstr "" "per a obtenir més informació i opcions.\n" " Aquest APT té superpoders bovins\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1486,7 +1486,12 @@ msgstr "Signatura de l'arxiu no vàlida" 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 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "La capçalera del membre de l'arxiu no és vàlida" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "La capçalera del membre de l'arxiu no és vàlida" @@ -1588,7 +1593,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2129,80 +2134,80 @@ msgstr "" "Valor actual: %lu. (man 5 apt.conf)" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, fuzzy, c-format msgid "%limin %lis" msgstr "limin %lis" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "%lis" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "No s'ha trobat la selecció %s" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Abreujament de tipus no reconegut: «%c»" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "S'està obrint el fitxer de configuració %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Error sintàctic %s:%u: No comença el camp amb un nom." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Error sintàctic %s:%u: Etiqueta malformada" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Error sintàctic %s:%u Text extra després del valor" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "Error sintàctic %s:%u: Es permeten directrius només al nivell més alt" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Error sintàctic %s:%u: Hi ha masses fitxers include niats" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Error sintàctic %s:%u: Inclusió des d'aquí" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Error sintàctic %s:%u: Directriu no suportada «%s»" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Error sintàctic %s:%u: Text extra al final del fitxer" @@ -2514,7 +2519,7 @@ msgstr "El tipus «%s» no és conegut en la línia %u de la llista de fonts %s" msgid "Malformed line %u in source list %s (vendor id)" msgstr "La línia %u és malformada en la llista de fonts %s (id del proveïdor)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2924,12 +2929,12 @@ msgstr "" msgid "Installing %s" msgstr "S'està instal·lant %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "S'està configurant el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "S'està suprimint el paquet %s" @@ -2939,58 +2944,58 @@ msgstr "S'està suprimint el paquet %s" msgid "Running post-installation trigger %s" msgstr "S'està executant l'activador de postinstal·lació %s" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Manca el directori «%s»" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "S'està preparant el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "S'està desempaquetant %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "S'està preparant per a configurar el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "S'ha instal·lat el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "S'està preparant per a la supressió del paquet %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "S'ha suprimit el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "S'està preparant per a suprimir completament el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "S'ha suprimit completament el paquet %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 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:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/cs.po b/po/cs.po index f83a2dc6a..9e595f54e 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2008-11-16 18:05+0100\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" @@ -151,7 +151,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -645,7 +645,7 @@ msgstr "Selhalo přejmenování %s na %s" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Chyba při kompilaci regulárního výrazu - %s" @@ -806,11 +806,11 @@ msgstr "Balík je potřeba odstranit ale funkce Odstranit je vypnuta." msgid "Internal error, Ordering didn't finish" msgstr "Vnitřní chyba, třídění nedoběhlo do konce" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Nemohu zamknout adresář pro stahování" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Nelze přečíst seznam zdrojů." @@ -840,7 +840,7 @@ msgstr "Po této operaci bude na disku použito dalších %sB.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Po této operaci bude na disku uvolněno %sB.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nemohu určit volné místo v %s" @@ -877,7 +877,7 @@ msgstr "Přerušeno." msgid "Do you want to continue [Y/n]? " msgstr "Chcete pokračovat [Y/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Selhalo stažení %s %s\n" @@ -886,7 +886,7 @@ msgstr "Selhalo stažení %s %s\n" msgid "Some files failed to download" msgstr "Některé soubory nemohly být staženy" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Stahování dokončeno v režimu pouze stáhnout" @@ -910,35 +910,35 @@ msgstr "Nemohu opravit chybějící balíky." msgid "Aborting install." msgstr "Přerušuji instalaci." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Pozn: Vybírám %s místo %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, 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:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr "[Instalovaný]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Měli byste explicitně vybrat jeden k instalaci." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -949,75 +949,75 @@ 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:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Nicméně následující balíky jej nahrazují:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Balík %s nemá kandidáta pro instalaci" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s je již nejnovější verze.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Vydání „%s“ pro „%s“ nebylo nalezeno" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Verze „%s“ pro „%s“ nebyla nalezena" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Vybraná verze %s (%s) pro %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Příkaz update neakceptuje žádné argumenty" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Nemohu uzamknout list adresář" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 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:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" "Následující balíky byly nainstalovány automaticky a již nejsou potřeba:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" "Následující balíky byly nainstalovány automaticky a již nejsou potřeba:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Pro jejich odstranění použijte „apt-get autoremove“." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1035,43 +1035,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 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:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Vnitřní chyba, AutoRemover pokazil věci" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Vnitřní chyba, AllUpgrade pokazil věci" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Nemohu najít úlohu %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Nemohu najít balík %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, 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:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s nastaven jako instalovaný ručně.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 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:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1079,7 +1079,7 @@ msgstr "" "Nesplněné závislosti. Zkuste spustit „apt-get -f install“ bez balíků (nebo " "navrhněte řešení)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1090,124 +1090,124 @@ 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:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Poškozené balíky" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Následující extra balíky budou instalovány:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Navrhované balíky:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Doporučované balíky:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Propočítávám aktualizaci... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Selhalo" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Hotovo" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Vnitřní chyba, řešitel problémů pokazil věci" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 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:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Nemohu najít zdrojový balík pro %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Přeskakuji dříve stažený soubor „%s“\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, 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:2229 +#: cmdline/apt-get.cc:2254 #, 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:2232 +#: cmdline/apt-get.cc:2257 #, 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:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Stáhnout zdroj %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Stažení některých archivů selhalo." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, 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:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Příkaz pro rozbalení „%s“ selhal.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, 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:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Příkaz pro sestavení „%s“ selhal.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Synovský proces selhal" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 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:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nemohu získat závislosti pro sestavení %s" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s nemá žádné závislosti pro sestavení.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, 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:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1216,31 +1216,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:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, 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:2594 +#: cmdline/apt-get.cc:2619 #, 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:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Chyba při zpracování závislostí pro sestavení" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Podporované moduly:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1324,7 +1324,7 @@ msgstr "" "a apt.conf(5).\n" " Tato APT má schopnosti svaté krávy.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1460,7 +1460,12 @@ msgstr "Neplatný podpis archivu" msgid "Error reading archive member header" msgstr "Chyba při čtení záhlaví prvku archivu" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Neplatné záhlaví prvku archivu" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Neplatné záhlaví prvku archivu" @@ -1562,7 +1567,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2092,81 +2097,81 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Výběr %s nenalezen" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Nerozpoznaná zkratka typu: „%c“" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Otevírám konfigurační soubor %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntaktická chyba %s:%u: Blok nezačíná jménem." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntaktická chyba %s:%u: Zkomolená značka" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Syntaktická chyba %s:%u: Za hodnotou následuje zbytečné smetí" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Syntaktická chyba %s:%u: Direktivy je možné provádět pouze na nejvyšší úrovni" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntaktická chyba %s:%u: Příliš mnoho vnořených propojení (include)" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntaktická chyba %s:%u: Zahrnuto odtud" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktiva „%s“" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntaktická chyba %s:%u: Na konci souboru je zbytečné smetí" @@ -2477,7 +2482,7 @@ msgstr "Typ „%s“ na řádce %u v seznamu zdrojů %s není známý" msgid "Malformed line %u in source list %s (vendor id)" msgstr "Zkomolený řádek %u v seznamu zdrojů %s (id výrobce)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2871,12 +2876,12 @@ msgstr "" msgid "Installing %s" msgstr "Instaluji %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Nastavuji %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Odstraňuji %s" @@ -2886,56 +2891,56 @@ msgstr "Odstraňuji %s" msgid "Running post-installation trigger %s" msgstr "Spouštím poinstalační spouštěč %s" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Adresář „%s“ chybí" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Připravuji %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Rozbaluji %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Připravuji nastavení %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "Nainstalován %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Připravuji odstranění %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "Odstraněn %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Připravuji úplné odstranění %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "Kompletně odstraněn %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 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:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/cy.po b/po/cy.po index 357da89f6..cdfce5d09 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: APT\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2005-06-06 13:46+0100\n" "Last-Translator: Dafydd Harries \n" "Language-Team: Welsh \n" @@ -169,7 +169,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -675,7 +675,7 @@ msgstr "Methwyd ailenwi %s at %s" msgid "Y" msgstr "I" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Gwall crynhoi patrwm - %s" @@ -845,11 +845,11 @@ msgstr "Rhaid tynnu pecynnau on mae Tynnu wedi ei analluogi." msgid "Internal error, Ordering didn't finish" msgstr "Gwall Mewnol wrth ychwanegu dargyfeiriad" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Ni ellir cloi'r cyfeiriadur lawrlwytho" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Methwyd darllen y rhestr ffynhonellau." @@ -878,7 +878,7 @@ msgstr "Ar ôl dadbacio defnyddir %sB o ofod disg ychwanegol.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Ar ôl dadbactio caiff %sB o ofod disg ei rhyddhau.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, fuzzy, c-format msgid "Couldn't determine free space in %s" msgstr "Does dim digon o le rhydd yn %s gennych" @@ -916,7 +916,7 @@ msgstr "Erthylu." msgid "Do you want to continue [Y/n]? " msgstr "Ydych chi eisiau mynd ymlaen? [Y/n] " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Methwyd cyrchu %s %s\n" @@ -925,7 +925,7 @@ msgstr "Methwyd cyrchu %s %s\n" msgid "Some files failed to download" msgstr "Methodd rhai ffeiliau lawrlwytho" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Lawrlwytho yn gyflawn ac yn y modd lawrlwytho'n unig" @@ -950,36 +950,36 @@ msgstr "Ni ellir cywiro pecynnau ar goll." msgid "Aborting install." msgstr "Yn Erthylu'r Sefydliad." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Sylwer, yn dewis %s yn hytrach na %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, 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:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Sefydliwyd]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Dylech ddewis un yn benodol i'w sefydlu." # FIXME: punctuation -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, fuzzy, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -991,74 +991,74 @@ msgstr "" "gael ei uwchlwytho, cafodd ei ddarfod neu nid yw ar gael drwy gynnwys y\n" "ffeil sources.list.\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Fodd bynnag, mae'r pecynnau canlynol yn cymryd ei le:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Does dim ymgeisydd sefydlu gan y pecyn %s" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "Mae %s y fersiwn mwyaf newydd eisioes.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Ni chanfuwyd y rhyddhad '%s' o '%s'" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Ni chanfuwyd y fersiwn '%s' o '%s' " -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Dewiswyd fersiwn %s (%s) ar gyfer %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Nid yw'r gorchymyn diweddaru yn derbyn ymresymiadau" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Ni ellir cloi'r cyfeiriadur rhestr" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "Caiff y pecynnau NEWYDD canlynol eu sefydlu:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1074,46 +1074,46 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "Gall y wybodaeth canlynol gynorthwyo'n datrys y sefyllfa:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 #, fuzzy msgid "Internal error, AllUpgrade broke stuff" msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, fuzzy, c-format msgid "Couldn't find task %s" msgstr "Methwyd canfod pecyn %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Methwyd canfod pecyn %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, 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:1736 +#: cmdline/apt-get.cc:1761 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ond mae %s yn mynd i gael ei sefydlu" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 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:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1122,7 +1122,7 @@ msgstr "" "pecyn (neu penodwch ddatrys)" # FIXME: needs commas -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1134,118 +1134,118 @@ msgstr "" "ansefydlog, fod rhai pecynnau angenrheidiol heb gael eu creu eto neu\n" "heb gael eu symud allan o Incoming." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Pecynnau wedi torri" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Caiff y pecynnau canlynol ychwanegol eu sefydlu:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Pecynnau a awgrymmir:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Pecynnau a argymhellir:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 #, fuzzy msgid "Calculating upgrade... " msgstr "Yn Cyfrifo'r Uwchraddiad... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Methwyd" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Wedi Gorffen" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 #, fuzzy msgid "Internal error, problem resolver broke stuff" msgstr "Gwall Mewnol, torrodd AllUpgrade bethau" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 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:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Ni ellir canfod pecyn ffynhonell ar gyfer %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, 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:2223 +#: cmdline/apt-get.cc:2248 #, 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:2229 +#: cmdline/apt-get.cc:2254 #, 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:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Rhaid cyrchu %sB o archifau ffynhonell.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, fuzzy, c-format msgid "Fetch source %s\n" msgstr "Cyrchu Ffynhonell %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Methwyd cyrchu rhai archifau." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, 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:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Methodd y gorchymyn dadbacio '%s'.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Methodd y gorchymyn adeiladu '%s'.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Methodd proses plentyn" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 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:2390 +#: cmdline/apt-get.cc:2415 #, 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:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "Nid oes dibyniaethau adeiladu gan %s.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1254,7 +1254,7 @@ msgstr "" "Ni ellir bodloni dibyniaeth %s ar gyfer %s oherwydd ni ellir canfod y pecyn %" "s" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1263,34 +1263,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:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Methwyd bodloni dibyniaeth %s am %s: %s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Methwyd bodloni'r dibyniaethau adeiladu ar gyfer %s." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Methwyd prosesu dibyniaethau adeiladu" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 #, fuzzy msgid "Supported modules:" msgstr "Modylau a Gynhelir:" # FIXME: split -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1375,7 +1375,7 @@ msgstr "" "\n" " Mae gan yr APT hwn bŵerau buwch hudol.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1516,7 +1516,12 @@ msgstr "Llofnod archif annilys" msgid "Error reading archive member header" msgstr "Gwall wrth ddarllen pennawd aelod archif" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Pennawd aelod archif annilys" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Pennawd aelod archif annilys" @@ -1622,7 +1627,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2175,82 +2180,82 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Ni chanfuwyd y dewis %s" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Talgryniad math anhysbys: '%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Yn agor y ffeil cyfluniad %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Gwall cystrawen %s:%u: Mae bloc yn cychwyn efo dim enw." # FIXME -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, fuzzy, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Gwall cystrawen %s:%u: Tag wedi camffurfio" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ôl y gwerth" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Gwall cystrawen %s:%u: Ceir defnyddio cyfarwyddyd ar y lefel dop yn unig" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Gwall cystrawen %s:%u: Gormod o gynhwysion nythol" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Gwall cystrawen %s:%u: Cynhwyswyd o fan hyn" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Gwall cystrawen %s:%u: Cyfarwyddyd ni gynhelir '%s'" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Gwall cystrawen %s:%u: Sbwriel ychwanegol ar ddiwedd y ffeil" @@ -2573,7 +2578,7 @@ msgid "Malformed line %u in source list %s (vendor id)" msgstr "Llinell camffurfiol %lu yn y rhestr ffynhonell %s (dosranniad)" # FIXME: %s may have an arbirrary length -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2979,12 +2984,12 @@ msgstr "" msgid "Installing %s" msgstr " Wedi Sefydlu: " -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, fuzzy, c-format msgid "Configuring %s" msgstr "Yn cysylltu i %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, fuzzy, c-format msgid "Removing %s" msgstr "Yn agor %s" @@ -2994,56 +2999,56 @@ msgstr "Yn agor %s" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "Mae'r cyfeiriadur rhestrau %spartial ar goll." -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, fuzzy, c-format msgid "Preparing %s" msgstr "Yn agor %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, fuzzy, c-format msgid "Unpacking %s" msgstr "Yn agor %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, fuzzy, c-format msgid "Preparing to configure %s" msgstr "Yn agor y ffeil cyfluniad %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, fuzzy, c-format msgid "Installed %s" msgstr " Wedi Sefydlu: " -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, fuzzy, c-format msgid "Removed %s" msgstr "Argymell" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, fuzzy, c-format msgid "Preparing to completely remove %s" msgstr "Yn agor y ffeil cyfluniad %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Completely removed %s" msgstr "Methwyd dileu %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/da.po b/po/da.po index c36efaa13..7b3252a12 100644 --- a/po/da.po +++ b/po/da.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-da\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2007-09-06 21:40+0200\n" "Last-Translator: Claus Hindsgaul \n" "Language-Team: Danish\n" @@ -157,7 +157,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 cmdline/apt-sortpkgs.cc:144 #, fuzzy, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s for %s oversat %s %s\n" @@ -654,7 +654,7 @@ msgstr "Kunne ikke omd msgid "Y" msgstr "J" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Fejl ved tolkning af regulrt udtryk - %s" @@ -815,11 +815,11 @@ msgstr "Pakker skal afinstalleres, men Remove er deaktiveret." msgid "Internal error, Ordering didn't finish" msgstr "Intern fejl. Sortering blev ikke fuldfrt" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Kunne ikke lse nedhentningsmappen" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Listen med kilder kunne ikke lses." @@ -848,7 +848,7 @@ msgstr "Efter udpakning vil %sB yderligere diskplads v msgid "After this operation, %sB disk space will be freed.\n" msgstr "Efter udpakning vil %sB diskplads blive frigjort.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kunne ikke bestemme ledig plads i %s" @@ -885,7 +885,7 @@ msgstr "Afbryder." msgid "Do you want to continue [Y/n]? " msgstr "Vil du fortstte [J/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Kunne ikke hente %s %s\n" @@ -894,7 +894,7 @@ msgstr "Kunne ikke hente %s %s\n" msgid "Some files failed to download" msgstr "Nedhentningen af filer mislykkedes" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Nedhentning afsluttet i 'hent-kun'-tilstand" @@ -918,37 +918,37 @@ msgstr "Kunne ikke rette manglende pakker." msgid "Aborting install." msgstr "Afbryder installationen." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Bemrk, at %s vlges fremfor %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, 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:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Pakken %s er ikke installeret, s den afinstalleres ikke\n" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Installeret]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Du br eksplicit vlge en at installere." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -959,75 +959,75 @@ msgstr "" "anden pakke. Det kan betyde at denne pakke blevet overfldiggjort eller \n" "kun kan hentes fra andre kilder\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Dog kan flgende pakker erstatte den:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Pakken %s har ingen installationskandidat" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s er i forvejen den nyeste version.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Udgaven '%s' for '%s' blev ikke fundet" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Versionen '%s' for '%s' blev ikke fundet" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Valgte version %s (%s) af %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "'update'-kommandoen benytter ingen parametre" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Kunne ikke lse listemappen" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 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:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Flgende pakker blev installeret automatisk, og behves ikke lngere:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "Flgende pakker blev installeret automatisk, og behves ikke lngere:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Brug 'apt-get autoremove' til at fjerne dem." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1045,43 +1045,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "Flgende oplysninger kan hjlpe dig med at klare situationen:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Intern fejl. AutoRemover delagde noget" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Intern fejl, AllUpgrade delagde noget" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Kunne ikke finde opgaven %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Kunne ikke finde pakken %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Bemrk, vlger %s som regulrt udtryk '%s'\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "%s sat til manuelt installeret.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "Du kan muligvis rette det ved at kre 'apt-get -f install':" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1089,7 +1089,7 @@ msgstr "" "Uopfyldte afhngigheder. Prv 'apt-get -f install' uden pakker (eller angiv " "en lsning)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1100,115 +1100,115 @@ msgstr "" "en umulig situation eller bruger den ustabile distribution, hvor enkelte\n" "pakker endnu ikke er lavet eller gjort tilgngelige." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "delagte pakker" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Flgende yderligere pakker vil blive installeret:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Foreslede pakker:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Anbefalede pakker:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Beregner opgraderingen... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Mislykkedes" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Frdig" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Intern fejl. Problemlseren delagde noget" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "Du skal angive mindst n pakke at hente kildeteksten til" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Kunne ikke finde kildetekstpakken for %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Overspringer allerede hentet fil '%s'\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, 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:2229 +#: cmdline/apt-get.cc:2254 #, 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:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "%sB skal hentes fra kildetekst-arkiverne.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Henter kildetekst %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Nogle arkiver kunne ikke hentes." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, 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:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Udpakningskommandoen '%s' fejlede.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, 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:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Opbygningskommandoen '%s' fejlede.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Barneprocessen fejlede" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "Skal angive mindst n pakke at tjekke opbygningsafhngigheder for" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Kunne ikke hente oplysninger om opbygningsafhngigheder for %s" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s har ingen opbygningsafhngigheder.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1216,7 +1216,7 @@ msgid "" msgstr "" "%s-afhngigheden for %s kan ikke opfyldes, da pakken %s ikke blev fundet" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1225,32 +1225,32 @@ msgstr "" "%s-afhngigheden for %s kan ikke opfyldes, da ingen af de tilgngelige " "udgaver af pakken %s kan tilfredsstille versions-kravene" -#: cmdline/apt-get.cc:2551 +#: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Kunne ikke opfylde %s-afhngigheden for %s: Den installerede pakke %s er for " "ny" -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Kunne ikke opfylde %s-afhngigheden for %s: %s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Opbygningsafhngigheden for %s kunne ikke opfyldes." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Kunne ikke behandler opbygningsafhngighederne" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Understttede moduler:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1334,7 +1334,7 @@ msgstr "" "for flere oplysninger og tilvalg.\n" " Denne APT har \"Super Cow Powers\".\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1475,7 +1475,12 @@ msgstr "Ugyldig arkivsignatur" msgid "Error reading archive member header" msgstr "Fejl under lsning af arkivelements hoved" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Ugyldigt arkivelementhoved" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Ugyldigt arkivelementhoved" @@ -1577,7 +1582,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2112,80 +2117,80 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Det valgte %s blev ikke fundet" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Ukendt type-forkortelse: '%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "bner konfigurationsfilen %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntaksfejl %s:%u: Blokken starter uden navn." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntaksfejl %s:%u: Forkert udformet mrke" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Syntaksfejl %s:%u: Overskydende affald efter vrdien" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "Syntaksfejl %s:%u: Direktiver kan kun angives i topniveauet" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntaksfejl %s:%u: For mange sammenkdede inkluderinger" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntaksfejl %s:%u: Inkluderet herfra" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntaksfejl %s:%u: Ikke-understttet direktiv '%s'" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntaksfejl %s:%u: Overskydende affald i slutningen af filen" @@ -2496,7 +2501,7 @@ msgstr "Typen '%s' er ukendt p msgid "Malformed line %u in source list %s (vendor id)" msgstr "Ugyldig linje %u i kildelisten %s (producent-id)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2895,12 +2900,12 @@ msgstr "Skrev %i poster med %i manglende filer og %i ikke-trufne filer\n" msgid "Installing %s" msgstr "Installerede %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Stter %s op" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Fjerner %s" @@ -2910,56 +2915,56 @@ msgstr "Fjerner %s" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "Listemappen %spartial mangler." -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Klargr %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Pakker %s ud" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Gr klar til at stte %s op" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "Installerede %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Gr klar til afinstallation af %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "Fjernede %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Gr klar til at fjerne %s helt" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "Fjernede %s helt" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/de.po b/po/de.po index 400af1e49..994501994 100644 --- a/po/de.po +++ b/po/de.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2009-07-12 01:12+0200\n" "Last-Translator: Holger Wansing \n" "Language-Team: Debian German \n" @@ -155,7 +155,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -664,7 +664,7 @@ msgstr "Konnte %s nicht in %s umbenennen" msgid "Y" msgstr "J" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Fehler beim Kompilieren eines regulären Ausdrucks – %s" @@ -825,11 +825,11 @@ msgstr "Pakete müssen entfernt werden, aber Entfernen ist abgeschaltet." msgid "Internal error, Ordering didn't finish" msgstr "Interner Fehler, Anordnung beendete nicht" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Kann das Downloadverzeichnis nicht sperren." -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Die Liste der Quellen konnte nicht gelesen werden." @@ -860,7 +860,7 @@ msgstr "Nach dieser Operation werden %sB Plattenplatz zusätzlich benutzt.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Nach dieser Operation werden %sB Plattenplatz freigegeben.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Konnte freien Platz in %s nicht bestimmen" @@ -897,7 +897,7 @@ msgstr "Abbruch." msgid "Do you want to continue [Y/n]? " msgstr "Möchten Sie fortfahren [J/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Konnte %s nicht holen %s\n" @@ -906,7 +906,7 @@ msgstr "Konnte %s nicht holen %s\n" msgid "Some files failed to download" msgstr "Einige Dateien konnten nicht heruntergeladen werden" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Herunterladen abgeschlossen; Nur-Herunterladen-Modus aktiv" @@ -930,36 +930,36 @@ msgstr "Konnte fehlende Pakete nicht korrigieren." msgid "Aborting install." msgstr "Installation abgebrochen." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Hinweis: wähle %s an Stelle von %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "Überspringe %s, es ist schon installiert und »upgrade« ist nicht gesetzt.\n" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Installiert]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Sie sollten eines explizit zum Installieren auswählen." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -970,60 +970,60 @@ msgstr "" "Paket 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:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Doch die folgenden Pakete ersetzen es:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Paket %s hat keinen Installationskandidaten" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ist schon die neueste Version.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Release »%s« für »%s« konnte nicht gefunden werden" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Version »%s« für »%s« konnte nicht gefunden werden" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Gewählte Version %s (%s) für %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "Kein Quellpaket »%s«, wähle stattdessen »%s«\n" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Der Befehl »update« akzeptiert keine Argumente" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Kann das Listenverzeichnis nicht sperren" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Es soll nichts gelöscht werden, kann AutoRemover nicht starten" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1031,18 +1031,18 @@ msgstr "" "Die folgenden Pakete wurden automatisch installiert und werden nicht länger " "benötigt:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" "Die folgenden Pakete wurden automatisch installiert und werden nicht länger " "benötigt:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Verwenden Sie »apt-get autoremove«, um sie zu entfernen." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1061,44 +1061,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 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:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Interner Fehler, AutoRemover hat was kaputt gemacht" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Interner Fehler, AllUpgrade hat was kaputt gemacht" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Konnte Task %s nicht finden" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Konnte Paket %s nicht finden" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Hinweis: wähle %s für regulären Ausdruck »%s«\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s wurde als manuell installiert festgelegt.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 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:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1106,7 +1106,7 @@ msgstr "" "Nicht erfüllte Abhängigkeiten. Versuchen Sie »apt-get -f install« ohne " "jegliche Pakete (oder geben Sie eine Lösung an)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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,120 +1118,120 @@ msgstr "" "Unstable-Distribution verwenden, einige erforderliche Pakete noch nicht\n" "erstellt wurden oder Incoming noch nicht verlassen haben." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Kaputte Pakete" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Die folgenden zusätzlichen Pakete werden installiert:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Vorgeschlagene Pakete:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Empfohlene Pakete:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Berechne Upgrade (Paketaktualisierung) ..." -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Fehlgeschlagen" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Fertig" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Interner Fehler, der Problem-Löser hat was kaputt gemacht" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 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:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Kann Quellpaket für %s nicht finden" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Überspringe schon heruntergeladene Datei »%s«\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "Sie haben nicht genug freien Platz in %s" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Es müssen noch %sB von %sB an Quellarchiven heruntergeladen werden.\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Es müssen %sB an Quellarchiven heruntergeladen werden.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Hole Quelle %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Konnte einige Archive nicht holen." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Überspringe Entpacken der schon entpackten Quelle in %s\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Entpack-Befehl »%s« fehlgeschlagen.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, 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:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Build-Befehl »%s« fehlgeschlagen.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Kindprozess fehlgeschlagen" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "" "Es muss zumindest ein Paket angegeben werden, dessen Bau-Abhängigkeiten\n" "überprüft werden sollen." -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" "Informationen zu Bau-Abhängigkeiten für %s konnten nicht gefunden werden." -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s hat keine Bau-Abhängigkeiten.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1240,7 +1240,7 @@ msgstr "" "%s-Abhängigkeit für %s kann nicht erfüllt werden, da Paket %s nicht gefunden " "werden kann." -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1249,32 +1249,32 @@ msgstr "" "%s-Abhängigkeit für %s kann nicht erfüllt werden, da keine verfügbare " "Version von Paket %s die Versionsanforderungen erfüllen kann." -#: cmdline/apt-get.cc:2551 +#: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Konnte die %s-Abhängigkeit für %s nicht erfüllen: Installiertes Paket %s ist " "zu neu." -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Konnte die %s-Abhängigkeit für %s nicht erfüllen: %s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Bau-Abhängigkeiten für %s konnten nicht erfüllt werden." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Verarbeitung der Bau-Abhängigkeiten fehlgeschlagen" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Unterstützte Module:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1365,7 +1365,7 @@ msgstr "" "weitergehende Informationen und Optionen.\n" " Dieses APT hat Super-Kuh-Kräfte.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1513,7 +1513,12 @@ msgstr "Ungültige Archiv-Signatur" msgid "Error reading archive member header" msgstr "Fehler beim Lesen der Archivdatei-Kopfzeilen" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Ungültige Archivdatei-Kopfzeilen" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Ungültige Archivdatei-Kopfzeilen" @@ -1615,7 +1620,7 @@ msgstr "Datei %s/%s überschreibt die Datei in Paket %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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2159,81 +2164,81 @@ msgstr "" "Cache-Limit. Aktueller Wert: %lu. (Siehe auch man 5 apt.conf.)" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "%liT %liS %liMin %lis" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "%liS %liMin %lis" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "%liMin %lis" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "%lis" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Auswahl %s nicht gefunden" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Nicht erkannte Typabkürzung: »%c«" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Öffne Konfigurationsdatei %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntaxfehler %s:%u: Block fängt ohne Namen an." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntaxfehler %s:%u: Missgestaltetes Tag" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Syntaxfehler %s:%u: Zusätzlicher Müll nach Wert" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Syntaxfehler %s:%u: Direktiven können nur auf oberster Ebene benutzt werden" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntaxfehler %s:%u: Zu viele verschachtelte Einbindungen (include)" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntaxfehler %s:%u: Eingefügt von hier" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntaxfehler %s:%u: Nicht unterstützte Direktive »%s«" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntaxfehler %s:%u: Zusätzlicher Müll am Dateiende" @@ -2545,7 +2550,7 @@ msgstr "Typ »%s« ist unbekannt in Zeile %u der Quellliste %s" msgid "Malformed line %u in source list %s (vendor id)" msgstr "Missgestaltete Zeile %u in Quellliste %s (»vendor id«)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2958,12 +2963,12 @@ msgstr "" msgid "Installing %s" msgstr "Installiere %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Konfiguriere %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "%s wird entfernt" @@ -2973,58 +2978,58 @@ msgstr "%s wird entfernt" msgid "Running post-installation trigger %s" msgstr "Rufe Nach-Installations-Trigger %s auf" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Verzeichnis »%s« fehlt" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "%s wird vorbereitet" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "%s wird entpackt" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Konfiguration von %s wird vorbereitet" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "%s installiert" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Entfernen von %s wird vorbereitet" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "%s entfernt" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Komplettes Entfernen von %s wird vorbereitet" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "%s vollständig entfernt" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Kann Protokoll nicht schreiben, openpty() schlug fehl (/dev/pts nicht " "eingehangen?)\n" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/dz.po b/po/dz.po index 56bced6a4..93898ca70 100644 --- a/po/dz.po +++ b/po/dz.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po.pot\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2006-09-19 09:49+0530\n" "Last-Translator: Kinley Tshering \n" "Language-Team: Dzongkha \n" @@ -157,7 +157,7 @@ msgstr "%4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -659,7 +659,7 @@ msgstr "%s་ལུ་%s་བསྐྱར་མིང་བཏགས་ནི msgid "Y" msgstr "ཝའི།" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "རི་ཇེགསི་ཕྱོགས་སྒྲིག་འཛོལ་བ་- %s" @@ -822,11 +822,11 @@ msgstr "ཐུམ་སྒྲིལ་ཚུ་རྩ་བསྐྲད་བཏ msgid "Internal error, Ordering didn't finish" msgstr "ནང་འཁོད་འཛོལ་བ་ གོ་རིམ་བཟོ་ནི་ཚུ་མཇུག་མ་བསྡུ་བས།" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "ཕབ་ལེན་འབད་ནིའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབས་མ་ཚུགས་པས།" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "འབྱུང་ཁུངས་ཚུ་ཀྱི་ཐོ་ཡིག་དེ་ལྷག་མི་ཚུགས་པས།" @@ -857,7 +857,7 @@ msgstr "ཁ་སྐོང་གི་%sB་འདི་བཤུབ་པའི msgid "After this operation, %sB disk space will be freed.\n" msgstr "%sB་འདི་ཤུབ་པའི་ཤུལ་ལས་ཀྱི་བར་སྟོང་དེ་དལཝ་སྦེ་ལུས་འོང་།\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s་ནང་བར་སྟོང་" @@ -894,7 +894,7 @@ msgstr "བར་བཤོལ་འབད།" msgid "Do you want to continue [Y/n]? " msgstr "ཁྱོན་ཀྱི་འཕྲོ་མཐུད་ནི་འབད་ནི་ཨིན་ན་[Y/n]?" -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s་ ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།\n" @@ -903,7 +903,7 @@ msgstr "%s %s་ ལེན་ནི་ལུ་འཐུས་ཤོར་བ msgid "Some files failed to download" msgstr "ཡིག་སྣོད་ལ་ལུ་ཅིག་ཕབ་ལེན་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "ཕབ་ལེན་ཐབས་ལམ་རྐྱངམ་གཅིག་ནང་མཇུག་བསྡུཝ་སྦེ་རང་ཕབ་ལེན་འབད།" @@ -927,37 +927,37 @@ msgstr "བརླག་སྟོར་ཞུགས་ཡོད་པའི་ཐ msgid "Aborting install." msgstr "གཞི་བཙུགས་བར་བཤོལ་འབད་དོ།" -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "%s་གི་ཚབ་ལུ་%s་སེལ་འཐུ་འབད་ནི་སེམས་ཁར་བཞག\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "%s་གོམ་འགྱོ་འབད་དོ་ འདི་ཧེ་མ་ལས་རང་གཞི་བཙུགས་འབད་འོདཔ་དང་དུས་ཡར་བསྐྱེད་འབད་ནི་འདི་གཞི་སྒྲིག་མ་" "འབད་བས།\n" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "ཐུམ་སྒྲིལ་%s་འདི་གཞི་བཙུགས་མ་འབད་བས་ འདི་འབད་ནི་དི་གིས་རྩ་བསྐྲད་མ་གཏང་པས།་\n" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "གྱིས་བྱིན་ཏེ་ཡོད་པའི་ཐུམ་སྒྲིལ་%s་འདི་བར་ཅུ་ཡལ་ཐུམ་སྒྲིལ་ཅིག་ཨིན།\n" -#: cmdline/apt-get.cc:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [གཞི་བཙུགས་འབད་ཡོད།]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "ཁྱོད་ཀྱི་གཞི་བཙུགས་འབད་ནི་ལུ་གཏན་འཁལ་སྦེ་གཅིག་སེལ་འཐུ་འབད་དགོ" -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -968,74 +968,74 @@ msgstr "" "འདི་གིས་ཐུམ་སྒྲིལ་ཅིག་བརླག་སྟོར་ཞུགས་ཡོདཔ་ཨིནམ་སྟོནམ་ཨིནམ་དང་ ཕན་མེད་སྦེ་གནས་ཡོདཔ་ ཡང་ན་\n" "འདི་གཞན་འབྱུང་ཅིག་ནང་ལས་ལས་རྐྱངམ་ཅིག་འཐོབ་ཚུགསཔ་ཨིན་པས།\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "ག་དེ་སྦེ་ཨིན་རུང་འོག་གི་ཐུམ་སྒྲིལ་ཚུ་གིས་ འདི་ཚབ་བཙུགསཔ་ཨིན:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "ཐུམ་སྒྲིལ་%s་ལུ་གཞི་བཙུགས་ཀྱི་མི་ངོ་མིན་འདུག" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "%s ་ལོག་གཞི་བཙུགས་འབད་ནི་འདི་མི་སྲིད་པ་ཅིག་ཨིན་པས་ འདི་ཕབ་ལེན་འབད་མི་བཏུབ་པས།\n" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ་འདི་ཧེ་མ་ལས་རང་འཐོན་རིམ་གསར་ཤོས་ཅིག་ཨིན།\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "%sགི་དོན་ལུ་འཛིན་གྲོལ་'%s'་དེ་མ་འཐོབ་པས།" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "'%s'་གི་དོན་ལུ་འཐོན་རིམ་'%s'་དེ་མ་འཐོབ་པས།" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "(%s)གི་དོན་ལུ་སེལ་འཐུ་འབད་ཡོད་པའི་འཐོན་རིམ་'%s'(%s)\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "དུས་མཐུན་བཟོ་བའི་བརྡ་བཀོད་འདི་གིས་སྒྲུབ་རྟགས་ཚུ་མི་འབག་འབད།" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "ཐོ་བཀོད་འབད་ཡོད་པའི་སྣོད་ཡིག་འདི་ལྡེ་མིག་རྐྱབ་མ་ཚུགས།" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "འོག་གི་ཐུམ་སྒྲིས་གསརཔ་འདི་ཚུ་ཁཞི་བཙུགས་འབད་འོང་:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1051,44 +1051,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "འོག་གི་བརྡ་དོན་དེ་གིས་དུས་སྐབས་འདི་མོས་མཐུན་བཟོ་ནི་ལུ་གྲོགས་རམ་འབད་འོང་:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "ནང་འཁོད་འཛོལ་བ་ དཀའ་ངལ་མོས་མཐུན་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་ཐལ་ཡོད།" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "ནང་འགོད་འཛོལ་བ་ ཡར་བསྐྱེད་ཀྱི་ཅ་ཆས་ཆ་མཉམ་མེདཔ་ཐལ་ཡོད།" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, fuzzy, c-format msgid "Couldn't find task %s" msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "%s་ཐུམ་སྒྲིལ་འཚོལ་མ་ཐོབ།" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "དྲན་འཛིན་ རི་ཇེགསི་'%s'གི་དོན་ལུ་%s་སེལ་འཐུ་འབད་དོ།\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "འདི་འབདཝ་ད་%sའདི་གཞི་བཙུགས་འབད་ནི་ཨིན།" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "འདི་ཚུ་ནོར་བཅོས་འབད་ནིའི་དོན་ལུ་ཁྱོད་ཀྱི་`apt-get -f install'དེ་གཡོག་བཀོལ་དགོཔ་འོང་:" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1096,7 +1096,7 @@ msgstr "" "མ་ཚང་བའི་རྟེན་འབྲེལ་ ཐུས་སྒྲིལ་མེད་མི་ཚུ་དང་གཅིག་ཁར་ 'apt-get -f install'དེ་འབཐ་རྩོལ་བསྐྱེདཔ།" "(ཡང་ན་ཐབས་ཤེས་ཅིག་གསལ་བཀོད་འབད།)" -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1107,122 +1107,122 @@ msgstr "" "འབད་འབདཝ་འོང་ནི་མས་ ཡང་ན་ད་ལྟོ་ཡང་གསར་བསྐྲུན་མ་འབད་བར་ཡོད་པའི་ཐུམ་སྒྲིལ་ལ་ལུ་ཅིག་ཡང་ན་ནང་" "འབྱོར་གྱི་ཕྱི་ཁར་རྩ་བསྐྲད་བཏང་ཡོད་པའི་རྩ་བརྟན་མེད་པའི་བགོ་འགྲེམ་ཚུ་ལག་ལེན་འཐབ་དོ་ཡོདཔ་འོང་ནི་ཨིན་པས།" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "ཆད་པ་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ།" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "འོག་གི་ཐུམ་སྒྲིལ་ཐེབས་ཚུ་གཞི་བཙུགས་འབད་འོང་:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "བསམ་འཆར་བཀོད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "འོས་སྦྱོར་འབད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "ཡར་བསྐྱེད་རྩིས་བཏོན་དོ་... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "འཐུས་ཤོར་བྱུང་ཡོད།" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "འབད་ཚར་ཡི།" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "ནང་འཁོད་འཛོལ་བ་ དཀའ་ངལ་མོས་མཐུན་འབད་མི་ཅ་ཆས་ཚུ་མེདཔ་ཐལ་ཡོད།" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "གི་དོན་ལུ་འབྱུང་ཁུངས་ལེན་ནི་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་ལེན་དགོ" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "%s་གི་དོན་ལུ་འབྱུང་ཁུངས་ཐུམ་སྒྲིལ་ཅིག་འཚོལ་མ་འཐོབ" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "གོམ་འགྱོ་གིས་ཧེ་མ་ལས་རང་'%s'་ཡིག་སྣོད་དེ་ཕབ་ལེན་འབད་ནུག\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr " %s་ནང་ཁྱོད་ལུ་བར་སྟོང་ཚུ་ལངམ་སྦེ་མིན་འདུག་" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "%sB་ལེན་དགོཔ་འདུག་ འབྱུང་ཁུངས་ཡིག་མཛོད་ཀྱི་%sB།\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "འབྱུང་ཁུངས་ཡིག་མཛོད་ཚུ་ཀྱི་%sB་ལེན་དགོ་པསས།\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "%s་འབྱུང་ཁུངས་ལེན།\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "ཡིག་མཛོད་ལ་ལུ་ཅིག་ལེན་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོད།" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "%s་ནང་ཧེ་མ་ལས་སྦུང་ཚན་བཟོ་བཤོལ་ཨིན་མའི་སྦུང་ཚན་བཟོ་བཤོལ་གོམ་འགྱོ་འབད་དོ།\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "'%s'སྦུང་ཚན་བཟོ་བཤོལ་འཐུས་ཤོར་བྱུང་ཡོད།\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "'dpkg-dev'་ཐུམ་སྒྲིལ་དེ་གཞི་བཙུགས་འབད་ཡོད་པ་ཅིན་ཨེབ་གཏང་འབད།\n" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "'%s'་བཟོ་བརྩིགས་བརྡ་བཀོད་འཐུས་ཤོར་བྱུང་ཡོད།\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "ཆ་ལག་ལས་སྦྱོར་དེ་འཐུས་ཤོར་བྱུང་ནུག" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "builddeps ཞིབ་དཔྱད་འབད་ནིའི་དོན་ལུ་ཉུང་མཐའ་རང་ཐུམ་སྒྲིལ་གཅིག་གསལ་བཀོད་འབད་དགོ" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་བརྡ་དོན་དེ་ལེན་མ་ཚུགས།" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s ལུ་བཟོ་བརྩིགས་རྟེན་འབྲེལ་མིན་འདུག\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, 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:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1231,32 +1231,32 @@ msgstr "" "%s གི་དོན་ལུ་%s་རྟེན་འབྲེལ་འདི་གི་རེ་བ་སྐོང་མི་ཚུགས་ནུག་ག་ཅི་འབད་ཟེར་བ་ཅིན་ཐུམ་སྒརིལ་%s་གི་འཐོན་རིམ་" "ཚུ་འཐོབ་མ་ཚུགསཔ་ལས་བརྟེན་འཐོན་རིམ་དགོས་མཁོ་ཚུ་གི་རེ་བ་དོ་སྐོང་མ་ཚུགས་པས།" -#: cmdline/apt-get.cc:2551 +#: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "%s:གི་དོན་ལུ་%s་རྟེན་འབྲེལ་དེ་གི་རེ་བ་སྐོང་ནི་འདི་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན་ གཞི་བཙུགས་འབད་ཡོད་པའི་ཐུམ་" "སྒྲིལ་%s་དེ་གནམ་མེད་ས་མེད་གསརཔ་ཨིན་པས།" -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%s: %s་གི་དོན་ལུ་་%s་རྟེན་འབྲེལ་འདི་ངལ་རངས་འབད་ནི་འཐུས་ཤོར་བྱུང་ནུག" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr " %s་གི་དོན་ལུ་བཟོ་བརྩིགས་-རྟེན་འབྲེལ་འདི་ངལ་རངས་མ་ཚུགས་པས།" -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "བཟོ་བརྩིགས་རྟེན་འབྲེལ་འདི་ལས་སྦྱོར་འབད་ནི་ལུ་འཐུས་ཤོར་བྱུང་ཡོདཔ་ཨིན།" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "རྒྱབ་སྐྱོར་འབད་ཡོད་པའི་ཚད་གཞི་ཚུ:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1343,7 +1343,7 @@ msgstr "" "ཤོག་ལེབ་ཚུ་ལུ་བལྟ།\n" " འ་ནི་ ཨེ་ཊི་པི་འདི་ལུ་ཡང་དག་ ཀའུ་ ནུས་ཤུགས་ཚུ་ཡོད།\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1485,7 +1485,12 @@ msgstr "ནུས་མེད་ཡིག་མཛོད་ཀྱི་མིང msgid "Error reading archive member header" msgstr "ཡིག་མཛོད་འཐུས་མི་མགོ་ཡིག་ལྷག་ནིའི་འཛོལ་བ།" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "ནུས་མེད་ཡིག་མཛོད་འཐུས་མི་གི་མགོ་ཡིག་" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "ནུས་མེད་ཡིག་མཛོད་འཐུས་མི་གི་མགོ་ཡིག་" @@ -1587,7 +1592,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2121,80 +2126,80 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "སེལ་འཐུ་%s ་མ་འཐོབ།" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "ངོ་མ་ཤེས་པའི་སྡུད་ཚིག་གི་དབྱེ་བ:'%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "རིམ་སྒྲིག་ཡིག་སྣོད་%s་འདི་ཁ་ཕྱེ་དོ།" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "་ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: སྡེབ་ཚན་གྱིས་མིང་མེད་མི་དང་གཅིག་ཁར་འགོ་བཙུགསཔ་ཨིན" -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཟོ་ཉེས་འགྱུར་བའི་ངོ་རྟགས།" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:གནས་གོང་གི་ཤུལ་ལས་མཁོ་མེད་ཐེབས།" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:བཀོད་རྒྱ་ཚུ་ཆེ་རིམ་ནང་རྐྱངམ་ཅིག་བྱིན་ཚུགས།" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u:འདུ་འཛོམས་འབད་འབདཝ་ལེ་ཤཱ་གྲངས་སུ་བཙུགསཔ་ཨིན།" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: ནཱ་ལས་རང་འགོ་བཙུགས་གྲངས་སུ་བཙུགས་ཏེ་ཡོད།" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: རྒྱབ་སྐྱོར་མ་འབད་བར་ཡོད་པའི་'%s'བཀོད་རྒྱ།" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "ཚིག་སྦྱོར་འཛོལ་བ་%s:%u: ཡིག་སྣོད་ཀྱི་མཇུག་ལུ་མཁོ་མེད་ཐེབས།" @@ -2507,7 +2512,7 @@ msgstr "དབྱེ་བ་'%s'་འདི་གྲལ་ཐིག་%u་ག msgid "Malformed line %u in source list %s (vendor id)" msgstr "བཟོ་ཉེས་འགྱུར་བའི་གྲལ་ཐིག་%u་ འབྱུང་ཁུངས་ཐོ་ཡིག་%s(སིལ་ཚོང་པ་ ཨའི་ཌི)གི་ནང་ན།" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2906,12 +2911,12 @@ msgstr "" msgid "Installing %s" msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%s།" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "%s་རིམ་སྒྲིག་འབད་དོ།" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "%s་རྩ་བསྐྲད་གཏང་དོ།" @@ -2921,56 +2926,56 @@ msgstr "%s་རྩ་བསྐྲད་གཏང་དོ།" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "ཐོ་བཀོད་འབད་མི་སྣོད་ཐོ་%s་ཆ་ཤས་འདི་བརླག་སྟོར་ཟུགས་ཏེ་འདུག" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "%s་ གྲ་སྒྲིག་འབད་དོ།" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr " %s་ གི་སྦུང་ཚན་བཟོ་བཤོལ་འབད་དོ།" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "%s་ རིམ་སྒྲིག་ལུ་གྲ་སྒྲིག་འབད་དོ།" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་%s།" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "%s་ རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོ།" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "རྩ་བསྐྲད་བཏང་ཡོད་པའི་%s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་གཏང་ནིའི་དོན་ལུ་གྲ་སྒྲིག་འབད་དོ།" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "%s མཇུག་བསྡུཝ་སྦེ་རང་རྩ་བསྐྲད་བཏང་ཡོད།" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/el.po b/po/el.po index 189b7424f..a9bb25404 100644 --- a/po/el.po +++ b/po/el.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_el\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2008-08-26 18:25+0300\n" "Last-Translator: quad-nrg.net \n" "Language-Team: Greek \n" @@ -163,7 +163,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s για %s είναι μεταγλωττισμένο σε %s %s\n" @@ -667,7 +667,7 @@ msgstr "Αποτυχία μετονομασίας του %s σε %s" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "σφάλμα μεταγλωτισμου - %s" @@ -831,11 +831,11 @@ msgstr "" msgid "Internal error, Ordering didn't finish" msgstr "Εσωτερικό Σφάλμα, η Ταξινόμηση δεν ολοκληρώθηκε" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Αδύνατο το κλείδωμα του καταλόγου μεταφόρτωσης" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Αδύνατη η ανάγνωση της λίστας πηγών." @@ -867,7 +867,7 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Μετά από αυτή τη λειτουργία, θα ελευθερωθούν %sB χώρου από το δίσκο.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Δεν μπόρεσα να προσδιορίσω τον ελεύθερο χώρο στο %s" @@ -904,7 +904,7 @@ msgstr "Εγκατάλειψη." msgid "Do you want to continue [Y/n]? " msgstr "Θέλετε να συνεχίσετε [Ν/ο]; " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Αποτυχία ανάκτησης του %s %s\n" @@ -913,7 +913,7 @@ msgstr "Αποτυχία ανάκτησης του %s %s\n" msgid "Some files failed to download" msgstr "Για μερικά αρχεία απέτυχε η μεταφόρτωση" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Ολοκληρώθηκε η μεταφόρτωση μόνο" @@ -938,36 +938,36 @@ msgstr "Αδύνατη η επίλυση των χαμένων πακέτων." msgid "Aborting install." msgstr "Εγκατάλειψη της εγκατάστασης." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Σημείωση, επιλέχθηκε το %s αντί του%s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "Παράκαμψη του %s, είναι εγκατεστημένο και η αναβάθμιση δεν έχει οριστεί.\n" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Το πακέτο %s δεν είναι εγκατεστημένο και δεν θα αφαιρεθεί\n" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Το πακέτο %s είναι εικονικό και παρέχεται από τα:\n" -#: cmdline/apt-get.cc:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Εγκατεστημένα]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Θα πρέπει επακριβώς να επιλέξετε ένα για εγκατάσταση." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -979,76 +979,76 @@ msgstr "" "Αυτό σημαίνει ότι το πακέτο αυτό λείπει, είναι παλαιωμένο, ή είναι διαθέσιμο " "από άλλη πηγή\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Πάραυτα το ακόλουθο πακέτο το αντικαθιστά:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Το πακέτο %s δεν είναι υποψήφιο για εγκατάσταση" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" "Η επανεγκατάσταση του %s δεν είναι εφικτή, δεν είναι δυνατή η μεταφόρτωσή " "του\n" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "το %s είναι ήδη η τελευταία έκδοση.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Η έκδοση %s για το %s δεν βρέθηκε" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Η έκδοση %s για το %s δεν βρέθηκε" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Επιλέχθηκε η έκδοση %s (%s) για το%s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Η εντολή update δεν παίρνει ορίσματα" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Αδύνατο το κλείδωμα του καταλόγου" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "Δεν επιτρέπεται οποιαδήποτε διαγραφή· αδυναμία εκκίνησης του AutoRemover" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χρειάζονται πλέον:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "Τα ακόλουθα πακέτα εγκαταστάθηκαν αυτόματα και δεν χρειάζονται πλέον:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Χρησιμοποιήστε 'apt-get autoremove' για να τα διαγράψετε." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1066,43 +1066,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "Οι ακόλουθες πληροφορίες ίσως βοηθήσουν στην επίλυση του προβλήματος:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Εσωτερικό Σφάλμα, το AutoRemover δημιούργησε κάποιο πρόβλημα" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Εσωτερικό Σφάλμα, η διαδικασία αναβάθμισης χάλασε" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Αδύνατη η εύρεση του συνόλου πακέτων %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Αδύνατη η εύρεση του πακέτου %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Σημείωση, επιλέχτηκε το %s στη θέση του '%s'\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "το %s έχει εγκατασταθεί με το χέρι\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "Aν τρέξετε 'apt-get -f install' ίσως να διορθώσετε αυτά τα προβλήματα:" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1110,7 +1110,7 @@ msgstr "" "Ανεπίλυτες εξαρτήσεις. Δοκιμάστε 'apt-get -f install' χωρίς να ορίσετε " "πακέτο (ή καθορίστε μια λύση)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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,120 +1122,120 @@ msgstr "" "διανομή, ότι μερικά από τα πακέτα δεν έχουν ακόμα δημιουργηθεί ή έχουν\n" "μετακινηθεί από τα εισερχόμενα." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Χαλασμένα πακέτα" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Τα ακόλουθα επιπλέον πακέτα θα εγκατασταθούν:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Προτεινόμενα πακέτα:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Συνιστώμενα πακέτα:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Υπολογισμός της αναβάθμισης... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Απέτυχε" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Ετοιμο" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "" "Εσωτερικό Σφάλμα, η προσπάθεια επίλυσης του προβλήματος \"έσπασε\" κάποιο " "υλικό" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "" "Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για να μεταφορτώσετε τον " "κωδικάτου" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Αδυναμία εντοπισμού του κώδικά του πακέτου %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Παράκαμψη του ήδη μεταφορτωμένου αρχείου `%s`\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "Δεν διαθέτετε αρκετό ελεύθερο χώρο στο %s" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Χρειάζεται να μεταφορτωθούν %sB/%sB πηγαίου κώδικα.\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Χρειάζεται να μεταφορτωθούν %sB πηγαίου κώδικα.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Μεταφόρτωση Κωδικα %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Αποτυχία μεταφόρτωσης μερικών αρχειοθηκών." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Παράκαμψη της αποσυμπίεσης ήδη μεταφορτωμένου κώδικα στο %s\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Απέτυχε η εντολή αποσυμπίεσης %s\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Ελέγξτε αν είναι εγκαταστημένο το πακέτο 'dpkg-dev'.\n" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Απέτυχε η εντολή χτισίματος %s.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Η απογονική διεργασία απέτυχε" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "" "Θα πρέπει να καθορίσετε τουλάχιστον ένα πακέτο για έλεγχο των εξαρτήσεων του" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Αδύνατη η εύρεση πληροφοριών χτισίματος για το %s" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "το %s δεν έχει εξαρτήσεις χτισίματος.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1243,7 +1243,7 @@ msgid "" msgstr "" "%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή το πακέτο %s δεν βρέθηκε" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1252,32 +1252,32 @@ msgstr "" "%s εξαρτήσεις για το %s δεν ικανοποιούνται επειδή δεν υπάρχουν διαθέσιμες " "εκδόσεις του πακέτου %s που να ικανοποιούν τις απαιτήσεις έκδοσης" -#: cmdline/apt-get.cc:2551 +#: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Αποτυχία ικανοποίησης %s εξαρτήσεων για το %s: Το εγκατεστημένο πακέτο %s " "είναι νεώτερο" -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Αποτυχία ικανοποίησης %s εξάρτησης για το %s: %s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Οι εξαρτήσεις χτισίματος για το %s δεν ικανοποιούνται." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Αποτυχία επεξεργασίας εξαρτήσεων χτισίματος" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Υποστηριζόμενοι Οδηγοί:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1360,7 +1360,7 @@ msgstr "" "για περισσότερες πληροφορίες και επιλογές.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1501,7 +1501,12 @@ msgstr "Μη έγκυρη υπογραφή αρχειοθήκης" msgid "Error reading archive member header" msgstr "Σφάλμα κατά την ανάγνωση της επικεφαλίδας του μέλους της αρχειοθήκης" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Μη έγκυρη επικεφαλίδα μέλος της αρχειοθήκης" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Μη έγκυρη επικεφαλίδα μέλος της αρχειοθήκης" @@ -1603,7 +1608,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2139,81 +2144,81 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Η επιλογή %s δε βρέθηκε" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Μη αναγνωρισμένος τύπος σύντμησης: '%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Άνοιγμα του αρχείου ρυθμίσεων %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Συντακτικό σφάλμα %s:%u: Το block αρχίζει χωρίς όνομα." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Συντακτικό σφάλμα %s:%u: Λάθος μορφή Ετικέτας (Tag)" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Συντακτικό σφάλμα %s:%u: Άχρηστοι χαρακτήρες μετά την τιμή" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Συντακτικό σφάλμα %s:%u: Οι οδηγίες βρίσκονται μόνο στο ανώτατο επίπεδο" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Συντακτικό σφάλμα %s:%u: Υπερβολικός αριθμός συνδυασμένων includes" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Συντακτικό σφάλμα %s:%u: Συμπεριλαμβάνεται από εδώ" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Συντακτικό σφάλμα %s:%u: Μη υποστηριζόμενη εντολή '%s'" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Συντακτικό σφάλμα %s:%u: Άχρηστοι χαρακτήρες στο τέλος του αρχείου" @@ -2528,7 +2533,7 @@ msgstr "Ο τύπος '%s' στη γραμμή %u στη λίστα πηγών % msgid "Malformed line %u in source list %s (vendor id)" msgstr "Λάθος μορφή της γραμμής %u στη λίστα πηγών %s (id κατασκευαστή)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2933,12 +2938,12 @@ msgstr "Εγιναν %i εγγραφές με %i απώντα αρχεία κα msgid "Installing %s" msgstr "Εγκατάσταση του %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Ρύθμιση του %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Αφαιρώ το %s" @@ -2948,58 +2953,58 @@ msgstr "Αφαιρώ το %s" msgid "Running post-installation trigger %s" msgstr "Εκτέλεση του post-installation trigger %s" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Ο φάκελος %s αγνοείται." -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Προετοιμασία του %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Ξεπακετάρισμα του %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Προετοιμασία ρύθμισης του %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "Έγινε εγκατάσταση του %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Προετοιμασία για την αφαίρεση του %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "Αφαίρεσα το %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Προετοιμασία πλήρης αφαίρεσης του %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "Το %s διαγράφηκε πλήρως" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Αδυναμία εγγραφής στο αρχείο γεγονότων, λόγω αποτυχίας του openpyt() (είναι " "προσαρτημένο το /dev/pts;)\n" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/en_GB.po b/po/en_GB.po index 293312597..96b6c5219 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2008-11-13 11:47+0000\n" "Last-Translator: Neil Williams \n" "Language-Team: en_GB \n" @@ -151,7 +151,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s for %s compiled on %s %s\n" @@ -646,7 +646,7 @@ msgstr "Failed to rename %s to %s" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Regex compilation error - %s" @@ -807,11 +807,11 @@ msgstr "Packages need to be removed but remove is disabled." msgid "Internal error, Ordering didn't finish" msgstr "Internal error, Ordering didn't finish" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Unable to lock the download directory" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "The list of sources could not be read." @@ -840,7 +840,7 @@ msgstr "After this operation, %sB of additional disk space will be used.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "After this operation, %sB disk space will be freed.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Couldn't determine free space in %s" @@ -877,7 +877,7 @@ msgstr "Abort." msgid "Do you want to continue [Y/n]? " msgstr "Do you want to continue [Y/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Failed to fetch %s %s\n" @@ -886,7 +886,7 @@ msgstr "Failed to fetch %s %s\n" msgid "Some files failed to download" msgstr "Some files failed to download" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Download complete and in download only mode" @@ -910,35 +910,35 @@ msgstr "Unable to correct missing packages." msgid "Aborting install." msgstr "Aborting install." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Note, selecting %s instead of %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "Skipping %s, it is already installed and upgrade is not set.\n" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Package %s is not installed, so not removed\n" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Package %s is a virtual package provided by:\n" -#: cmdline/apt-get.cc:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Installed]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "You should explicitly select one to install." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -949,58 +949,58 @@ msgstr "" "This may mean that the package is missing, has been obsoleted, or\n" "is only available from another source\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "However the following packages replace it:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Package %s has no installation candidate" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Reinstallation of %s is not possible, it cannot be downloaded.\n" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s is already the newest version.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Release ‘%s’ for ‘%s’ was not found" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Version ‘%s’ for ‘%s’ was not found" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Selected version %s (%s) for %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "The update command takes no arguments" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Unable to lock the list directory" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "We are not supposed to delete stuff, cannot start AutoRemover" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1008,18 +1008,18 @@ msgstr "" "The following packages were automatically installed and are no longer " "required:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" "The following packages were automatically installed and are no longer " "required:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Use 'apt-get autoremove' to remove them." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1037,43 +1037,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "The following information may help to resolve the situation:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Internal Error, AutoRemoved broke stuff" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Internal error, AllUpgrade broke stuff" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Couldn't find task %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Couldn't find package %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Note, selecting %s for regex ‘%s’\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s set to manually installed.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "You might want to run 'apt-get -f install' to correct these:" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1081,7 +1081,7 @@ msgstr "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1093,116 +1093,116 @@ msgstr "" "distribution that some required packages have not yet been created\n" "or been moved out of Incoming." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Broken packages" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "The following extra packages will be installed:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Suggested packages:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Recommended packages:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Calculating upgrade... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Failed" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Done" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Internal error, problem resolver broke stuff" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "Must specify at least one package for which to fetch source" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Unable to find a source package for %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Skipping already downloaded file '%s'\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "You don't have enough free space in %s" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Need to get %sB/%sB of source archives.\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Need to get %sB of source archives.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Fetch source %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Failed to fetch some archives." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Skipping unpack of already unpacked source in %s\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Unpack command ‘%s’ failed.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Check if the 'dpkg-dev' package is installed.\n" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Build command ‘%s’ failed.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Child process failed" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "" "Must specify at least one package for which you want to check builddeps" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Unable to get build-dependency information for %s" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s has no build depends.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1211,7 +1211,7 @@ msgstr "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1220,31 +1220,31 @@ msgstr "" "%s dependency for %s cannot be satisfied because no available versions of " "package %s can satisfy version requirements" -#: cmdline/apt-get.cc:2551 +#: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Failed to satisfy %s dependency for %s: Installed package %s is too new" -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Failed to satisfy %s dependency for %s: %s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Build-dependencies for %s could not be satisfied." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Failed to process build dependencies" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Supported modules:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1329,7 +1329,7 @@ msgstr "" "pages for more information and options.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1466,7 +1466,12 @@ msgstr "Invalid archive signature" msgid "Error reading archive member header" msgstr "Error reading archive member header" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Invalid archive member header" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Invalid archive member header" @@ -1568,7 +1573,7 @@ msgstr "File %s/%s overwrites the one in the package %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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2098,80 +2103,80 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Selection %s not found" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Unrecognized type abbreviation: ‘%c’" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Opening configuration file %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntax error %s:%u: Block starts with no name." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntax error %s:%u: Malformed tag" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Syntax error %s:%u: Extra junk after value" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "Syntax error %s:%u: Directives can only be done at the top level" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntax error %s:%u: Too many nested includes" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntax error %s:%u: Included from here" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntax error %s:%u: Unsupported directive ‘%s’" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntax error %s:%u: Extra junk at end of file" @@ -2482,7 +2487,7 @@ msgstr "Type ‘%s’ is not known on line %u in source list %s" msgid "Malformed line %u in source list %s (vendor id)" msgstr "Malformed line %u in source list %s (vendor id)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2876,12 +2881,12 @@ msgstr "Wrote %i records with %i missing files and %i mismatched files\n" msgid "Installing %s" msgstr "Installing %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Configuring %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Removing %s" @@ -2891,56 +2896,56 @@ msgstr "Removing %s" msgid "Running post-installation trigger %s" msgstr "Running post-installation trigger %s" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Directory '%s' missing." -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Preparing %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Unpacking %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Preparing to configure %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "Installed %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Preparing for removal of %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "Removed %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Preparing to completely remove %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "Completely removed %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "Can not write log, openpty() failed (/dev/pts not mounted?)\n" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/es.po b/po/es.po index fe9de20fc..3116b8173 100644 --- a/po/es.po +++ b/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2008-11-15 21:52+0100\n" "Last-Translator: Javier Fernandez-Sanguino \n" "Language-Team: Debian Spanish \n" @@ -155,7 +155,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -661,7 +661,7 @@ msgstr "Fall msgid "Y" msgstr "S" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Error de compilacin de expresiones regulares - %s" @@ -822,11 +822,11 @@ msgstr "Los paquetes necesitan eliminarse pero Remove est msgid "Internal error, Ordering didn't finish" msgstr "Error interno, no termin el ordenamiento" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "No se puede bloquear el directorio de descarga" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "No se pudieron leer las listas de fuentes." @@ -858,7 +858,7 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Se liberarn %sB despus de esta operacin.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "No pude determinar el espacio libre en %s" @@ -895,7 +895,7 @@ msgstr "Abortado." msgid "Do you want to continue [Y/n]? " msgstr "Desea continuar [S/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Imposible obtener %s %s\n" @@ -904,7 +904,7 @@ msgstr "Imposible obtener %s %s\n" msgid "Some files failed to download" msgstr "Algunos archivos no pudieron descargarse" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Descarga completa y en modo de slo descarga" @@ -928,35 +928,35 @@ msgstr "No se pudieron corregir los paquetes que faltan." msgid "Aborting install." msgstr "Abortando la instalacin." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Nota, seleccionando %s en lugar de %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "Ignorando %s, ya esta instalado y la actualizacin no esta activada.\n" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Instalado]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Necesita seleccionar explcitamente uno para instalar." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -967,59 +967,59 @@ msgstr "" "a l. Esto puede significar que el paquete falta, est obsoleto o slo se\n" "encuentra disponible desde alguna otra fuente\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Sin embargo, los siguientes paquetes lo reemplazan:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "El paquete %s no tiene candidato para su instalacin" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ya est en su versin ms reciente.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "No se encontr la Distribucin '%s' para '%s'" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "No se encontr la versin '%s' para '%s'" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Versin seleccionada %s (%s) para %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "El comando de actualizacin no toma argumentos" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "No se pudo bloquear el directorio de listas" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 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:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1027,18 +1027,18 @@ msgstr "" "Se instalaron de forma automtica los siguientes paquetes y ya no son " "necesarios." -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" "Se instalaron de forma automtica los siguientes paquetes y ya no son " "necesarios." -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Utilice apt-get autoremove para eliminarlos." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1056,43 +1056,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "La siguiente informacin puede ayudar a resolver la situacin:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Error interno, AutoRemover rompi cosas" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Error Interno, AllUpgrade rompi cosas" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "No se pudo encontrar la tarea %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "No se pudo encontrar el paquete %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Nota, seleccionando %s para la expresin regular '%s'\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "fijado %s como instalado manualmente.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 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:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1100,7 +1100,7 @@ msgstr "" "Dependencias incumplidas. Intente 'apt-get -f install' sin paquetes (o " "especifique una solucin)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1112,119 +1112,119 @@ msgstr "" "inestable, que algunos paquetes necesarios no han sido creados o han\n" "sido movidos fuera de Incoming." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Paquetes rotos" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Se instalarn los siguientes paquetes extras:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Paquetes sugeridos:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Paquetes recomendados" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Calculando la actualizacin... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Fall" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Listo" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "" "Error interno, el sistema de solucin de problemas rompi\n" "algunas cosas" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "Debe especificar al menos un paquete para obtener su cdigo fuente" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, 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:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Ignorando fichero ya descargado '%s'\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "No tiene suficiente espacio libre en %s" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, 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:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Necesito descargar %sB de archivos fuente.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Fuente obtenida %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "No se pudieron obtener algunos archivos." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, 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:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Fall la orden de desempaquetamiento '%s'.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, 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:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Fall la orden de construccin '%s'.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Fall el proceso hijo" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "" "Debe especificar al menos un paquete para verificar sus\n" "dependencias de construccin" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "No se pudo obtener informacin de dependencias de construccin para %s" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s no tiene dependencias de construccin.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1233,7 +1233,7 @@ msgstr "" "La dependencia %s en %s no puede satisfacerse porque no se puede \n" "encontrar el paquete %s" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1242,32 +1242,32 @@ msgstr "" "La dependencia %s en %s no puede satisfacerse porque ninguna versin\n" "disponible del paquete %s satisface los requisitos de versin" -#: cmdline/apt-get.cc:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, 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:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "No se pudieron satisfacer las dependencias de construccin de %s." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "No se pudieron procesar las dependencias de construccin" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Mdulos soportados:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1353,7 +1353,7 @@ msgstr "" "para ms informacin y opciones.\n" " Este APT tiene poderes de Super Vaca.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1496,7 +1496,12 @@ msgstr "Firma del archivo inv msgid "Error reading archive member header" msgstr "Error leyendo la cabecera de miembro del archivo" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Cabecera de miembro del archivo invlida" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Cabecera de miembro del archivo invlida" @@ -1598,7 +1603,7 @@ msgstr "El archivo %s/%s sobreescribe al que est #. 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2131,82 +2136,82 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Seleccin %s no encontrada" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Tipo de abreviacin no reconocida: '%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Abriendo fichero de configuracin %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Error de sintaxis %s:%u: No hay un nombre al comienzo del bloque." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Error de sintaxis %s:%u: Marca mal formada" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Error de sintaxis %s:%u: Basura extra despus del valor" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Error de sintaxis %s:%u: Las directivas slo se pueden poner\n" "en el primer nivel" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Error de sintaxis %s:%u: Demasiadas inclusiones anidadas" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Error de sintaxis %s:%u: Incluido desde aqu" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Error de sintaxis %s:%u: Directiva '%s' no soportada" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Error de sintaxis %s:%u: Basura extra al final del archivo" @@ -2519,7 +2524,7 @@ msgstr "Tipo '%s' desconocido en la l msgid "Malformed line %u in source list %s (vendor id)" msgstr "Lnea %u mal formada en la lista de fuentes %s (id del fabricante)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2933,12 +2938,12 @@ msgstr "" msgid "Installing %s" msgstr "Instalando %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Configurando %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Eliminando %s" @@ -2948,58 +2953,58 @@ msgstr "Eliminando %s" msgid "Running post-installation trigger %s" msgstr "Ejecutando disparador post-instalacin %s" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Falta el directorio '%s'." -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Preparando %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Desempaquetando %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Preparndose para configurar %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "%s instalado" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Preparndose para eliminar %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "%s eliminado" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Preparndose para eliminar completamente %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "Se borr completamente %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 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:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/eu.po b/po/eu.po index 35c1d1423..524168711 100644 --- a/po/eu.po +++ b/po/eu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_eu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2009-05-17 00:41+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Euskara \n" @@ -155,7 +155,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -649,7 +649,7 @@ msgstr "Huts egin du %s izenaren ordez %s ipintzean" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Adierazpen erregularren konpilazio errorea - %s" @@ -810,11 +810,11 @@ msgstr "Paketeak ezabatu beharra dute baina Ezabatzea ezgaiturik dago." msgid "Internal error, Ordering didn't finish" msgstr "Barne errorea, ez da ordenatzeaz amaitu" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Ezin da deskarga direktorioa blokeatu" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Ezin izan da Iturburu zerrenda irakurri." @@ -845,7 +845,7 @@ msgstr "Ekintza honen ondoren, %sB gehiago erabiliko dira diskoan.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Ekintza honen ondoren, %sB libratuko dira diskoan.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Ezin da %s(e)n duzun leku librea atzeman." @@ -882,7 +882,7 @@ msgstr "Abortatu." msgid "Do you want to continue [Y/n]? " msgstr "Aurrera jarraitu nahi al duzu [B/e]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ezin da lortu %s %s\n" @@ -891,7 +891,7 @@ msgstr "Ezin da lortu %s %s\n" msgid "Some files failed to download" msgstr "Fitxategi batzuk ezin izan dira deskargatu" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Deskarga amaituta eta deskarga soileko moduan" @@ -915,35 +915,35 @@ msgstr "Falta diren paketeak ezin dira zuzendu." msgid "Aborting install." msgstr "Abortatu instalazioa." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Oharra, %s hautatzen %s(r)en ordez\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, 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:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Instalatuta]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Zehazki bat hautatu behar duzu instalatzeko." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -954,58 +954,58 @@ 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:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Baina ondorengo paketeek ordezten dute:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "%s paketeak ez du instalatzeko hautagairik" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s bertsiorik berriena da jada.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "'%2$s'(r)en '%1$s' banaketa ez da aurkitu" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "'%2$s'(r)en '%1$s' bertsioa ez da aurkitu" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Hautatutako bertsioa: %s (%s) -- %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Eguneratzeko komandoak ez du argumenturik hartzen" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Ezin da zerrenda direktorioa blokeatu" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 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:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1013,18 +1013,18 @@ msgstr "" "Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " "behar." -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" "Ondorengo pakete automatikoki instalatuak izan ziren eta ez dira luzaroago " "behar." -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "'apt-get autoremove' erabili ezabatzeko." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1042,43 +1042,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "Informazio honek arazoa konpontzen lagun dezake:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Barne Errorea, AutoRemover-ek zerbait apurtu du" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Barne Errorea, AllUpgade-k zerbait apurtu du" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Ezin izan da %s zeregina aurkitu" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Ezin izan da %s paketea aurkitu" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Oharra: %s hautatzen '%s' adierazpen erregularrarentzat\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s eskuz instalatua bezala ezarri.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 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:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1086,7 +1086,7 @@ msgstr "" "Bete gabeko mendekotasunak. Probatu 'apt-get -f install' paketerik gabe (edo " "zehaztu konponbide bat)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1098,117 +1098,117 @@ msgstr "" "beharrezko pakete batzuk ez ziren sortuko oraindik, edo \n" "Sarrerakoetan (Incoming) egoten jarraituko dute." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Hautsitako paketeak" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Ondorengo pakete gehigarriak instalatuko dira:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Iradokitako paketeak:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Gomendatutako paketeak:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Berriketak kalkulatzen... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Huts egin du" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Eginda" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Barne Errorea, arazo konpontzaileak zerbait apurtu du" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "Gutxienez pakete bat zehaztu behar duzu iturburua lortzeko" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Ezin da iturburu paketerik aurkitu %s(r)entzat" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Dagoeneko deskargaturiko '%s' fitxategia saltatzen\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, 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:2229 +#: cmdline/apt-get.cc:2254 #, 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:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Iturburu artxiboetako %sB eskuratu behar dira.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Eskuratu %s iturburua\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Huts egin du zenbat artxibo lortzean." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, 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:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Deskonprimitzeko '%s' komandoak huts egin du.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Egiaztatu 'dpkg-dev' paketea instalaturik dagoen.\n" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Eraikitzeko '%s' komandoak huts egin du.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Prozesu umeak huts egin du" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 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:2390 +#: cmdline/apt-get.cc:2415 #, 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:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s: ez du eraikitze mendekotasunik.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1216,7 +1216,7 @@ msgid "" msgstr "" "%2$s(r)en %1$s mendekotasuna ezin da bete, %3$s paketea ezin delako aurkitu" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1225,32 +1225,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:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, 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:2594 +#: cmdline/apt-get.cc:2619 #, 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:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Huts egin du eraikitze mendekotasunak prozesatzean" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Onartutako Moduluak:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1335,7 +1335,7 @@ msgstr "" "sources.list(5) eta apt.conf(5) orrialdeak eskuliburuan.\n" " APT honek Super Behiaren Ahalmenak ditu.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1473,7 +1473,12 @@ msgstr "Artxibo sinadura baliogabea" msgid "Error reading archive member header" msgstr "Errorea artxiboko kidearen goiburua irakurtzean" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Artxiboko kidearen goiburua baliogabea da" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Artxiboko kidearen goiburua baliogabea da" @@ -1575,7 +1580,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2112,80 +2117,80 @@ msgstr "" "balioa: %lu. (man 5 apt.conf)" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "%s hautapena ez da aurkitu" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Mota ezezaguneko laburtzapena: '%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "%s konfigurazio fitxategia irekitzen" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Sintaxi errorea, %s:%u: Blokearen hasieran ez dago izenik." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Sintaxi errorea %s:%u: Gaizki eratutako" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Sintaxi errorea, %s:%u: Zabor gehigarria balioaren ondoren" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "Sintaxi errorea, %s:%u: Direktibak goi-mailan bakarrik egin daitezke" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Sintaxi errorea, %s:%u: habiaratutako elementu gehiegi" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Sintaxi errorea, %s:%u: hemendik barne hartuta" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Sintaxi errorea, %s:%u: onartu gabeko '%s' direktiba" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Sintaxi errorea, %s:%u: Zabor gehigarria fitxategi amaieran" @@ -2500,7 +2505,7 @@ msgstr "'%s' mota ez da ezagutzen %u lerroan %s Iturburu zerrendan" msgid "Malformed line %u in source list %s (vendor id)" msgstr "Gaizki osatutako %u lerroa %s Iturburu zerrendan (hornitzaile id-a)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2896,12 +2901,12 @@ msgstr "" msgid "Installing %s" msgstr "%s Instalatzen" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "%s konfiguratzen" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "%s kentzen" @@ -2911,58 +2916,58 @@ msgstr "%s kentzen" msgid "Running post-installation trigger %s" msgstr "Inbstalazio-ondorengo %s abiarazlea exekutatzen" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "'%s' direktorioa falta da" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "%s prestatzen" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "%s irekitzen" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "%s konfiguratzeko prestatzen" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "%s Instalatuta" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "%s kentzeko prestatzen" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "%s kendurik" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "%s guztiz ezabatzeko prestatzen" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "%s guztiz ezabatu da" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 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:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/fi.po b/po/fi.po index 1c0e7ee0e..ca0d2e84d 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2008-12-11 14:52+0200\n" "Last-Translator: Tapio Lehtonen \n" "Language-Team: Finnish \n" @@ -153,7 +153,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -650,7 +650,7 @@ msgstr "Nimen muuttaminen %s -> %s ei onnistunut" msgid "Y" msgstr "K" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Käännösvirhe lausekkeessa - %s" @@ -811,11 +811,11 @@ msgstr "Paketteja pitäisi poistaa mutta Remove ei ole käytössä." msgid "Internal error, Ordering didn't finish" msgstr "Tapahtui sisäinen virhe, järjestäminen keskeytyi" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Noutokansiota ei saatu lukittua" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Lähteiden luetteloa ei pystynyt lukemaan." @@ -845,7 +845,7 @@ msgstr "Toiminnon jälkeen käytetään %s t lisää levytilaa.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Toiminnon jälkeen vapautuu %s t levytilaa.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kansion %s vapaan tilan määrä ei selvinnyt" @@ -883,7 +883,7 @@ msgstr "Keskeytä." msgid "Do you want to continue [Y/n]? " msgstr "Haluatko jatkaa [K/e]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Tiedoston %s nouto ei onnistunut %s\n" @@ -892,7 +892,7 @@ msgstr "Tiedoston %s nouto ei onnistunut %s\n" msgid "Some files failed to download" msgstr "Joidenkin tiedostojen nouto ei onnistunut" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Nouto on valmis ja määrätty vain nouto" @@ -916,35 +916,35 @@ msgstr "Puuttuvia paketteja ei voi korjata." msgid "Aborting install." msgstr "Asennus keskeytetään." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Huomautus, valitaan %s eikä %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, 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:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Asennettu]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Yksi pitää valita asennettavaksi." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -955,59 +955,59 @@ msgstr "" "Tämä voi tarkoittaa paketin puuttuvan, olevan vanhentunut tai\n" "saatavilla vain jostain muusta lähteestä\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Seuraavat paketit kuitenkin korvaavat sen:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Paketilla %s ei ole asennettavaa valintaa" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s on jo uusin versio.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Julkaisua \"%s\" paketille \"%s\" ei löytynyt" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Versiota \"%s\" paketille \"%s\" ei löytynyt" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Valittiin versio %s (%s) paketille %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Komento update ei käytä parametreja" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Luettelokansiota ei voitu lukita" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 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:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1015,18 +1015,18 @@ msgstr "" "Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " "vaadittuja:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" "Seuraavat paketit asennettiin automaattisesti, eivätkä ne ole enää " "vaadittuja:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Poista ne komennolla \"apt-get autoremove\"." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1044,43 +1044,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "Seuraavista tiedoista voi olla hyötyä selvitettäessä tilannetta:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Sisäinen virhe, AutoRemover rikkoi jotain" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Sisäinen virhe, AllUpgrade rikkoi jotain" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Tehtävää %s ei löytynyt" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Pakettia %s ei löytynyt" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Huomautus, valitaan %s lausekkeella \"%s\"\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s on merkitty käyttäjän toimesta asennetuksi.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 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:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1088,7 +1088,7 @@ msgstr "" "Kaikkia riippuvuuksia ei ole tyydytetty. Kokeile \"apt-get -f install\" " "ilmanpaketteja (tai ratkaise itse)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1099,116 +1099,116 @@ msgstr "" "jos käytetään epävakaata jakelua, joitain vaadittuja paketteja ei ole\n" "vielä luotu tai siirretty Incoming-kansiosta." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Rikkinäiset paketit" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Seuraavat ylimääräiset paketit on merkitty asennettaviksi:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Ehdotetut paketit:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Suositellut paketit:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Käsitellään päivitystä ... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Ei onnistunut" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Valmis" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Sisäinen virhe, resolver rikkoi jotain" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 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:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Paketin %s lähdekoodipakettia ei löytynyt" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Ohitetaan jo noudettu tiedosto \"%s\"\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, 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:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "On noudettava %st/%st lähdekoodiarkistoja.\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "On noudettava %st lähdekoodiarkistoja.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Nouda lähdekoodi %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Joidenkin arkistojen noutaminen ei onnistunut." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, 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:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Purkukomento \"%s\" ei onnistunut.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Tarkista onko paketti \"dpkg-dev\" asennettu.\n" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Paketointikomento \"%s\" ei onnistunut.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Lapsiprosessi kaatui" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "" "On annettava ainakin yksi paketti jonka paketointiriippuvuudet tarkistetaan" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Paketille %s ei ole saatavilla riippuvuustietoja" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "Paketille %s ei ole määritetty paketointiriippuvuuksia.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1216,7 +1216,7 @@ msgid "" msgstr "" "riippuvuutta %s paketille %s ei voi tyydyttää koska pakettia %s ei löydy" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1225,32 +1225,32 @@ msgstr "" "%s riippuvuutta paketille %s ei voi tyydyttää koska mikään paketin %s versio " "ei vastaa versioriippuvuuksia" -#: cmdline/apt-get.cc:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Riippuvuutta %s paketille %s ei voi tyydyttää: %s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Paketointiriippuvuuksia paketille %s ei voi tyydyttää." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Paketointiriippuvuuksien käsittely ei onnistunut" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Tuetut moduulit:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1334,7 +1334,7 @@ msgstr "" "lisätietoja ja lisää valitsimia.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1473,7 +1473,12 @@ msgstr "Arkiston tarkistussumma on virheellinen" msgid "Error reading archive member header" msgstr "Tapahtui virhe luettaessa arkiston tiedoston otsikkoa" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Arkiston tiedoston otsikko on virheellinen" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Arkiston tiedoston otsikko on virheellinen" @@ -1575,7 +1580,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2109,80 +2114,80 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Valintaa %s ei löydy" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Tuntematon tyypin lyhenne: \"%c\"" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Avataan asetustiedosto %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntaksivirhe %s: %u: Lohko alkaa ilman nimeä." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntaksivirhe %s: %u: väärän muotoinen nimikenttä" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Syntaksivirhe %s: %u: Arvon jälkeen ylimääräistä roskaa" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "Syntaksivirhe %s: %u: Direktiivejä voi olla vain ylimmällä tasolla" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntaksivirhe %s: %u: Liian monta sisäkkäistä includea" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntaksivirhe %s: %u: Sisällytetty tästä" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntaksivirhe %s: %u: Tätä direktiiviä ei tueta \"%s\"" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntaksivirhe %s: %u: Ylimääräistä roskaa tiedoston lopussa" @@ -2493,7 +2498,7 @@ msgstr "Tyyppi \"%s\" on tuntematon rivillä %u lähdeluettelossa %s" msgid "Malformed line %u in source list %s (vendor id)" msgstr "Rivi %u on väärän muotoinen lähdeluettelossa%s (toimittajan tunniste)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2890,12 +2895,12 @@ msgstr "" msgid "Installing %s" msgstr "Asennetaan %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Tehdään asetukset: %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Poistetaan %s" @@ -2905,58 +2910,58 @@ msgstr "Poistetaan %s" msgid "Running post-installation trigger %s" msgstr "Suoritetaan jälkiasennusliipaisin %s" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Kansio \"%s\" puuttuu." -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Valmistellaan %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Puretaan %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Valmistaudutaan tekemään asetukset: %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "%s asennettu" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Valmistaudutaan poistamaan %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "%s poistettu" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Valmistaudutaan poistamaan %s kokonaan" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "%s poistettiin kokonaan" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 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:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/fr.po b/po/fr.po index 8247d03c9..4ba546f14 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2009-08-27 20:29+0200\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" @@ -154,7 +154,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -660,7 +660,7 @@ msgstr "Impossible de changer le nom %s en %s" msgid "Y" msgstr "O" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Erreur de compilation de l'expression rationnelle - %s" @@ -823,11 +823,11 @@ msgstr "" msgid "Internal error, Ordering didn't finish" msgstr "Erreur interne. Le tri a été interrompu." -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Impossible de verrouiller le répertoire de téléchargement" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "La liste des sources ne peut être lue." @@ -859,7 +859,7 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Après cette opération, %so d'espace disque seront libérés.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Impossible de déterminer l'espace disponible sur %s" @@ -900,7 +900,7 @@ msgstr "Annulation." msgid "Do you want to continue [Y/n]? " msgstr "Souhaitez-vous continuer [O/n] ? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Impossible de récupérer %s %s\n" @@ -909,7 +909,7 @@ msgstr "Impossible de récupérer %s %s\n" msgid "Some files failed to download" msgstr "Certains fichiers n'ont pu être téléchargés." -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Téléchargement achevé et dans le mode téléchargement uniquement" @@ -934,35 +934,35 @@ msgstr "Impossible de corriger le fait que les paquets manquent." msgid "Aborting install." msgstr "Annulation de l'installation." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, 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:1068 +#: cmdline/apt-get.cc:1093 #, 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:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Installé]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Vous devez explicitement sélectionner un paquet à installer." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -974,61 +974,61 @@ msgstr "" "devenu obsolète\n" "ou qu'il n'est disponible que sur une autre source\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Cependant les paquets suivants le remplacent :" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Aucun paquet ne correspond au paquet %s" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, 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:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "La version « %s » de « %s » est introuvable" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "La version « %s » de « %s » n'a pu être trouvée" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Version choisie %s (%s) pour %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "Pas de paquet source « %s ». Utilisation de « %s » à la place\n" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "La commande de mise à jour ne prend pas d'argument" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Impossible de verrouiller le répertoire de liste" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 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:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1036,16 +1036,17 @@ msgstr "" "Les paquets suivants ont été installés automatiquement et ne sont plus " "nécessaires :" -#: cmdline/apt-get.cc:1480, c-format +#: cmdline/apt-get.cc:1505 +#, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" "%lu paquets ont été installés automatiquement et ne sont plus nécessaires.\n" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Veuillez utiliser « apt-get autoremove » pour les supprimer." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1064,44 +1065,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 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:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "" "Erreur interne, l'outil de suppression automatique a cassé quelque chose." -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Erreur interne, AllUpgrade a cassé le boulot !" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Impossible de trouver la tâche %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Impossible de trouver le paquet %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Note, sélectionne %s pour l'expression rationnelle « %s »\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s passé en « installé manuellement ».\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 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:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1109,7 +1110,7 @@ msgstr "" "Dépendances non satisfaites. Essayez « apt-get -f install » sans paquet\n" "(ou indiquez une solution)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1121,119 +1122,119 @@ 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:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Paquets défectueux" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Les paquets supplémentaires suivants seront installés : " -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Paquets suggérés :" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Paquets recommandés :" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Calcul de la mise à jour... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Échec" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Fait" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 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:2113 +#: cmdline/apt-get.cc:2138 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:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, 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:2192 +#: cmdline/apt-get.cc:2217 #, 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:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "Pas assez d'espace disponible sur %s" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, 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:2232 +#: cmdline/apt-get.cc:2257 #, 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:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Récupération des sources %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Échec lors de la récupération de quelques archives." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, 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:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "La commande de décompactage « %s » a échoué.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, 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:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "La commande de construction « %s » a échoué.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Échec du processus fils" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 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:2390 +#: cmdline/apt-get.cc:2415 #, 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:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s n'a pas de dépendance de construction.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1242,7 +1243,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:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1251,32 +1252,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:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, 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:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." -msgstr "Les dépendances de compilation pour %s ne peuvent pas être satisfaites." +msgstr "" +"Les dépendances de compilation pour %s ne peuvent pas être satisfaites." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Impossible d'activer les dépendances de construction" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Modules reconnus :" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1361,7 +1363,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:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1510,7 +1512,12 @@ msgstr "Signature d'archive invalide" msgid "Error reading archive member header" msgstr "Erreur de lecture de l'en-tête du membre d'archive" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "En-tête du membre d'archive non-valide" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "En-tête du membre d'archive non-valide" @@ -1612,7 +1619,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2159,82 +2166,82 @@ msgstr "" "actuelle est de %lu (voir « man 5 apt.conf »)." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "%lis" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "La sélection %s n'a pu être trouvée" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Type d'abréviation non reconnue : « %c »" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Ouverture du fichier de configuration %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Erreur syntaxique %s:%u : le bloc commence sans aucun nom." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Erreur syntaxique %s:%u : balise mal formée" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Erreur syntaxique %s:%u : valeur suivie de choses illicites" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Erreur syntaxique %s:%u : ces directives ne peuvent être appliquées qu'au " "niveau le plus haut" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Erreur syntaxique %s:%u: trop de niveaux d'imbrication d'includes" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Erreur syntaxique %s:%u : inclus à partir d'ici" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Erreur syntaxique %s:%u : directive « %s » non tolérée" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Erreur syntaxique %s:%u : valeur aberrante à la fin du fichier" @@ -2548,7 +2555,7 @@ msgid "Malformed line %u in source list %s (vendor id)" msgstr "" "Ligne %u mal formée dans la liste des sources %s (identifiant du fournisseur)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2798,7 +2805,8 @@ msgstr "Somme de contrôle de hachage incohérente" #: apt-pkg/acquire-item.cc:1106 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" +msgstr "" +"Aucune clé publique n'est disponible pour la/les clé(s) suivante(s) :\n" #: apt-pkg/acquire-item.cc:1216 #, c-format @@ -2968,12 +2976,12 @@ msgstr "" msgid "Installing %s" msgstr "Installation de %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Configuration de %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Suppression de %s" @@ -2983,58 +2991,58 @@ msgstr "Suppression de %s" msgid "Running post-installation trigger %s" msgstr "Exécution des actions différées (« trigger ») de %s" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Répertoire %s inexistant" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Préparation de %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Décompression de %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Préparation de la configuration de %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "%s installé" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Préparation de la suppression de %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "%s supprimé" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Préparation de la suppression complète de %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "%s complètement supprimé" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 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:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "Exécution de dpkg" diff --git a/po/gl.po b/po/gl.po index 563b26968..a4bf2c042 100644 --- a/po/gl.po +++ b/po/gl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_gl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2008-12-17 22:44+0100\n" "Last-Translator: mvillarino \n" "Language-Team: galician \n" @@ -156,7 +156,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -661,7 +661,7 @@ msgstr "Non se puido cambiar o nome de %s a %s" msgid "Y" msgstr "S" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Erro na compilación da expresión regular - %s" @@ -822,11 +822,11 @@ msgstr "Hai que eliminar paquetes pero a eliminación está desactivada." msgid "Internal error, Ordering didn't finish" msgstr "Erro interno, a ordeación non rematou" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Non se puido bloquear o directorio de descargas" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Non se puido ler a lista de orixes." @@ -856,7 +856,7 @@ msgstr "Despois desta operación hanse ocupar %sB de disco adicionais.\n" 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:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Non se puido determinar o espazo libre en %s" @@ -893,7 +893,7 @@ msgstr "Abortar." msgid "Do you want to continue [Y/n]? " msgstr "¿Quere continuar [S/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Non se puido obter %s %s\n" @@ -902,7 +902,7 @@ msgstr "Non se puido obter %s %s\n" msgid "Some files failed to download" msgstr "Non se puido descargar algúns ficheiros" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Completouse a descarga no modo de só descargas" @@ -928,35 +928,35 @@ msgstr "Non se puido corrixir os paquetes non dispoñibles." msgid "Aborting install." msgstr "A abortar a instalación." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Nota, escóllese %s no canto de %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, 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:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Instalado]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Debería escoller un para instalar." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -967,77 +967,77 @@ msgstr "" "Isto pode significar que o paquete falla, está obsoleto ou só está\n" "dispoñible noutra fonte.\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Nembargantes, os seguintes paquetes substitúeno:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, 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:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s xa é a versión máis recente.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Non se atopou a versión \"%s\" de \"%s\"" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Non se atopou a versión \"%s\" de \"%s\"" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Escolleuse a versión %s (%s) de %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "A orde \"update\" non toma argumentos" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Non se puido bloquear o directorio de listas" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 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:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" "Os seguintes paquetes instaláronse automaticamente e xa non son necesarios:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" "Os seguintes paquetes instaláronse automaticamente e xa non son necesarios:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Empregue \"apt-get autoremove\" para eliminalos." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1055,43 +1055,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 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:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Erro interno, o autoeliminador rompeu cousas" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Erro interno, AllUpgrade rompeu cousas" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Non se puido atopar a tarefa %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Non se puido atopar o paquete %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, 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:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s cambiouse a instalado manualmente.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 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:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1099,7 +1099,7 @@ msgstr "" "Dependencias incumpridas. Probe \"apt-get -f install\" sen paquetes (ou " "especifique unha solución)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1110,118 +1110,118 @@ 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:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Paquetes rotos" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Hanse instalar os seguintes paquetes extra:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Paquetes suxiridos:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Paquetes recomendados:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "A calcular a actualización... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Fallou" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Rematado" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Erro interno, o resolvedor interno rompeu cousas" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 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:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, 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:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Omítese o ficheiro xa descargado \"%s\"\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, 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:2229 +#: cmdline/apt-get.cc:2254 #, 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:2232 +#: cmdline/apt-get.cc:2257 #, 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:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Obter fonte %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Non se puido recibir algúns arquivos." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, 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:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Fallou a orde de desempaquetamento \"%s\".\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, 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:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Fallou a codificación de %s.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "O proceso fillo fallou" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 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:2390 +#: cmdline/apt-get.cc:2415 #, 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:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s non ten dependencias de compilación.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1230,7 +1230,7 @@ msgstr "" "A dependencia \"%s\" de %s non se pode satisfacer porque non se pode atopar " "o paquete %s" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1239,32 +1239,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:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, 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:2594 +#: cmdline/apt-get.cc:2619 #, 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:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Non se puido procesar as dependencias de compilación" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Módulos soportados:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1352,7 +1352,7 @@ msgstr "" "máis información e opcións.\n" " Este APT ten Poderes de Supervaca.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1490,7 +1490,12 @@ msgstr "Sinatura de arquivo non válida" msgid "Error reading archive member header" msgstr "Erro ao ler a cabeceira do membro do arquivo" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Cabeceira do membro do arquivo non válida" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Cabeceira do membro do arquivo non válida" @@ -1592,7 +1597,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2128,80 +2133,80 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Non se atopou a selección %s" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Abreviatura de tipo \"%c\" descoñecida" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "A abrir o ficheiro de configuración %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Erro de sintaxe %s:%u: O bloque comeza sen un nome." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Erro de sintaxe %s:%u: Etiqueta mal formada" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Erro de sintaxe %s:%u: Lixo extra despois do valor" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "Erro de sintaxe %s:%u: Só se poden facer directivas no nivel superior" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Erro de sintaxe %s:%u: Includes aniñados de máis" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Erro de sintaxe %s:%u: Incluído de aquí" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Erro de sintaxe %s:%u: Non se soporta a directiva \"%s\"" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Erro de sintaxe %s:%u: Lixo extra á fin da liña" @@ -2513,7 +2518,7 @@ msgstr "O tipo \"%s\" non se coñece na liña %u da lista de fontes %s" msgid "Malformed line %u in source list %s (vendor id)" msgstr "Liña %u mal formada na lista de fontes %s (id de provedor)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2914,12 +2919,12 @@ msgstr "" msgid "Installing %s" msgstr "A instalar %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "A configurar %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "A eliminar %s" @@ -2929,58 +2934,58 @@ msgstr "A eliminar %s" msgid "Running post-installation trigger %s" msgstr "A executar o disparador de post-instalación %s" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "O directorio \"%s\" falla" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "A preparar %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "A desempaquetar %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "A se preparar para configurar %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "Instalouse %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "A se preparar para a eliminación de %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "Eliminouse %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "A se preparar para eliminar %s completamente" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "Eliminouse %s completamente" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 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:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/he.po b/po/he.po index 842442672..e7497ca4f 100644 --- a/po/he.po +++ b/po/he.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.25\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2004-06-10 19:58+0300\n" "Last-Translator: Lior Kaplan \n" "Language-Team: Hebrew\n" @@ -151,7 +151,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -549,7 +549,7 @@ msgstr "כשלון בשינוי השם %s ל-%s" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "" @@ -712,11 +712,11 @@ msgstr "" msgid "Internal error, Ordering didn't finish" msgstr "" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "לא מצליח לנעול את ספרית ההורדה." -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "רשימת המקורות לא ניתנת לקריאה." @@ -745,7 +745,7 @@ msgstr "אחרי פריסה %sB נוספים יהיו בשימוש.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "אחרי פריסה %sB נוספים ישוחררו.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, fuzzy, c-format msgid "Couldn't determine free space in %s" msgstr "אין לך מספיק מקום פנוי ב-%s." @@ -780,7 +780,7 @@ msgstr "בטל." msgid "Do you want to continue [Y/n]? " msgstr "האם אתה רוצה להמשיך? [Y/n]" -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "כשלון בהבאת %s %s\n" @@ -789,7 +789,7 @@ msgstr "כשלון בהבאת %s %s\n" msgid "Some files failed to download" msgstr "כשלון בהורדת חלק מהקבצים" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "ההורדה הסתיימה במסגרת מצב הורדה בלבד." @@ -811,35 +811,35 @@ msgstr "" msgid "Aborting install." msgstr "" -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "" -#: cmdline/apt-get.cc:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr "" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "" -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -847,74 +847,74 @@ msgid "" "is only available from another source\n" msgstr "" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "החבילות החדשות הבאות הולכות להיות מותקנות:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "החבילות החדשות הבאות הולכות להיות מותקנות:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -930,50 +930,50 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "שגיאה פנימית, כלשון ביצירת %s" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "אבל %s הולכת להיות מותקנת" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -981,153 +981,153 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "" -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 #, fuzzy msgid "Internal error, problem resolver broke stuff" msgstr "שגיאה פנימית, כלשון ביצירת %s" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, 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:2551 +#: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1171,7 +1171,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1294,7 +1294,12 @@ msgstr "" msgid "Error reading archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, c-format +msgid "Invalid archive member header %s" +msgstr "" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "" @@ -1396,7 +1401,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -1919,80 +1924,80 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "" -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "" @@ -2303,7 +2308,7 @@ msgstr "" msgid "Malformed line %u in source list %s (vendor id)" msgstr "" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2677,12 +2682,12 @@ msgstr "" msgid "Installing %s" msgstr "מותקן:" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "" @@ -2692,56 +2697,56 @@ msgstr "" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, fuzzy, c-format msgid "Installed %s" msgstr "מותקן:" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/hu.po b/po/hu.po index c422e1f24..ae2127076 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: hu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2008-05-11 14:49+0100\n" "Last-Translator: SZERVÁC Attila \n" "Language-Team: Hungarian \n" @@ -156,7 +156,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -654,7 +654,7 @@ msgstr "Nem sikerült átnevezni %s-t erre: %s" msgid "Y" msgstr "I" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Regex fordítási hiba - %s" @@ -815,11 +815,11 @@ msgstr "Csomagokat kellene eltávolítani, de az Eltávolítás nem engedélyeze msgid "Internal error, Ordering didn't finish" msgstr "Belső hiba, a rendezés nem zárult" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Nem tudom zárolni a letöltési könyvtárat" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "A források listája olvashatatlan." @@ -848,7 +848,7 @@ msgstr "E művelet után további %sB lemez-területetet használok fel.\n" 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:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nem határozható meg a szabad hely itt: %s" @@ -885,7 +885,7 @@ msgstr "Megszakítva." msgid "Do you want to continue [Y/n]? " msgstr "Folytatni akarod [Y/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Sikertelen letöltés: %s %s\n" @@ -894,7 +894,7 @@ msgstr "Sikertelen letöltés: %s %s\n" msgid "Some files failed to download" msgstr "Néhány fájlt nem sikerült letölteni" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "A letöltés befejeződött a 'csak letöltés' módban" @@ -918,35 +918,35 @@ msgstr "Nem lehet javítani a hiányzó csomagokat." msgid "Aborting install." msgstr "Telepítés megszakítása." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Megjegyzés: %s kiválasztása %s helyett\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, 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:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Telepítve]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 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:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -956,73 +956,73 @@ 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:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "De az alábbi csomagok felváltják:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, 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:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s már a legújabb verzió.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "'%s' kiadás ehhez: '%s' nem található" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "'%s' verzió ehhez: '%s' nem található" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "%s (%s) a kiválasztott verzió ehhez: %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Az update parancsnak nincsenek argumentumai" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Nem tudom a listakönyvtárat zárolni" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 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:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Az alábbi csomagok automatikusan települtek, de már nem kellenek:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "Az alábbi csomagok automatikusan települtek, de már nem kellenek:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Töröld az 'apt-get autoremove' paranccsal!" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1040,43 +1040,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 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:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Belső hiba, az AutoRemover sérült" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Belső hiba, AllUpgrade megsértett valamit" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Hiányzó %s feladat" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Az alábbi csomag nem található: %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, 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:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s kézi telepítésre állított.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 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:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1084,7 +1084,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:1764 +#: cmdline/apt-get.cc:1789 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,118 +1096,118 @@ 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:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Törött csomagok" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Az alábbi extra csomagok kerülnek telepítésre:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Javasolt csomagok:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Ajánlott csomagok:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Frissítés kiszámítása... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Sikertelen" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Kész" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Belső hiba, hibafeloldó gond" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 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:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Nem található forráscsomag ehhez: %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, 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:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "Nincs elég szabad hely itt: %s" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, 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:2232 +#: cmdline/apt-get.cc:2257 #, 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:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Forrás letöltése: %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Nem sikerült néhány archívumot letölteni." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, 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:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "'%s' kibontási parancs nem sikerült.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, 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:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "'%s' elkészítési parancs nem sikerült.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Hiba a gyermekfolyamatnál" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 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:2390 +#: cmdline/apt-get.cc:2415 #, 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:2410 +#: cmdline/apt-get.cc:2435 #, 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:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1216,7 +1216,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:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1225,32 +1225,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:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, 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:2594 +#: cmdline/apt-get.cc:2619 #, 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:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Nem sikerült az építési függőségeket feldolgozni" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Támogatott modulok:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1335,7 +1335,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:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1471,7 +1471,12 @@ msgstr "Érvénytelen archívum-aláírás" msgid "Error reading archive member header" msgstr "Hiba az archívum tag fejléc olvasásakor" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Érvénytelen archívum tag fejléc" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Érvénytelen archívum tag fejléc" @@ -1573,7 +1578,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2103,80 +2108,80 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "%s kiválasztás nem található" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Ismeretlen típusrövidítés: '%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "%s konfigurációs fájl megnyitása" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Szintaktikai hiba %s: %u: A blokk név nélkül kezdődik" -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Szintaktikai hiba %s: %u: hibás formátumú címke" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Szintaktikai hiba %s: %u: fölösleges szemét az érték után" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "Szintaktikai hiba %s: %u: Csak legfelső szinten használhatók előírások" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Szintaktikai hiba %s: %u: Túl sok beágyazott include" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Szintaktikai hiba %s: %u: ugyaninnen include-olva" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Szintaktikai hiba %s: %u: '%s' nem támogatott előírás" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Szintaktikai hiba %s: %u: fölösleges szemét a fájl végén" @@ -2488,7 +2493,7 @@ msgstr "'%s' típus nem ismert a(z) %u. sorban a(z) %s forráslistában" msgid "Malformed line %u in source list %s (vendor id)" msgstr "A(z) %u. sor hibás %s forráslistában (terjesztő id)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2889,12 +2894,12 @@ msgstr "%i rekord kiírva %i hiányzó és %i hibásan párosított fájllal\n" msgid "Installing %s" msgstr "Telepített %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "%s konfigurálása" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "%s eltávolítása" @@ -2904,56 +2909,56 @@ msgstr "%s eltávolítása" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Hiányzik ez a könyvtár: %s" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "%s előkészítése" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "%s kicsomagolása" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "%s konfigurálásának előkészítése" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "Telepített %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, 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:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "Eltávolított %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, 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:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "%s teljesen eltávolítva" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 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:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/it.po b/po/it.po index 6fe3da8a3..7b67859a5 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.20\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2009-06-04 13:23+0200\n" "Last-Translator: Milo Casagrande \n" "Language-Team: Italian \n" @@ -153,7 +153,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -655,7 +655,7 @@ msgstr "Rinomina di %s in %s non riuscita" msgid "Y" msgstr "S" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Errore di compilazione dell'espressione regolare - %s" @@ -821,11 +821,11 @@ msgstr "" msgid "Internal error, Ordering didn't finish" msgstr "Errore interno, l'ordinamento non è stato terminato" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Impossibile bloccare la directory di scaricamento" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Impossibile leggere l'elenco dei sorgenti." @@ -855,7 +855,7 @@ msgstr "Dopo quest'operazione, verranno occupati %sB di spazio su disco.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Dopo quest'operazione, verranno liberati %sB di spazio su disco.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Impossibile determinare lo spazio libero su %s" @@ -894,7 +894,7 @@ msgstr "Interrotto." msgid "Do you want to continue [Y/n]? " msgstr "Continuare [S/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Impossibile recuperare %s %s\n" @@ -903,7 +903,7 @@ msgstr "Impossibile recuperare %s %s\n" msgid "Some files failed to download" msgstr "Scaricamento di alcuni file non riuscito" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Scaricamento completato e in modalità solo scaricamento" @@ -927,36 +927,36 @@ msgstr "Impossibile correggere i pacchetti mancanti." msgid "Aborting install." msgstr "Interruzione dell'installazione." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Nota, viene selezionato %s al posto di %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, 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:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Installato]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "È necessario sceglierne uno da installare." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -967,61 +967,61 @@ msgstr "" "pacchetto. Questo significa che il pacchetto manca, è diventato obsoleto\n" "oppure è disponibile solo all'interno di un'altra sorgente\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Tuttavia questi pacchetti lo sostituiscono:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Il pacchetto %s non ha candidati da installare" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s è già alla versione più recente.\n" # (ndt) dovrebbe essere inteso il file Release -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Release \"%s\" per \"%s\" non trovato." # (ndt) dovrebbe essere inteso il Version -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Version \"%s\" per \"%s\" non trovato" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Versione %s (%s) selezionata per %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "Nessun pacchetto sorgente \"%s\", selezionato \"%s\" al suo posto\n" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Il comando update non accetta argomenti" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Impossibile bloccare la directory" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 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:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1029,18 +1029,18 @@ msgstr "" "I seguenti pacchetti sono stati installati automaticamente e non sono più " "richiesti:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" "I seguenti pacchetti sono stati installati automaticamente e non sono più " "richiesti:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Usare \"apt-get autoremove\" per rimuoverli." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1058,44 +1058,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "Le seguenti informazioni possono aiutare a risolvere la situazione: " -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Errore interno, AutoRemover ha rovinato qualche cosa" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Errore interno, AllUpgrade ha rovinato qualche cosa" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Impossibile trovare il task %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Impossibile trovare il pacchetto %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Nota, si sta selezionando %s per l'espressione regolare \"%s\"\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "È stato impostato %s per l'installazione manuale.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 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:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1103,7 +1103,7 @@ msgstr "" "Dipendenze non soddisfatte. Provare \"apt-get -f install\" senza pacchetti " "(o specificare una soluzione)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1115,118 +1115,118 @@ 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:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Pacchetto danneggiato" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "I seguenti pacchetti saranno inoltre installati:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Pacchetti suggeriti:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Pacchetti raccomandati:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Calcolo dell'aggiornamento... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Non riuscito" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Eseguito" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Errore interno, \"problem resolver\" ha rovinato qualcosa" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 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:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Impossibile trovare un pacchetto sorgente per %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Il pacchetto \"%s\" già scaricato viene saltato\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "Lo spazio libero in %s è insufficiente" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "È necessario recuperare %sB/%sB di sorgenti.\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "È necessario recuperare %sB di sorgenti\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Recupero sorgente %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Recupero di alcuni archivi non riuscito." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, 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:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Comando di estrazione \"%s\" non riuscito.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, 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:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Comando \"%s\" di generazione non riuscito.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Creazione processo figlio non riuscita" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 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:2390 +#: cmdline/apt-get.cc:2415 #, 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:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s non ha dipendenze di generazione.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1235,7 +1235,7 @@ msgstr "" "%s dipendenze per %s non possono essere soddisfatte perché il pacchetto %s " "non può essere trovato" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1244,32 +1244,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:2551 +#: cmdline/apt-get.cc:2576 #, 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 nuovo" -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, 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:2594 +#: cmdline/apt-get.cc:2619 #, 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:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Elaborazione delle dipendenze di generazione non riuscita" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Moduli supportati:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1356,7 +1356,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:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1502,7 +1502,12 @@ msgstr "Firma dell'archivio non valida" msgid "Error reading archive member header" msgstr "Errore nel leggere l'intestazione member dell'archivio" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Intestazione member dell'archivio non valida" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Intestazione member dell'archivio non valida" @@ -1605,7 +1610,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2143,82 +2148,82 @@ msgstr "" "valore attuale è: %lu (man 5 apt.conf)." #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lig %lih %limin %lis" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "%lis" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Selezione %s non trovata" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Tipo di abbreviazione non riconosciuto: \"%c\"" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Apertura file di configurazione %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Errore di sintassi %s:%u: il blocco inizia senza nome" -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Errore di sintassi %s:%u: tag non corretto" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Errore di sintassi %s:%u: caratteri extra dopo il valore" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Errore di sintassi %s:%u: le direttive possono essere fatte solo al livello " "più alto" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Errore di sintassi %s:%u: troppe inclusioni annidate" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Errore di sintassi %s:%u: incluso da qui" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Errore di sintassi %s:%u: direttiva \"%s\" non supportata" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Errore di sintassi %s:%u: caratteri extra alla fine del file" @@ -2532,7 +2537,7 @@ msgstr "Tipo \"%s\" non riconosciuto alla riga %u nel file %s" msgid "Malformed line %u in source list %s (vendor id)" msgstr "La riga %u nel file %s non è corretta (vendor id)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2939,12 +2944,12 @@ msgstr "" msgid "Installing %s" msgstr "Installazione di %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Configurazione di %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Rimozione di %s" @@ -2954,58 +2959,58 @@ msgstr "Rimozione di %s" msgid "Running post-installation trigger %s" msgstr "Esecuzione comando di post installazione %s" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Directory \"%s\" mancante" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Preparazione di %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Estrazione di %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Preparazione alla configurazione di %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "Pacchetto %s installato" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Preparazione alla rimozione di %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "Pacchetto %s rimosso" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Preparazione alla rimozione completa di %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "Pacchetto %s rimosso completamente" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 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:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/ja.po b/po/ja.po index fa7e91bdb..de0fe925e 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2008-11-13 09:26+0900\n" "Last-Translator: Kenshi Muto \n" "Language-Team: Debian Japanese List \n" @@ -152,7 +152,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -650,7 +650,7 @@ msgstr "%s を %s に名前変更できませんでした" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "正規表現の展開エラー - %s" @@ -813,11 +813,11 @@ msgstr "パッケージを削除しなければなりませんが、削除が無 msgid "Internal error, Ordering didn't finish" msgstr "内部エラー、調整が終わっていません" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "ダウンロードディレクトリをロックできません" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "ソースのリストを読むことができません。" @@ -847,7 +847,7 @@ msgstr "この操作後に追加で %sB のディスク容量が消費されま msgid "After this operation, %sB disk space will be freed.\n" msgstr "この操作後に %sB のディスク容量が解放されます。\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s の空き領域を測定できません" @@ -884,7 +884,7 @@ msgstr "中断しました。" msgid "Do you want to continue [Y/n]? " msgstr "続行しますか [Y/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s の取得に失敗しました %s\n" @@ -893,7 +893,7 @@ msgstr "%s の取得に失敗しました %s\n" msgid "Some files failed to download" msgstr "いくつかのファイルの取得に失敗しました" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "ダウンロードオンリーモードでパッケージのダウンロードが完了しました" @@ -917,37 +917,37 @@ msgstr "足りないパッケージを直すことができません。" msgid "Aborting install." msgstr "インストールを中断します。" -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "注意、%2$s の代わりに %1$s を選択します\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "すでにインストールされておりアップグレードも設定されていないため、%s をスキッ" "プします。\n" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "パッケージ %s はインストールされていないため、削除はできません\n" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "%s は以下のパッケージで提供されている仮想パッケージです:\n" -#: cmdline/apt-get.cc:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [インストール済み]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "インストールするパッケージを明示的に選択する必要があります。" -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -958,76 +958,76 @@ msgstr "" "おそらく、そのパッケージが見つからないか、もう古くなっているか、\n" "あるいは別のソースからのみしか利用できないという状況が考えられます\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "しかし、以下のパッケージで置き換えられています:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "パッケージ %s にはインストール候補がありません" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "ダウンロードできないため、%s の再インストールは不可能です。\n" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s はすでに最新バージョンです。\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "'%2$s' のリリース '%1$s' が見つかりませんでした" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "'%2$s' のバージョン '%1$s' が見つかりませんでした" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "%3$s にはバージョン %1$s (%2$s) を選択しました\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "update コマンドは引数をとりません" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "list ディレクトリをロックできません" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" "一連のものを削除するようになっていないので、AutoRemover を開始できません" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" "以下のパッケージが自動でインストールされましたが、もう必要とされていません:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" "以下のパッケージが自動でインストールされましたが、もう必要とされていません:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "これらを削除するには 'apt-get autoremove' を利用してください。" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1045,45 +1045,45 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "以下の情報がこの問題を解決するために役立つかもしれません:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "内部エラー、AutoRemover が何かを破壊しました" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "内部エラー、AllUpgrade が何かを破壊しました" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "タスク %s が見つかりません" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "パッケージ %s が見つかりません" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "注意: 正規表現 '%2$s' に対して %1$s を選択しました\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s は手動でインストールしたと設定されました。\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" "以下の問題を解決するために 'apt-get -f install' を実行する必要があるかもしれ" "ません:" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1091,7 +1091,7 @@ msgstr "" "未解決の依存関係です。'apt-get -f install' を実行してみてください (または解法" "を明示してください)。" -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1103,118 +1103,118 @@ msgstr "" "であれば) 必要なパッケージがまだ作成されていなかったり Incoming から移\n" "動されていないことが考えられます。" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "壊れたパッケージ" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "以下の特別パッケージがインストールされます:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "提案パッケージ:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "推奨パッケージ:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "アップグレードパッケージを検出しています ... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "失敗" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "完了" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "内部エラー、問題リゾルバが何かを破壊しました" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "" "ソースを取得するには少なくともひとつのパッケージ名を指定する必要があります" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "%s のソースパッケージが見つかりません" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "すでにダウンロードされたファイル '%s' をスキップします\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "%s に充分な空きスペースがありません" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "%2$sB 中 %1$sB のソースアーカイブを取得する必要があります。\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "%sB のソースアーカイブを取得する必要があります。\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "ソース %s を取得\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "いくつかのアーカイブの取得に失敗しました。" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "すでに %s に展開されたソースがあるため、展開をスキップします\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "展開コマンド '%s' が失敗しました。\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" "'dpkg-dev' パッケージがインストールされていることを確認してください。\n" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "ビルドコマンド '%s' が失敗しました。\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "子プロセスが失敗しました" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "" "ビルド依存関係をチェックするパッケージを少なくとも 1 つ指定する必要があります" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s のビルド依存情報を取得できません" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s にはビルド依存情報が指定されていません。\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1223,7 +1223,7 @@ msgstr "" "パッケージ %3$s が見つからないため、%2$s に対する %1$s の依存関係を満たすこと" "ができません" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1232,32 +1232,32 @@ msgstr "" "入手可能な %3$s はいずれもバージョンについての要求を満たせないため、%2$s に対" "する %1$s の依存関係を満たすことができません" -#: cmdline/apt-get.cc:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%2$s の依存関係 %1$s を満たすことができません: %3$s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s のビルド依存関係を満たすことができませんでした。" -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "ビルド依存関係の処理に失敗しました" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "サポートされているモジュール:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1346,7 +1346,7 @@ msgstr "" "apt.conf(5) を参照してください。\n" " この APT は Super Cow Powers 化されています。\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1482,7 +1482,12 @@ msgstr "不正なアーカイブ署名" msgid "Error reading archive member header" msgstr "アーカイブメンバーヘッダの読み込みに失敗しました" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "不正なアーカイブメンバーヘッダ" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "不正なアーカイブメンバーヘッダ" @@ -1585,7 +1590,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2117,80 +2122,80 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "選択された %s が見つかりません" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "理解できない省略形式です: '%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "設定ファイル %s をオープンできませんでした" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "文法エラー %s:%u: ブロックが名前なしで始まっています。" -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "文法エラー %s:%u: 不正なタグです" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "文法エラー %s:%u: 値の後に余分なゴミが入っています" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "文法エラー %s:%u: 命令はトップレベルでのみ実行できます" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "文法エラー %s:%u: インクルードのネストが多すぎます" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "文法エラー %s:%u: ここからインクルードされています" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "文法エラー %s:%u: 未対応の命令 '%s'" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "文法エラー %s:%u: ファイルの最後に余計なゴミがあります" @@ -2501,7 +2506,7 @@ msgstr "ソースリスト %3$s の %2$u 行にあるタイプ '%1$s' は不明 msgid "Malformed line %u in source list %s (vendor id)" msgstr "ソースリスト %2$s の %1$u 行目が不正です (vendor id)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2906,12 +2911,12 @@ msgstr "" msgid "Installing %s" msgstr "%s をインストールしています" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "%s を設定しています" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "%s を削除しています" @@ -2921,58 +2926,58 @@ msgstr "%s を削除しています" msgid "Running post-installation trigger %s" msgstr "インストール後トリガ %s を実行しています" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "ディレクトリ '%s' が見つかりません" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "%s を準備しています" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "%s を展開しています" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "%s の設定を準備しています" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "%s をインストールしました" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "%s の削除を準備しています" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "%s を削除しました" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "%s を完全に削除する準備をしています" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "%s を完全に削除しました" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "ログに書き込めません。openpty() に失敗しました (/dev/pts がマウントされていな" "い?)\n" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/km.po b/po/km.po index c05f9a824..07ce9f909 100644 --- a/po/km.po +++ b/po/km.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_km\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2006-10-10 09:48+0700\n" "Last-Translator: Khoem Sokhem \n" "Language-Team: Khmer \n" @@ -157,7 +157,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -654,7 +654,7 @@ msgstr "បរាជ័យ​ក្នុង​ការ​ប្តូរ​ឈ msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Regex កំហុស​ការចងក្រង​ - %s" @@ -815,11 +815,11 @@ msgstr "កញ្ចប់ ​ត្រូវការឲ្យ​យក​ច msgid "Internal error, Ordering didn't finish" msgstr "កំហុស​ខាងក្នុង​ ការ​រៀប​តាម​លំដាប់​មិន​បាន​បញ្ចប់ឡើយ" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "មិន​អាច​ចាក់​សោ​ថត​ទាញ​យក​បាន​ឡើយ" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "មិន​អាច​អាន​បញ្ជី​ប្រភព​បាន​ឡើយ​ ។" @@ -848,7 +848,7 @@ msgstr "បន្ទាប់​ពី​ពន្លា​ %sB នៃ​កា msgid "After this operation, %sB disk space will be freed.\n" msgstr "បន្ទាប់​ពី​ពន្លា​ %sB ទំហំ​ថាសនឹង​​ទំនេរ ។ \n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "មិន​អាច​កំណត់​ទំហំ​ទំនេរ​ក្នុង​ %s បានឡើយ" @@ -885,7 +885,7 @@ msgstr "បោះបង់ ។" msgid "Do you want to continue [Y/n]? " msgstr "តើ​អ្នក​ចង់​បន្តឬ​ [បាទ ចាស/ទេ​] ? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "បរាជ័យ​ក្នុង​ការ​ទៅ​ប្រមូល​យក​ %s %s\n" @@ -894,7 +894,7 @@ msgstr "បរាជ័យ​ក្នុង​ការ​ទៅ​ប្រម msgid "Some files failed to download" msgstr "ឯកសារ​មួយ​ចំនួន​បាន​បរាជ័យ​ក្នុង​ការ​ទាញ​យក​" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "បានបញ្ចប់ការទាញ​យក​ ហើយ​តែ​ក្នុង​របៀប​​ទាញ​យក​ប៉ុណ្ណោះ" @@ -918,35 +918,35 @@ msgstr "មិន​អាច​កែ​កញ្ចប់​ដែលបាត msgid "Aborting install." msgstr "កំពុង​បោះបង់​ការ​ដំឡើង​ ។" -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "ចំណាំ កំពុង​ជ្រើស​ %s ជំនួស​ %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "កំពុង​រំលង​ %s វា​បាន​ដំឡើង​រួចរាល់​ ហើយ​ភាព​ធ្វើឲ្យ​ប្រសើរ​​មិន​ទាន់​កំណត់​​ ។\n" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "មិនទាន់បានដំឡើង​កញ្ចប់​ %s ទេ​ ដូច្នេះ មិន​បាន​យកចេញឡើយ \n" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "កញ្ចប់​ %s ជា​កញ្ចប់​និម្មិត​ដែល​បាន​ផ្តល់​ដោយ​ ៖\n" -#: cmdline/apt-get.cc:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [បានដំឡើង​]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "អ្នក​គួរតែ​ជ្រើស​យក​មួយ​​ឲ្យ​ច្បាស់​ដើម្បី​ដំឡើង​ ។" -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -957,74 +957,74 @@ msgstr "" "វា​មានន័យ​ថា​បាត់កញ្ចប់ ​គេ​លែង​ប្រើ ឬ\n" "អាច​រក​បាន​ពី​ប្រភព​ផ្សេង​ទៀត\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "ទោះ​យ៉ាងណា​ក៏ដោយ កញ្ចប់​ខាងក្រោម​ជំនួស​វា ៖" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "កញ្ចប់​ %s មិនមាន​ការដំឡើងសាកល្បងឡើយ" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "មិនអាចធ្វើការដំឡើង %s ឡើងវិញបានទេ វា​មិនអាចត្រូវបាន​ទាញយកបានឡើយ ។\n" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ជាកំណែ​ដែលថ្មីបំផុតរួចទៅហើយ ។\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "រក​មិន​ឃើញ​ការ​ចេញ​ផ្សាយ​ '%s' សម្រាប់​ '%s' ឡើយ" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "រក​មិន​ឃើញ​កំណែ​ '%s' សម្រាប់ '%s'" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "បានជ្រើស​កំណែ​ %s (%s) សម្រាប់ %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "ពាក្យ​បញ្ជា​ដែលធ្វើ​ឲ្យ​ទាន់​សម័យ​គ្មាន​អាគុយម៉ង់​ទេ" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "មិន​អាច​ចាក់​សោ​ថត​បញ្ជីបានឡើយ" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "កញ្ចប់​ថ្មី​ខាងក្រោម​នឹង​ត្រូវ​បាន​ដំឡើង​ ៖" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1040,51 +1040,51 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "ព័ត៌មាន​ដូចតទៅនេះ អាចជួយ​ដោះស្រាយ​ស្ថានភាព​បាន ៖" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "កំហុស​ខាងក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យខូច​ឧបករណ៍" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "កំហុស​ខាងក្នុង ការធ្វើឲ្យប្រសើរ​ទាំងអស់បានធ្វើឲ្យ​ឧបករណ៍​ខូច" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, fuzzy, c-format msgid "Couldn't find task %s" msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "មិន​អាច​រក​កញ្ចប់ %s បានទេ" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "ចំណាំ កំពុង​ជ្រើស​ %s សម្រាប់ regex '%s'\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ប៉ុន្តែ​ %s នឹង​ត្រូវ​បាន​ដំឡើ​ង" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "អ្នក​ប្រហែល​ជា​ចង់​រត់ `apt-get -f install' ដើម្បី​កែ​ពួក​វា​ទាំង​នេះ ៖" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" "ភាពអស្រ័យ​ដែល​ខុស​គ្នា ។ ព្យាយាម​ 'apt-get -f install' ដោយ​គ្មាន​កញ្ចប់ (ឬ បញ្ជាក់​ដំណោះស្រាយ) ។" -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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,122 +1096,122 @@ msgstr "" "ដែលបាន​ទាមទារនឹងមិនទាន់បានបង្កើត​ឡើយ​\n" " ឬ ​បានយក​ចេញ​ពីការមកដល់ ។" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "កញ្ចប់​ដែល​បាន​ខូច​" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "កញ្ចប់​បន្ថែម​ដូចតទៅនេះ នឹងត្រូវបាន​ដំឡើង ៖" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​យោបល់ ៖" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "កញ្ចប់​ដែល​បាន​ផ្ដល់​អនុសាសន៍ ៖" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "កំពុង​គណនា​ការ​ធ្វើ​ឲ្យ​ប្រសើរ... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "បាន​បរាជ័យ" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "ធ្វើរួច​" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "កំហុស​ខាងក្នុង អ្នក​ដោះស្រាយ​បញ្ហា​បានធ្វើឲ្យខូច​ឧបករណ៍" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "យ៉ាងហោចណាស់​ត្រូវ​​បញ្ជាក់​​កញ្ចប់​មួយ ​ដើម្បី​ទៅ​​ប្រមូល​យក​ប្រភព​សម្រាប់" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "មិន​អាច​រក​កញ្ចប់ប្រភព​​សម្រាប់ %s បានឡើយ" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "កំពុង​រំលង​ឯកសារ​ដែល​បាន​ទាញយក​រួច​ '%s'\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "អ្នក​ពុំ​មាន​ទំហំ​ទំនេរ​គ្រប់គ្រាន់​ទេ​នៅក្នុង​ %s ឡើយ" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "ត្រូវការ​យក​ %sB/%sB នៃ​ប័ណ្ណសារ​ប្រភព ។\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "ត្រូវការ​យក​ %sB នៃ​ប័ណ្ណសារ​ប្រភព​ ។\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "ទៅប្រមូល​ប្រភព​ %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "បរាជ័យ​ក្នុងការទៅប្រមូលយក​ប័ណ្ណសារ​មួយចំនួន ។" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "កំពុង​រំលង​ការស្រាយ​នៃប្រភព​ដែលបានស្រាយរួច​នៅក្នុង %s\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "ពាក្យ​បញ្ជា​ស្រាយ '%s' បាន​បរាជ័យ​ ។\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "ពិនិត្យ​ប្រសិន​បើកញ្ចប់ 'dpkg-dev' មិន​ទាន់​បាន​ដំឡើង​ ។\n" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "សាងសង​ពាក្យ​បញ្ជា​ '%s' បានបរាជ័យ​ ។\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "ដំណើរ​ការ​កូន​បាន​បរាជ័យ​" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "ត្រូវតែ​បញ្ជាក់​យ៉ាងហោចណាស់​មួយកញ្ចប់ដើម្បីពិនិត្យ builddeps សម្រាប់" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "មិន​អាច​សាងសង់​​ព័ត៌មាន​ភាពអស្រ័យ​សម្រាប់ %s" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s មិនមានភាពអាស្រ័យ​ស្ថាបនាឡើយ​ ។\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, 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:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1220,30 +1220,30 @@ msgstr "" "ភាពអាស្រ័យ %s សម្រាប់ %s មិនអាច​តម្រូវចិត្តបានទេ ព្រោះ មិនមាន​កំណែ​នៃកញ្ចប់ %s ដែលអាច​តម្រូវចិត្ត​" "តម្រូវការ​កំណែបានឡើយ" -#: cmdline/apt-get.cc:2551 +#: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "បរាជ័យ​ក្នុងការ​តម្រូវចិត្តភាពអាស្រ័យ %s សម្រាប់ %s ៖ កញ្ចប់ %s ដែលបានដំឡើង គឺថ្មីពេក" -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "បរាជ័យ​ក្នុងការ​តម្រូវចិត្តភាពអាស្រ័យ %s សម្រាប់ %s: %s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "ភាពអាស្រ័យ​ដែល​បង្កើត​ %s មិន​អាច​បំពេញ​សេចក្ដី​ត្រូវការ​បាន​ទេ ។" -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "បាន​បរាជ័យ​ក្នុង​ការ​ដំណើរ​​ការ​បង្កើត​ភាព​អាស្រ័យ" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "ម៉ូឌុល​ដែល​គាំទ្រ ៖ " -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1326,7 +1326,7 @@ msgstr "" "pages for more information and options.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1462,7 +1462,12 @@ msgstr "ហត្ថលេខា​ប័ណ្ណសា​រមិន​ត្ msgid "Error reading archive member header" msgstr "កំហុស​ក្នុងការ​អានបឋមកថា​សមាជិក​ប័ណ្ណសារ" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "បឋមកថា​សមាជិក​ប័ណ្ណសារ" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "បឋមកថា​សមាជិក​ប័ណ្ណសារ" @@ -1564,7 +1569,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2090,80 +2095,80 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "ជម្រើស​ %s រក​មិន​ឃើញ​ឡើយ" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "មិន​បាន​​ទទួល​ស្គាល់​ប្រភេទ​អក្សរ​សង្ខេប ៖ '%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "កំពុង​បើ​ឯកសារ​កំណត់រចនាសម្ព័ន្ធ​ %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "កំហុស​វាក្យ​សម្ពន្ធ %s:%u ៖ ប្លុក​ចាប់​ផ្តើម​​ដោយ​គ្មាន​ឈ្មោះ​ ។" -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "កំហុស​​វាក្យ​សម្ពន្ធ %s:%u ៖ ស្លាក​ដែលបាន Malformed" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "កំហុស​​វាក្យ​សម្ពន្ធ %s:%u ៖ តម្លៃ​ឥតបានការ​នៅ​ក្រៅ​" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ សេចក្ដីបង្គាប់​អាចត្រូវបានធ្វើ​តែនៅលើ​កម្រិត​កំពូល​តែប៉ុណ្ណោះ" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "កំហុស​វាក្យសម្ពន្ធ %s:%u ៖ មាន​ការរួមបញ្ចូល​ដែលដាក់​រួមគ្នា​យ៉ាងច្រើន" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "កំហុសវាក្យ​សម្ពន្ធ %s:%u ៖ បានរួម​បញ្ចូល​ពី​ទីនេះ​" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "កំហុស​វាក្យ​សម្ពន្ធ %s:%u ៖ សេចក្ដី​បង្គាប់​ដែល​មិនបានគាំទ្រ '%s'" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "កំហុស​វាក្យសម្ពន្ធ %s:%u ៖ សារឥតបានការ​បន្ថែម ដែលនៅខាងចុង​ឯកសារ" @@ -2475,7 +2480,7 @@ msgstr "ប្រភេទ​ '%s' មិន​ស្គាល់នៅលើប msgid "Malformed line %u in source list %s (vendor id)" msgstr "បន្ទាត់​ Malformed %u ក្នុង​បញ្ជី​ប្រភព​ %s (លេខសម្គាល់​ក្រុមហ៊ុន​លក់)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2865,12 +2870,12 @@ msgstr "បានសរសេរ %i កំណត់ត្រា​ជាមួ msgid "Installing %s" msgstr "បាន​ដំឡើង %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "កំពុង​កំណត់​រចនា​សម្ព័ន្ធ %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "កំពុង​យក %s ចេញ" @@ -2880,56 +2885,56 @@ msgstr "កំពុង​យក %s ចេញ" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "រាយបញ្ជី​ថត​ %spartial គឺ​បាត់បង់​ ។" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "កំពុងរៀបចំ​ %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "កំពុង​ស្រាយ %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "កំពុងរៀបចំ​កំណត់រចនាសម្ព័ន្ធ %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "បាន​ដំឡើង %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "កំពុងរៀបចំដើម្បី​ការយក​ចេញ​នៃ %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "បាន​យក %s ចេញ" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "កំពុង​រៀបចំ​យក %s ចេញ​ទាំង​ស្រុង" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "បាន​យក %s ចេញ​ទាំង​ស្រុង" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/ko.po b/po/ko.po index b6d9a3775..51249589a 100644 --- a/po/ko.po +++ b/po/ko.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2008-11-13 07:14+0900\n" "Last-Translator: Changwoo Ryu \n" "Language-Team: Korean \n" @@ -149,7 +149,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s(%s), 컴파일 시각 %s %s\n" @@ -647,7 +647,7 @@ msgstr "%s 파일의 이름을 %s(으)로 바꾸는 데 실패했습니다" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "정규식 컴파일 오류 - %s" @@ -809,11 +809,11 @@ msgstr "패키지를 지워야 하지만 지우기가 금지되어 있습니다. msgid "Internal error, Ordering didn't finish" msgstr "내부 오류. 순서변경작업이 끝나지 않았습니다" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "다운로드 디렉토리를 잠글 수 없습니다" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "소스 목록을 읽을 수 없습니다." @@ -844,7 +844,7 @@ msgstr "이 작업 후 %s바이트의 디스크 공간을 더 사용하게 됩 msgid "After this operation, %sB disk space will be freed.\n" msgstr "이 작업 후 %s바이트의 디스크 공간이 비워집니다.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s의 여유 공간의 크기를 파악할 수 없습니다" @@ -884,7 +884,7 @@ msgstr "중단." msgid "Do you want to continue [Y/n]? " msgstr "계속 하시겠습니까 [Y/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s 파일을 받는 데 실패했습니다 %s\n" @@ -893,7 +893,7 @@ msgstr "%s 파일을 받는 데 실패했습니다 %s\n" msgid "Some files failed to download" msgstr "일부 파일을 받는 데 실패했습니다" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "다운로드를 마쳤고 다운로드 전용 모드입니다" @@ -917,36 +917,36 @@ msgstr "빠진 패키지를 바로잡을 수 없습니다." msgid "Aborting install." msgstr "설치를 중단합니다." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "주의, %2$s 대신에 %1$s 패키지를 선택합니다\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "%s 패키지를 건너 뜁니다. 이미 설치되어 있고 업그레이드를 하지 않습니다.\n" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "%s 패키지를 설치하지 않았으므로, 지우지 않습니다\n" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "%s 패키지는 다음 패키지가 제공하는 가상 패키지입니다:\n" -#: cmdline/apt-get.cc:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [설치함]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "설치할 패키지를 하나 분명히 지정해야 합니다." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -957,73 +957,73 @@ msgstr "" "해당 패키지가 누락되었거나 지워졌다는 뜻입니다. 아니면 또 다른 곳에서\n" "패키지를 받아와야 하는 경우일 수도 있습니다.\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "하지만 다음 패키지가 대체합니다:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "%s 패키지는 설치할 수 있는 후보가 없습니다" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "%s 패키지를 다시 설치하는 건 불가능합니다. 다운로드할 수 없습니다.\n" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s 패키지는 이미 최신 버전입니다.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "%2$s 패키지의 '%1$s' 릴리즈를 찾을 수 없습니다" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "%2$s 패키지의 '%1$s' 버전을 찾을 수 없습니다" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "%3$s 패키지의 %1$s (%2$s) 버전을 선택합니다\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "update 명령은 인수를 받지 않습니다" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "목록 디렉토리를 잠글 수 없습니다" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "삭제를 할 수 없으므로 AutoRemover를 실행하지 못합니다" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "다음 새 패키지가 전에 자동으로 설치되었지만 더 이상 필요하지 않습니다:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "다음 새 패키지가 전에 자동으로 설치되었지만 더 이상 필요하지 않습니다:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "이들을 지우기 위해서는 'apt-get autoremove'를 사용하십시오." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1041,44 +1041,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "이 상황을 해결하는 데 다음 정보가 도움이 될 수도 있습니다:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "내부 오류, 문제 해결 프로그램이 무언가를 망가뜨렸습니다" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "내부 오류, AllUpgrade 프로그램이 무언가를 망가뜨렸습니다" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "%s 작업를 찾을 수 없습니다" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "%s 패키지를 찾을 수 없습니다" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "주의, 정규식 '%2$s'에 대하여 %1$s을(를) 선택합니다\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s 패키지 수동설치로 지정합니다.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 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:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1086,7 +1086,7 @@ msgstr "" "의존성이 맞지 않습니다. 패키지 없이 'apt-get -f install'을 시도해 보십시오 " "(아니면 해결 방법을 지정하십시오)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1097,115 +1097,115 @@ msgstr "" "불안정 배포판을 사용해서 일부 필요한 패키지를 아직 만들지 않았거나,\n" "아직 Incoming에서 나오지 않은 경우일 수도 있습니다." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "망가진 패키지" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "다음 패키지를 더 설치할 것입니다:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "제안하는 패키지:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "추천하는 패키지:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "업그레이드를 계산하는 중입니다... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "실패" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "완료" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "내부 오류, 문제 해결 프로그램이 무언가를 망가뜨렸습니다" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "해당되는 소스 패키지를 가져올 패키지를 최소한 하나 지정해야 합니다" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "%s의 소스 패키지를 찾을 수 없습니다" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "이미 다운로드 받은 파일 '%s'은(는) 다시 받지 않고 건너 뜁니다.\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "%s에 충분한 공간이 없습니다" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "소스 아카이브를 %s바이트/%s바이트 받아야 합니다.\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "소스 아카이브를 %s바이트 받아야 합니다.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "%s 소스를 가져옵니다\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "일부 아카이브를 가져오는 데 실패했습니다." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "%s에 이미 풀려 있는 소스의 압축을 풀지 않고 건너 뜁니다.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "압축 풀기 명령 '%s' 실패.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "'dpkg-dev' 패키지가 설치되었는지를 확인하십시오.\n" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "빌드 명령 '%s' 실패.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "하위 프로세스가 실패했습니다" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "해당되는 빌드 의존성을 검사할 패키지를 최소한 하나 지정해야 합니다" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s의 빌드 의존성 정보를 가져올 수 없습니다" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s 패키지에 빌드 의존성이 없습니다.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1214,7 +1214,7 @@ msgstr "" "%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지를 찾을 수 없습니" "다" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1223,32 +1223,32 @@ msgstr "" "%2$s에 대한 %1$s 의존성을 만족시킬 수 없습니다. %3$s 패키지의 사용 가능한 버" "전 중에서는 이 버전 요구사항을 만족시킬 수 없습니다" -#: cmdline/apt-get.cc:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%2$s에 대한 %1$s 의존성을 만족시키는 데 실패했습니다: %3$s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s의 빌드 의존성을 만족시키지 못했습니다." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "빌드 의존성을 처리하는 데 실패했습니다" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "지원하는 모듈:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1332,7 +1332,7 @@ msgstr "" "apt.conf(5) 매뉴얼 페이지를 보십시오.\n" " 이 APT는 Super Cow Powers로 무장했습니다.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1470,7 +1470,12 @@ msgstr "아카이브 서명이 틀렸습니다" msgid "Error reading archive member header" msgstr "아카이브 멤버 헤더를 읽는 데 오류가 발생했습니다" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "아카이브 멤버 헤더가 잘못되었습니다" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "아카이브 멤버 헤더가 잘못되었습니다" @@ -1572,7 +1577,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2100,80 +2105,80 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "선택한 %s이(가) 없습니다" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "이 타입 줄임말을 알 수 없습니다: '%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "설정 파일 %s 파일을 여는 중입니다" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "문법 오류 %s:%u: 블럭이 이름으로 시작하지 않습니다." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "문법 오류 %s:%u: 태그의 형식이 잘못되었습니다" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "문법 오류 %s:%u: 값 뒤에 쓰레기 데이터가 더 있습니다" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "문법 오류 %s:%u: 지시어는 맨 위 단계에서만 쓸 수 있습니다" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "문법 오류 %s:%u: include가 너무 많이 겹쳐 있습니다" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "문법 오류 %s:%u: 여기서 include됩니다" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "문법 오류 %s:%u: 지원하지 않는 지시어 '%s'" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "문법 오류 %s:%u: 파일의 끝에 쓰레기 데이터가 더 있습니다" @@ -2484,7 +2489,7 @@ msgstr "소스 목록 %3$s의 %2$u번 줄의 '%1$s' 타입을 알 수 없습니 msgid "Malformed line %u in source list %s (vendor id)" msgstr "소스 리스트 %2$s의 %1$u번 줄이 잘못되었습니다 (벤더 ID)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2876,12 +2881,12 @@ msgstr "레코드 %i개를 파일 %i개가 빠지고 %i개가 맞지 않은 상 msgid "Installing %s" msgstr "%s 설치하는 중입니다" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "%s 설정 중입니다" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "%s 패키지를 지우는 중입니다" @@ -2891,57 +2896,57 @@ msgstr "%s 패키지를 지우는 중입니다" msgid "Running post-installation trigger %s" msgstr "설치 후 트리거 %s 실행하는 중입니다" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "디렉토리 '%s' 없습니다." -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "%s 준비 중입니다" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "%s 푸는 중입니다" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "%s 패키지를 설정할 준비하는 중입니다" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "%s 설치" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "%s 패키지를 지울 준비하는 중입니다" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "%s 지움" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "%s 패키지를 완전히 지울 준비를 하는 중입니다" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "%s 패키지를 완전히 지웠습니다" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "로그에 쓰는데 실패. openpty() 실패(/dev/pts가 마운트되어있지 않습니까?)\n" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/ku.po b/po/ku.po index b9187e4f5..c72e27f4a 100644 --- a/po/ku.po +++ b/po/ku.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-ku\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2008-05-08 12:48+0200\n" "Last-Translator: Erdal Ronahi \n" "Language-Team: ku \n" @@ -156,7 +156,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -566,7 +566,7 @@ msgstr "" msgid "Y" msgstr "E" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "" @@ -725,11 +725,11 @@ msgstr "" msgid "Internal error, Ordering didn't finish" msgstr "" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Pelrêça daxistinê nayê quflekirin" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "" @@ -758,7 +758,7 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nikarî cihê vala li %s tesbît bike" @@ -792,7 +792,7 @@ msgstr "Betal." msgid "Do you want to continue [Y/n]? " msgstr "Dixwazî bidomînî [E/n]?" -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Anîna %s %s biserneket\n" @@ -801,7 +801,7 @@ msgstr "Anîna %s %s biserneket\n" msgid "Some files failed to download" msgstr "Daxistina çend pelan biserneket" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "" @@ -823,35 +823,35 @@ msgstr "" msgid "Aborting install." msgstr "Sazkirin tê betalkirin." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "" -#: cmdline/apt-get.cc:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Sazkirî]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "" -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -859,74 +859,74 @@ msgid "" "is only available from another source\n" msgstr "" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s jixwe guhertoya nûtirîn e.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Ev pakêtên NÛ dê werine sazkirin:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "Ev pakêtên NÛ dê werine sazkirin:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -942,49 +942,49 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Peywira %s nehate dîtin" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Nikarî pakêta %s bibîne" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "lê %s dê were sazkirin" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -992,152 +992,152 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Paketên şikestî" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Paketên tên pêşniyaz kirin:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Paketên tên tawsiyê kirin:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Bilindkirin tê hesibandin..." -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Serneket" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Temam" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "Cihê vala li %s têre nake" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Çavkanîna %s bîne\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Anîna çend arşîvan biserneket." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, 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:2551 +#: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1181,7 +1181,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1305,7 +1305,12 @@ msgstr "" msgid "Error reading archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, c-format +msgid "Invalid archive member header %s" +msgstr "" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "" @@ -1409,7 +1414,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -1934,80 +1939,80 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Hilbijartina %s nehatiye dîtin" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "" -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "" @@ -2318,7 +2323,7 @@ msgstr "" msgid "Malformed line %u in source list %s (vendor id)" msgstr "" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2694,12 +2699,12 @@ msgstr "" msgid "Installing %s" msgstr "%s hatine sazkirin" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "%s tê mîhengkirin" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "%s tê rakirin" @@ -2709,56 +2714,56 @@ msgstr "%s tê rakirin" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Peldanka '%s' kêm e" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "%s tê amadekirin" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "%s tê derxistin" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Mîhengkirina %s tê amadekirin" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "%s hatine sazkirin" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Rakirina %s tê amadekirin" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "%s hatine rakirin" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Bi tevahî rakirina %s tê amadekirin" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "%s bi tevahî hatine rakirin" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/mr.po b/po/mr.po index db5c1dc96..50da3a587 100644 --- a/po/mr.po +++ b/po/mr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2008-11-20 23:27+0530\n" "Last-Translator: Sampada \n" "Language-Team: Marathi, janabhaaratii, C-DAC, Mumbai, India " @@ -151,7 +151,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s हे %s करिता %s %s वर संग्रहित\n" @@ -647,7 +647,7 @@ msgstr "%s ला पुनर्नामांकन %s करण्यास msgid "Y" msgstr "होय" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "रिजेक्स कंपायलेशन त्रुटी -%s " @@ -808,11 +808,11 @@ msgstr "पॅकेजेस कायमची काढायची आहे msgid "Internal error, Ordering didn't finish" msgstr "अंतर्गत त्रुटी,क्रम अजून संपला नाही" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "डाऊनलोड डिरेक्टरी कुलूपबंद करण्यास असमर्थ" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "उगमांच्या याद्या वाचता येणार नाहीत." @@ -841,7 +841,7 @@ msgstr "या क्रियेनंतर, %sB एवढी अधिक ड msgid "After this operation, %sB disk space will be freed.\n" msgstr "या क्रियेनंतर, %sB डिस्क जागा मोकळी होईल.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "%s मध्ये रिकामी जागा सांगू शकत नाही" @@ -878,7 +878,7 @@ msgstr "व्यत्यय/बंद करा." msgid "Do you want to continue [Y/n]? " msgstr "तुम्हाला पुढे जायचे आहे [Y/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s आणणे असफल\n" @@ -887,7 +887,7 @@ msgstr "%s %s आणणे असफल\n" msgid "Some files failed to download" msgstr "काही संचिका डाऊनलोड करण्यास असमर्थ" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "डाऊनलोड संपूर्ण आणि डाऊनलोड मध्ये फक्त पद्धती" @@ -912,35 +912,35 @@ msgstr "न सापडणारी पॅकेजेस नीट करण msgid "Aborting install." msgstr "संस्थापन खंडित करत आहे." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "लक्षात घ्या,%s ऐवजी %s ची निवड करत आहे \n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "%s सोडून देत आहे, ते आधिच संस्थापित केले आहे आणि पुढिल आवृत्ती निश्चित केलेली नाही.\n" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "%s पॅकेज संस्थापित केलेले नाही,म्हणून काढले नाही\n" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "%s हे आभासी पॅकेज ह्यांच्याकडून तरतूद केले आहे,:\n" -#: cmdline/apt-get.cc:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr "[संस्थापित केले]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "तुम्ही संस्थापित करण्यासाठी एक निश्चित स्पष्टपणे निवडले पाहिजे." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -951,73 +951,73 @@ msgstr "" "याचा अर्थ असाही आहे की पॅकेज सापडत नाही,ते कालबाह्य किंवा \n" " म्हणजे ते दुसऱ्या उगमातून उपलब्ध\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "तथापि खालील पॅकेजेस मध्ये बदल झाला:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "%s पॅकेजला संस्थापित कॅन्डिडेट नाही" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "%s चे पुनर्संस्थापन शक्य नाही, हे डाऊनलोड करता येत नाही.\n" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ही आधीच नविन आवृत्ती आहे.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "'%s' साठी '%s' आवृत्ती सापडली नाही" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "'%s' साठी '%s' आवृत्ती सापडली नाही" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "%s साठी %s (%s) निवडलेली आवृत्ती.\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "सुधारित आवृत्तीचा विधान आर्ग्युमेंटस घेऊ शकत नाही." -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "संचयिका यादीला कुलुप लावण्यात असमर्थ" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "आपण या गोष्टी काढून टाकता नये, ऑटोरिमूव्हर सुरू करता येत नाही" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "खालील नवीन पॅकेजेस स्वयंचलितपणे संस्थापित झाली होती व आता आवश्यक नाहीत:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "ती काढून टाकण्यासाठी 'apt-get autoremove' वापरा." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1035,45 +1035,45 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "खालील माहिती परिस्थिती निवळण्यासाठी मदत ठरू शकेल:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "अंतर्गत त्रुटी, AutoRemoverने स्टफला तोडले" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "अंतर्गत त्रुटी,ऑलअपग्रेडने स्टफला तोडले" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "%s कार्य सापडू शकले नाही" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "%s पॅकेज सापडू शकले नाही" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "सूचना, '%s' रिजेक्स साठी %s ची निवड करत आहे\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s स्वहस्ते संस्थापित करायचे आहे.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" "तुम्हाला कदाचित `apt-get -f install'(एपीटी-गेट -एफ संस्थापन') प्रोग्राम चालू करावा " "लागेल'यात बदल करण्यासाठी:" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1081,7 +1081,7 @@ msgstr "" "अनमेट डिपेंडन्सीज.एपीटी-गेट -एफ संस्थापन (`apt-get -f install') पॅकेजशिवाय प्रयत्न करा " "(किंवा पर्याय सांगा)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1093,122 +1093,122 @@ msgstr "" "विभागणी असणारी पण हवी असणारी, तयार केली नसलेली पॅकेजेस वापरत असाल \n" "किंवा ती येणाऱ्यांपैकी बाहेर हलविली असतील." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "तुटलेली पॅकेजेस" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "खालील अतिरिक्त पॅकेजेस संस्थापित होतील:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "सुचवलेली पॅकेजेस:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "शिफारस केलेली पॅकेजेस:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "पुढिल आवृत्तीची गणती करीत आहे..." -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "असमर्थ" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "झाले" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "अंतर्गत त्रुटी, अडचण निवारकाने स्टफला तोडले" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "उगम शोधण्यासाठी किमान एक पॅकेज देणे/सांगणे गरजेचे आहे" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "%s उगम पॅकेज शोधणे शक्य नाही/शोधण्यास असमर्थ आहे" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "आधीच डाऊनलोड केलेली '%s' फाईल सोडून द्या\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "%s मध्ये पुरेशी जागा नाही" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "उगम अर्काईव्हज चा %sB/%sB घेण्याची गरज आहे.\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "उगम अर्काईव्हजचा %sB घेण्याची गरज आहे.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "%s उगम घ्या\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "काही अर्काईव्हज आणण्यास असमर्थ." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "%s मध्ये आधीच उघडलेल्या उगमातील उघडलेल्याला सोडून द्या किंवा वगळा\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "'%s' आज्ञा सुट्या करण्यास असमर्थ.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "'dpkg-dev' पॅकेज संस्थापित केले आहे का ते पडताळून पहा.\n" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "बांधणी करणाऱ्या आज्ञा '%s' अयशस्वी.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "चाईल्ड प्रक्रिया अयशस्वी" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "बिल्डेपस् कशासाठी ते पडताळण्यासाठी किमान एक पॅकेज सांगणे गरजेचे आहे" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s साठी बांधणी डिपेंडन्सी माहिती मिळवण्यास असमर्थ" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s ला बांधणी डिपेंडन्स नाहीत.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, 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:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1217,30 +1217,30 @@ msgstr "" "आवृतीची मागणी पूर्ण करण्यासाठी %s पॅकेजची आवृत्ती उपलब्ध नाही,त्यामुळे %s साठी %s " "डिपेंडन्सी पूर्ण होऊ शकत नाही" -#: cmdline/apt-get.cc:2551 +#: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "%s अवलंबित्व %s साठी पूर्ण होण्यास असमर्थ: संस्थापित पॅकेज %s खूपच नवीन आहे" -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%s साठी %s डिपेंडन्सी पूर्ण होण्यास असमर्थ: %s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s साठी बांधणी-डिपेंडन्सीज पूर्ण होऊ शकत नाही." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "बांधणी-डिपेंडन्सीज क्रिया पूर्ण करण्यास असमर्थ " -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "प्रोग्राम गटाला तांत्रिक मदत दिली:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1325,7 +1325,7 @@ msgstr "" " apt.conf(5) पुस्तिका पाने पहा.\n" " ह्या APT ला सुपर काऊ पॉवर्स आहेत\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1463,7 +1463,12 @@ msgstr "अयोग्य अर्काईव्ह ओळख सही" msgid "Error reading archive member header" msgstr "अर्काईव्ह मेंबर शीर्षक वाचण्यास त्रुटी" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "अयोग्य अर्काईव्ह मेंबर शीर्षक" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "अयोग्य अर्काईव्ह मेंबर शीर्षक" @@ -1565,7 +1570,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2093,80 +2098,80 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "%s निवडक भाग सापडत नाही" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "संक्षिप्तरुपाचा माहित नसलेला प्रकार: '%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "%s संरचना फाईल उघडत आहे" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "रचनेच्या नियमांचा दोष %s:%u: ब्लॉक नावाशिवाय सुरू होतो." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "रचनेच्या नियमांचा दोष : %s:%u: मालफॉर्मड् टॅग" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "रचनेच्या नियमांचा दोष %s:%u: मुल्यांच्या नंतर अधिक जंक" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "रचनेच्या नियमांचा दोष %s:%u: दिशादर्शक फक्त उच्च पातळीवर केले जाऊ शकतात" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "रचनेच्या नियमांचा दोष %s:%u: खूपच एकात एक इनक्लूडस्" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "रचनेच्या नियमांचा दोष %s:%u: ह्या पासून समाविष्ट " -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "नियम रचनेचा दोष %s:%u: '%s' दिशादर्शक असहाय्यकारी" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "नियम रचनेचा दोष %s:%u: फाईलच्या अंती अधिक जंक" @@ -2477,7 +2482,7 @@ msgstr "%s स्त्रोत सुचीमध्ये %u रेषेव msgid "Malformed line %u in source list %s (vendor id)" msgstr "स्त्रोत सुची %s (विक्रेता आयडी) मध्ये %u वाईट/व्यंग रेषा " -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2876,12 +2881,12 @@ msgstr "%i गहाळ संचिकाबरोबर आणि %i विज msgid "Installing %s" msgstr "%s संस्थापित होत आहे" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "%s संरचित होत आहे" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "%s काढून टाकत आहे" @@ -2891,56 +2896,56 @@ msgstr "%s काढून टाकत आहे" msgid "Running post-installation trigger %s" msgstr "संस्थापना-पश्चात ट्रिगर %s चालवत आहे" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "'%s' संचयिका गहाळ आहे" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "%s तयार करित आहे" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "%s सुटे/मोकळे करीत आहे " -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "%s संरचने साठी तयार करत आहे" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "%s संस्थापित झाले" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "%s ला काढून टाकण्यासाठी तयारी करत आहे" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "%s काढून टाकले" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "%s संपूर्ण काढून टाकण्याची तयारी करत आहे" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "%s संपूर्ण काढून टाकले" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "सत्रनोंद लिहिता येत नाही, openpty() असफल (/dev/pts आरोहित नाही?)\n" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/nb.po b/po/nb.po index 537a6f56d..b69aa0cbe 100644 --- a/po/nb.po +++ b/po/nb.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2009-02-01 18:26+0100\n" "Last-Translator: Hans Fredrik Nordhaug \n" "Language-Team: Norwegian Bokmal \n" @@ -159,7 +159,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -657,7 +657,7 @@ msgstr "Klarte ikke msgid "Y" msgstr "J" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Kompileringsfeil i regulrt uttrykk - %s" @@ -818,11 +818,11 @@ msgstr "Pakker trenges msgid "Internal error, Ordering didn't finish" msgstr "Intern feil, sortering fullfrte ikke" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Klarer ikke lse nedlastingsmappa" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Kan ikke lese kildlista." @@ -853,7 +853,7 @@ msgstr "Etter denne operasjonen vil %sB ekstra diskplass bli brukt.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Etter denne operasjonen vil %sB diskplass bli ledig.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Klarte ikke bestemme ledig plass i %s" @@ -891,7 +891,7 @@ msgstr "Avbryter." msgid "Do you want to continue [Y/n]? " msgstr "Vil du fortsette [Y/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Klarte ikke skaffe %s %s\n" @@ -900,7 +900,7 @@ msgstr "Klarte ikke msgid "Some files failed to download" msgstr "Noen av filene kunne ikke lastes ned" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Nedlasting fullfrt med innstillinga bare nedlasting" @@ -924,36 +924,36 @@ msgstr "Klarer ikke msgid "Aborting install." msgstr "Avbryter istallasjonen." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Merk, velger %s istedenfor %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "Omgr %s - den er allerede installert eller ikke satt til oppgradering.\n" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Installert]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Du m velge en pakke som skal installeres." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -964,73 +964,73 @@ msgstr "" "Dette kan bety at pakken mangler, er utgtt, eller bare finnes \n" "tilgjengelig fra en annen kilde.\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Flgende pakker erstatter den imidlertid:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Pakken %s har ingen installasjonskandidat" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Det er ikke mulig installere %s p nytt - den kan ikke nedlastes.\n" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s er allerede nyeste versjon.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Utgave %s av %s ble ikke funnet" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Versjon %s av %s ble ikke funnet" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Utvalgt versjon %s (%s) for %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Oppdaterings-kommandoen tar ingen argumenter" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Kan ikke lse listemappa" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 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:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Flgende pakker ble automatisk installert og er ikke lenger pkrevet:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "Flgende pakker ble automatisk installert og er ikke lenger pkrevet:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Bruk apt-get autoremove for fjerne dem." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1048,43 +1048,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "Flgende informasjon kan vre til hjelp med lse problemet:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Intern feil, autofjerneren (AutoRemover) dela noe" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Intern feil - AllUpgrade dela noe" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Klarte ikke finne oppgave %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Klarte ikke finne pakken %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Merk, velger %s istedenfor det regulre uttrykket %s\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s satt til manuell installasjon.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "Du vil kanskje utfre apt-get -f install for rette p disse:" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1092,7 +1092,7 @@ msgstr "" "Uinnfridde avhengighetsforhold. Prv apt-get -f install uten pakker (eller " "angi en lsning)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1104,122 +1104,122 @@ msgstr "" "at visse kjernepakker enn ikke er laget eller flyttet ut av Incoming for\n" "distribusjonen." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "delagte pakker" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Flgende ekstra pakker vil bli installert." -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Foresltte pakker:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Anbefalte pakker" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Beregner oppgradering... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Mislyktes" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Utfrt" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Intern feil, problemlser dela noe" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "Du m angi minst en pakke du vil ha kildekoden til" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Klarer ikke finne en kildekodepakke for %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Hopper over allerede nedlastet fil %s\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, 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:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Trenger skaffe %sB av %sB fra kildekodearkivet.\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Trenger skaffe %sB fra kildekodearkivet.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Skaffer kildekode %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Klarte ikke skaffe alle arkivene." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Omgr utpakking av allerede utpakket kilde i %s\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Utpakkingskommandoen %s mislyktes.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Sjekk om pakken dpkg-dev er installert.\n" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Byggekommandoen %s mislyktes.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Barneprosessen mislyktes" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "Du m angi minst en pakke du vil sjekke builddeps for" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Klarer ikke skaffe informasjon om bygge-avhengighetene for %s" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s har ingen avhengigheter.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, 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:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1228,32 +1228,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:2551 +#: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Klarte ikke tilfredsstille %s avhengighet for %s: den installerte pakken %" "s er for ny" -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Klarte ikke tilfredsstille %s avhengighet for %s: %s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Klarte ikke tilfredstille bygg-avhengighetene for %s." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Klarte ikke behandle forutsetningene for bygging" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Stttede moduler:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1338,7 +1338,7 @@ msgstr "" "for mer informasjon og flere innstillinger\n" " Denne APT har kraften til en Superku.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1477,7 +1477,12 @@ msgstr "Ugyldig arkivsignatur" msgid "Error reading archive member header" msgstr "Feil ved lesing av arkivmedlemshode" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Ugyldig arkivmedlemshode" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Ugyldig arkivmedlemshode" @@ -1579,7 +1584,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2116,80 +2121,80 @@ msgstr "" "Nvrende verdi: %lu. (man 5 apt.conf)" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Fant ikke utvalget %s" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Ukjent typeforkortelse: %c" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "pner oppsettsfila %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntaksfeil %s:%u: Blokka starter uten navn." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntaksfeil %s:%u: Feil p taggen" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Syntaksfeil %s:%u: Ugyldige angivelser etter verdien" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, 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 nivet" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntaksfeil %s:%u: For mange nstede inkluderte filer" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntaksfeil %s:%u: Inkludert herfra" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntaksfeil %s:%u: Direktivet %s er ikke stttet" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntaksfeil %s:%u: Ugyldige angivelser p slutten av fila" @@ -2500,7 +2505,7 @@ msgstr "Typen msgid "Malformed line %u in source list %s (vendor id)" msgstr "Feil p %u i kildelista %s (selgers id)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2895,12 +2900,12 @@ msgstr "Skrev %i poster med %i manglende filer og %i feile filer.\n" msgid "Installing %s" msgstr "Installerer %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Setter opp %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Fjerner %s" @@ -2910,56 +2915,56 @@ msgstr "Fjerner %s" msgid "Running post-installation trigger %s" msgstr "Kjrer etter-installasjonsutlser %s" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Mappa %s mangler" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Forbereder %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Pakker ut %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Forbereder oppsett av %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "Installerte %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Forbereder fjerning av %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "Fjernet %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Forbereder fullstendig slette %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "Fjernet %s fullstendig" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 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:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/ne.po b/po/ne.po index 816bc7df3..001e63ab0 100644 --- a/po/ne.po +++ b/po/ne.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2006-06-12 14:35+0545\n" "Last-Translator: Shiva Pokharel \n" "Language-Team: Nepali \n" @@ -154,7 +154,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -652,7 +652,7 @@ msgstr " %s मा %s पुन:नामकरण असफल भयो" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "संकलन त्रुटि रिजेक्स गर्नुहोस् - %s" @@ -813,11 +813,11 @@ msgstr "प्याकेजहरू हट्न चाहदैछन् त msgid "Internal error, Ordering didn't finish" msgstr "आन्तरिक त्रुटि, आदेश समाप्त भएको छैन" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "डाउनलोड डाइरेक्ट्री ताल्चा मार्न असक्षम" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "स्रोतहरुको सूचि पढ्न सकिएन ।" @@ -846,7 +846,7 @@ msgstr "अनप्याक गरिसके पछि थप डिस् msgid "After this operation, %sB disk space will be freed.\n" msgstr "%sB अनप्याक गरिसके पछि डिस्क खाली ठाउँ खाली हुनेछ ।\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr " %s मा खाली ठाऊँ निर्धारण गर्न सकिएन" @@ -883,7 +883,7 @@ msgstr "परित्याग गर्नुहोस् ।" msgid "Do you want to continue [Y/n]? " msgstr "के तपाईँ निरन्तरता दिन चाहनुहुन्छ [Y/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "%s %s तान्न असफल भयो\n" @@ -892,7 +892,7 @@ msgstr "%s %s तान्न असफल भयो\n" msgid "Some files failed to download" msgstr "केही फाइलहरू डाउनलोड गर्न असफल भयो" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "डाउनलोड समाप्त भयो र डाउनलोडमा मोड मात्रै छ" @@ -916,35 +916,35 @@ msgstr "हराइरहेको प्याकेजहरू सुधा msgid "Aborting install." msgstr "स्थापना परित्याग गरिदैछ ।" -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "द्रष्टब्य, %s को सट्टा %s चयन भइरहेछ\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "%s फड्किदैछ, यो पहिल्यै स्थापना भयो र स्तरवृद्धि सेट भएको छैन ।\n" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "प्याकेज %s स्थापना भएन, त्यसैले हटेन\n" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "प्याकेज %s ...द्वारा उपलब्ध गराइएको अवास्तविक प्याकेज हो:\n" -#: cmdline/apt-get.cc:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [स्थापना भयो]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "तपाईँले स्थापना गर्न स्पष्ट रुपमा एउटा चयन गर्नुहोस् ।" -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -955,74 +955,74 @@ msgstr "" "यसको मतलब प्याकेज हराइरहेको प्याकेज, बेकायम भयो\n" " अर्को स्रोतबाट मात्र उपलब्ध हुन्छ\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "जे भए पनि निम्न प्याकेजहरूले यसलाई बदल्छ:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "प्याकेज %s संग कुनै स्थापना उमेद्वार छैन" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr " %s को पुन: स्थापना सम्भव छैन, यो डाउनलोड हुन सक्दैन ।\n" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s पहिल्यै नयाँ संस्करण हो ।\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr " '%s' को लागि '%s' निष्काशन फेला पार्न सकिएन" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr " '%s' को लागि '%s' संस्करण फेला पार्न सकिएन" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "%s को लागि चयन भएको संस्करण %s (%s)\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "अद्यावधिक आदेशले कुनै तर्कहरू लिदैन" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "सूचि डाइरेक्ट्री ताल्चा मार्न असफल" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "निम्न नयाँ प्याकेजहरू स्थापना हुनेछन्:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1038,44 +1038,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "निम्न सूचनाले अवस्थालाई हल गर्न मद्दत गर्नेछ: " -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "आन्तरिक त्रुटि,समस्या हलकर्ताले उत्तम गुण भाँच्यो " -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "आन्तरिक त्रुटि,सबै स्तरवृद्धिले उत्तम गुण नष्ट गर्दछ" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, fuzzy, c-format msgid "Couldn't find task %s" msgstr "प्याकेज फेला पार्न सकिएन %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "प्याकेज फेला पार्न सकिएन %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "द्रष्टब्य, रिजेक्स '%s' को लागि %s चयन गरिदैछ\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "तर %s स्थापना हुनुपर्यो" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "तपाईँ यसलाई सुधार गर्न `apt-get -f install' चलाउन चाहनुहुन्छ:" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1083,7 +1083,7 @@ msgstr "" "नभेटिएका निर्भरताहरू । प्याकेजहरू बिना 'apt-get -f install' प्रयास गर्नुहोस् ( वा " "समाधान निर्दिष्ट गर्नुहोस्) ।" -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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,122 +1096,122 @@ msgstr "" " वितरण अहिले सम्म सिर्जना\n" " भएको छैन वा आवगमन विनानै सर्यो ।" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "भाँचिएका प्याकेजहरू" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "निम्न अतिरिक्त प्याकेजहरू स्थापना हुनेछन्:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "सुझाव दिएका प्याकेजहरू:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "सिफारिस गरिएका प्याकेजहरू:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "स्तर वृद्धि गणना गरिदैछ..." -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "असफल भयो" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "काम भयो" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "आन्तरिक त्रुटि,समस्या हलकर्ताले उत्तम गुण भाँच्यो " -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "को लागि स्रोत तान्न कम्तिमा एउटा प्याकेज निर्दिष्ट गर्नुपर्छ" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "%s को लागि स्रोत प्याकेज फेला पार्न असफल भयो" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "पहिल्यै डाउनलोड भएका फाइलहरु फड्काइदैछ '%s'\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "तपाईँ संग %s मा पर्याप्त खाली ठाऊँ छैन" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "स्रोत संग्रहहरुको %sB/%sB प्राप्त गर्न आवश्यक छ ।\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "स्रोत संग्रहहरुको %sB प्राप्त गर्न आवश्यक छ ।\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "स्रोत फड्काउनुहोस् %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "केही संग्रह फड्काउन असफल भयो ।" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr " %s मा पहिल्यै अनप्याक गरिएका स्रोतको अनप्याक फड्काइदैछ\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "अनप्याक आदेश '%s' असफल भयो ।\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "जाँच्नुहोस् यदि 'dpkg-dev' प्याकेज स्थापना भयो ।\n" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "निर्माण आदेश '%s' असफल भयो ।\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "शाखा प्रक्रिया असफल भयो" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "को लागि builddeps जाँच्न कम्तिमा एउटा प्याकेज निर्दष्ट गर्नुपर्छ" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "%s को लागि निर्माण-निर्भरता सूचना प्राप्त गर्न असक्षम भयो" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s कुनै निर्माणमा आधारित हुदैन ।\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, 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:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1220,30 +1220,30 @@ msgstr "" "%sको लागि %s निर्भरता सन्तुष्ट हुन सकेन किन भने प्याकेज %s को कुनै उपलब्ध संस्करणले संस्करण " "आवश्यकताहरुलाई सन्तुष्ट पार्न सकेन " -#: cmdline/apt-get.cc:2551 +#: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "%s को लागि %s निर्भरता सन्तुष्ट पार्न असफल भयो: स्थापित प्याकेज %s अति नयाँ छ" -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "%s को लागि %s निर्भरता सन्तुष्ट गर्न असफल: %s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "%s को लागि निर्माण निर्भरताहरू सन्तुष्ट गर्न सकिएन । " -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "निर्माण निर्भरताहरू प्रक्रिया गर्न असफल" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "समर्थित मोड्युलहरू:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1326,7 +1326,7 @@ msgstr "" "pages हेर्नुहोस् ।\n" " APT संग सुपर काउ शक्तिहरू छ ।\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1464,7 +1464,12 @@ msgstr "अवैध संग्रह हस्ताक्षर" msgid "Error reading archive member header" msgstr "संग्रह सदस्य हेडर पढ्दा त्रुटि " -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "अवैध संग्रह सदस्य हेडर" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "अवैध संग्रह सदस्य हेडर" @@ -1566,7 +1571,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2093,80 +2098,80 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "चयन %s फेला पार्न सकिएन" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "नचिनिएको टाइप संक्षिप्त रुप: '%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "कनफिगरेसन फाइल खोलिदैछ %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "वाक्य संरचना त्रुटि %s:%u: बन्द कुनै नाम बिना सुरू हुन्छ ।" -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "वाक्य संरचना त्रुटि %s:%u: वैरुप गरिएको ट्याग" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "वाक्य संरचना त्रुटि %s:%u: मान पछाडि अतिरिक्त जंक" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "वाक्य संरचना त्रुटि %s:%u: निर्देशनहरू माथिल्लो तहबाट मात्र हुन्छ" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "वाक्य संरचना त्रुटि %s:%u: अति धेरै नेस्टेड समावेश गर्दछ" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "वाक्य संरचना त्रुटि %s:%u: यहाँ बाट समावेश गरेको" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "वाक्य संरचना त्रुटि %s:%u: समर्थन नभएको डाइरेक्टिभ '%s'" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "वाक्य संरचना त्रुटि %s:%u:फाइलको अन्त्यमा अतिरिक्त जंक" @@ -2478,7 +2483,7 @@ msgstr "स्रोत सूची %s भित्र %u लाइनमा msgid "Malformed line %u in source list %s (vendor id)" msgstr "वैरुप्य लाइन %u स्रोत सूचिमा %s (बिक्रता आइडी)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2870,12 +2875,12 @@ msgstr "हराइरहेको फाइल %i हरू र मेल न msgid "Installing %s" msgstr " %s स्थापना भयो" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr " %s कनफिगर गरिदैछ" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr " %s हटाइदैछ" @@ -2885,56 +2890,56 @@ msgstr " %s हटाइदैछ" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "आंशिक सूचिहरुको डाइरेक्ट्री %s हराइरहेछ ।" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr " %s तयार गरिदैछ" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr " %s अनप्याक गरिदैछ" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr " %s कनफिगर गर्न तयार गरिदैछ" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr " %s स्थापना भयो" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr " %s हटाउन तयार गरिदैछ" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr " %s हट्यो" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr " %s पूर्ण रुपले हटाउन तयार गरिदैछ" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr " %s पूर्ण रुपले हट्यो" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/nl.po b/po/nl.po index be9a7a3c8..0b1d86877 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2008-05-05 18:39+0200\n" "Last-Translator: Bart Cornelis \n" "Language-Team: debian-l10n-dutch \n" @@ -152,7 +152,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -657,7 +657,7 @@ msgstr "Hernoemen van %s naar %s is mislukt" msgid "Y" msgstr "J" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Regex-compilatiefout - %s" @@ -819,11 +819,11 @@ msgstr "Pakketten moeten verwijderd worden maar verwijderen is uitgeschakeld." msgid "Internal error, Ordering didn't finish" msgstr "Interne fout, rangschikken is niet voltooid" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Kon de ophaalmap niet vergrendelen" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "De lijst van bronnen kon niet gelezen worden." @@ -854,7 +854,7 @@ msgstr "Door deze operatie zal er %sB extra schijfruimte gebruikt worden.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Door deze operatie zal er %sB schijfruimte vrijkomen.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kon de hoeveelheid vrije schijfruimte op %s niet bepalen" @@ -891,7 +891,7 @@ msgstr "Afbreken." msgid "Do you want to continue [Y/n]? " msgstr "Wilt u doorgaan [J/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ophalen van %s %s is mislukt\n" @@ -900,7 +900,7 @@ msgstr "Ophalen van %s %s is mislukt\n" msgid "Some files failed to download" msgstr "Ophalen van sommige bestanden is mislukt" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Ophalen klaar en alleen-ophalen-modus staat aan" @@ -924,37 +924,37 @@ msgstr "Geen oplossing voor de missende pakketten gevonden." msgid "Aborting install." msgstr "Installatie wordt afgebroken." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, 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:1068 +#: cmdline/apt-get.cc:1093 #, 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:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Geïnstalleerd]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "U dient er één expliciet te selecteren voor installatie." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -965,59 +965,59 @@ 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:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Echter, de volgende pakketten vervangen dit:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Pakket %s heeft geen installeerbare kandidaat" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s is reeds de nieuwste versie.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Release '%s' voor '%s' is niet gevonden" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Versie '%s' voor '%s' is niet gevonden" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Versie %s (%s) geselecteerd voor %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "De 'update'-opdracht aanvaard geen argumenten" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Kon de lijst-map niet vergrendelen" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 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:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1025,18 +1025,18 @@ msgstr "" "De volgende pakketten zijn automatisch geïnstalleerd en zijn niet langer " "nodig:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" "De volgende pakketten zijn automatisch geïnstalleerd en zijn niet langer " "nodig:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "U kunt deze verwijderen via 'apt-get autoremove'." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1054,45 +1054,45 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "De volgende informatie helpt u mogelijk verder:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Interne fout, AutoRemover heeft dingen stukgemaakt" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Interne fout, AllUpgrade heeft dingen stukgemaakt" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Kon taak %s niet vinden" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Kon pakket %s niet vinden" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, 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:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s is ingesteld voor handmatige installatie.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 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:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1100,7 +1100,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:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1111,119 +1111,119 @@ 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:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Niet-werkende pakketten:" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "De volgende extra pakketten zullen geïnstalleerd worden:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Voorgestelde pakketten:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Aanbevolen pakketten:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Opwaardering wordt doorgerekend... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Mislukt" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Klaar" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Interne fout, probleemoplosser heeft dingen stukgemaakt" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 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:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Kan geen bronpakket vinden voor %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Reeds opgehaald bestand '%s' wordt overgeslagen\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, 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:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Moet %sB/%sB aan bronarchieven ophalen.\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Moet %sB aan bronarchieven ophalen.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Ophalen bron %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Ophalen van sommige archieven is mislukt." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, 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:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Uitpakopdracht '%s' is mislukt.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, 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:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Bouwopdracht '%s' is mislukt.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Dochterproces is mislukt" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 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:2390 +#: cmdline/apt-get.cc:2415 #, 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:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s heeft geen bouwvereisten.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1232,7 +1232,7 @@ msgstr "" "De vereiste %s van pakket %s kan niet voldaan worden omdat pakket %s " "onvindbaar is" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1241,32 +1241,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:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, 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:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Bouwvereisten voor %s konden niet voldaan worden." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Verwerken van de bouwvereisten is mislukt" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Ondersteunde modules:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1355,7 +1355,7 @@ msgstr "" "voor meer informatie en opties.\n" " Deze APT heeft Super Koekrachten.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1499,7 +1499,12 @@ msgstr "Ongeldige archiefondertekening" msgid "Error reading archive member header" msgstr "Fout bij het lezen van de koptekst van het archief-onderdeel" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Ongeldige koptekst in archiefonderdeel" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Ongeldige koptekst in archiefonderdeel" @@ -1601,7 +1606,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2143,82 +2148,82 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Selectie %s niet gevonden" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Onbekende type-afkorting '%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Configuratiebestand %s wordt geopend" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntaxfout %s:%u: Blok start zonder naam." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntaxfout %s:%u: Verkeerd gevormde markering" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Syntaxfout %s:%u: Extra rommel na waarde" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Syntaxfout %s:%u: Richtlijnen kunnen enkel op het hoogste niveau gegeven " "worden" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntaxfout %s:%u: Teveel geneste invoegingen" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntaxfout %s:%u: Vanaf hier ingevoegd" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntaxfout %s:%u: Niet-ondersteunde richtlijn '%s'" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntaxfout %s:%u: Extra rommel aan het einde van het bestand" @@ -2534,7 +2539,7 @@ msgstr "Type '%s' op regel %u in bronlijst %s is onbekend" msgid "Malformed line %u in source list %s (vendor id)" msgstr "Misvormde regel %u in bronlijst %s (verkopers-ID)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2943,12 +2948,12 @@ msgstr "" msgid "Installing %s" msgstr "%s is geïnstalleerd" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "%s wordt geconfigureerd" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "%s wordt verwijderd" @@ -2958,58 +2963,58 @@ msgstr "%s wordt verwijderd" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Map '%s' is afwezig." -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "%s wordt voorbereid" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "%s wordt uitgepakt" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Configuratie van %s wordt voorbereid" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "%s is geïnstalleerd" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Verwijdering van %s wordt voorbereid" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "%s is verwijderd" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Volledige verwijdering van %s wordt voorbereid" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "%s is volledig verwijderd" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 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:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/nn.po b/po/nn.po index 14bc2a87b..14c348ac6 100644 --- a/po/nn.po +++ b/po/nn.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_nn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2005-02-14 23:30+0100\n" "Last-Translator: Havard Korsvoll \n" "Language-Team: Norwegian nynorsk \n" @@ -156,7 +156,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -654,7 +654,7 @@ msgstr "Klarte ikkje endra namnet p msgid "Y" msgstr "J" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Regex-kompileringsfeil - %s" @@ -817,11 +817,11 @@ msgstr "Nokre pakkar m msgid "Internal error, Ordering didn't finish" msgstr "Intern feil ved tilleggjing av avleiing" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Klarte ikkje lsa nedlastingskatalogen" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Kjeldelista kan ikkje lesast." @@ -850,7 +850,7 @@ msgstr "Etter utpakking vil %sB meir diskplass verta brukt.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Etter utpakking vil %sB meir diskplass verta frigjort.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, fuzzy, c-format msgid "Couldn't determine free space in %s" msgstr "Du har ikkje nok ledig plass i %s" @@ -888,7 +888,7 @@ msgstr "Avbryt." msgid "Do you want to continue [Y/n]? " msgstr "Vil du halda fram [J/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Klarte ikkje henta %s %s\n" @@ -897,7 +897,7 @@ msgstr "Klarte ikkje henta %s %s\n" msgid "Some files failed to download" msgstr "Klarte ikkje henta nokre av filene" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Nedlastinga er ferdig i nedlastingsmodus" @@ -921,37 +921,37 @@ msgstr "Klarte ikkje retta opp manglande pakkar." msgid "Aborting install." msgstr "Avbryt installasjon." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Merk, vel %s i staden for %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "Hoppar over %s, for den er installert fr fr og ikkje sett til " "oppgradering.\n" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Installert]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Du m velja ein som skal installerast." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -962,74 +962,74 @@ msgstr "" "av ein annan pakke. Dette tyder at pakket manglar, er gjort overfldig\n" "eller er berre tilgjengeleg fr ei anna kjelde\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Dei flgjande pakkane kan brukast i staden:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Det finst ingen installasjonskandidat for pakken %s" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "Den nyaste versjonen av %s er installert fr fr.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Fann ikkje utgva %s av %s" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Fann ikkje versjonen %s av %s" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Vald versjon %s (%s) for %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Oppdateringskommandoen tek ingen argument" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Klarte ikkje lsa listekatalogen" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Dei flgjande NYE pakkane vil verta installerte:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "Dei flgjande NYE pakkane vil verta installerte:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1045,44 +1045,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "Flgjande informasjon kan hjelpa med lysa situasjonen:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Intern feil. AllUpgrade ydelagde noko" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Intern feil. AllUpgrade ydelagde noko" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, fuzzy, c-format msgid "Couldn't find task %s" msgstr "Fann ikkje pakken %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Fann ikkje pakken %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Merk, vel %s i staden for regex %s\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "men %s skal installerast" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "Du vil kanskje prva retta p desse ved kyra apt-get -f install." -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1090,7 +1090,7 @@ msgstr "" "Nokre krav er ikkje oppfylte. Du kan prva apt-get -f install (eller velja " "ei lysing)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1102,123 +1102,123 @@ 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:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "ydelagde pakkar" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Dei flgjande tilleggspakkane vil verta installerte:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Fresltte pakkar:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Tilrdde pakkar" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Reknar ut oppgradering ... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Mislukkast" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Ferdig" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 #, fuzzy msgid "Internal error, problem resolver broke stuff" msgstr "Intern feil. AllUpgrade ydelagde noko" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 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:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Finn ingen kjeldepakke for %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, fuzzy, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Hoppar over utpakking av kjeldekode som er utpakka fr fr i %s\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, 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:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "M henta %sB/%sB med kjeldekodearkiv.\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "M henta %sB med kjeldekodearkiv.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Hent kjeldekode %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Klarte ikkje henta nokre av arkiva." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Hoppar over utpakking av kjeldekode som er utpakka fr fr i %s\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Utpakkingskommandoen %s mislukkast.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Byggjekommandoen %s mislukkast.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Barneprosessen mislukkast" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 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:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Klarte ikkje henta byggjekrav for %s" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s har ingen byggjekrav.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, 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:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1227,31 +1227,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:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Klarte ikkje oppfylla kravet %s for %s: %s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Byggjekrav for %s kunne ikkje tilfredstillast." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Klarte ikkje behandla byggjekrava" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Sttta modular:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1335,7 +1335,7 @@ msgstr "" "til apt-get(8), sources.list(5) og apt.conf(5).\n" " APT har superku-krefter.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1471,7 +1471,12 @@ msgstr "Ugyldig arkivsignatur" msgid "Error reading archive member header" msgstr "Feil ved lesing av arkivmedlemshovud" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Ugyldig arkivmedlemshovud" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Ugyldig arkivmedlemshovud" @@ -1573,7 +1578,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2106,80 +2111,80 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Fann ikkje utvalet %s" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Ukjend typeforkorting: %c" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Opnar oppsettsfila %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntaksfeil %s:%u: Blokka startar utan namn." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntaksfeil %s:%u: Misforma tagg" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Syntaksfeil %s:%u: Ekstra rot etter verdien" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "Syntaksfeil %s:%u: Direktiva kan berre liggja i det vste nivet" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntaksfeil %s:%u: For mange nsta inkluderte filer" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntaksfeil %s:%u: Inkludert herifr" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntaksfeil %s:%u: Direktivet %s er ikkje sttta" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntaksfeil %s:%u: Ekstra rot til slutt i fila" @@ -2491,7 +2496,7 @@ msgstr "Typen msgid "Malformed line %u in source list %s (vendor id)" msgstr "Misforma linje %u i kjeldelista %s (utgjevar-ID)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2889,12 +2894,12 @@ msgstr "Skreiv %i postar med %i manglande filer og %i filer som ikkje passa\n" msgid "Installing %s" msgstr " Installert: " -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, fuzzy, c-format msgid "Configuring %s" msgstr "Koplar til %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, fuzzy, c-format msgid "Removing %s" msgstr "Opnar %s" @@ -2904,56 +2909,56 @@ msgstr "Opnar %s" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "Listekatalogen %spartial manglar." -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, fuzzy, c-format msgid "Preparing %s" msgstr "Opnar %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, fuzzy, c-format msgid "Unpacking %s" msgstr "Opnar %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, fuzzy, c-format msgid "Preparing to configure %s" msgstr "Opnar oppsettsfila %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, fuzzy, c-format msgid "Installed %s" msgstr " Installert: " -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, fuzzy, c-format msgid "Removed %s" msgstr "Tilrdingar" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, fuzzy, c-format msgid "Preparing to completely remove %s" msgstr "Opnar oppsettsfila %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Completely removed %s" msgstr "Klarte ikkje fjerna %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/pl.po b/po/pl.po index 3f2d91676..07c046e51 100644 --- a/po/pl.po +++ b/po/pl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2008-11-13 17:10+0100\n" "Last-Translator: Wiktor Wandachowicz \n" "Language-Team: Polish \n" @@ -156,7 +156,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -656,7 +656,7 @@ msgstr "Nie udało się zmienić nazwy %s na %s" msgid "Y" msgstr "T" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Błąd kompilacji wyrażenia regularnego - %s" @@ -817,11 +817,11 @@ msgstr "Pakiety powinny zostać usunięte, ale Remove jest wyłączone." msgid "Internal error, Ordering didn't finish" msgstr "Błąd wewnętrzny, sortowanie niezakończone" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Nie udało się zablokować katalogu pobierania" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Nie udało się odczytać list źródeł." @@ -852,7 +852,7 @@ msgstr "Po tej operacji zostanie dodatkowo użyte %sB miejsca na dysku.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Po tej operacji zostanie zwolnione %sB miejsca na dysku.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nie udało się ustalić ilości wolnego miejsca w %s" @@ -889,7 +889,7 @@ msgstr "Przerwane." msgid "Do you want to continue [Y/n]? " msgstr "Kontynuować [T/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Nie udało się pobrać %s %s\n" @@ -898,7 +898,7 @@ msgstr "Nie udało się pobrać %s %s\n" msgid "Some files failed to download" msgstr "Nie udało się pobrać niektórych plików" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Ukończono pobieranie w trybie samego pobierania" @@ -922,36 +922,36 @@ msgstr "Nie udało się poprawić brakujących pakietów." msgid "Aborting install." msgstr "Przerywanie instalacji" -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Uwaga, wybieranie %s zamiast %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, 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:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Zainstalowany]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Należy jednoznacznie wybrać jeden z nich do instalacji." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -962,59 +962,59 @@ 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:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Jednak następujące pakiety go zastępują:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Pakiet %s nie ma kandydata do instalacji" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s jest już w najnowszej wersji.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Wydanie \"%s\" dla \"%s\" nie zostało znalezione" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Wersja \"%s\" dla \"%s\" nie została znaleziona" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Wybrano wersję %s (%s) dla %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Polecenie update nie wymaga żadnych argumentów" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Nie udało się zablokować katalogu list" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 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:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1022,18 +1022,18 @@ msgstr "" "Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej " "wymagane:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" "Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej " "wymagane:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Aby je usunąć należy użyć \"apt-get autoremove\"." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1051,43 +1051,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 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:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Błąd wewnętrzny, AutoRemover wszystko popsuł" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Błąd wewnętrzny, AllUpgrade wszystko popsuło" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Nie udało się odnaleźć zadania %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Nie udało się odnaleźć pakietu %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Uwaga, wybieranie %s za wyrażenie \"%s\"\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s zaznaczony jako zainstalowany ręcznie.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 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:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1095,7 +1095,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:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1107,120 +1107,120 @@ msgstr "" "w której niektóre pakiety nie zostały jeszcze utworzone lub przeniesione\n" "z katalogu Incoming (\"Przychodzące\")." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Pakiety są uszkodzone" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Zostaną zainstalowane następujące dodatkowe pakiety:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Sugerowane pakiety:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Polecane pakiety:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Obliczanie aktualizacji..." -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Nie udało się" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Gotowe" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Błąd wewnętrzny, rozwiązywanie problemów wszystko popsuło" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 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:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, 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:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Pomijanie już pobranego pliku \"%s\"\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, 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:2229 +#: cmdline/apt-get.cc:2254 #, 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:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Konieczne pobranie %sB archiwów źródeł.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Pobierz źródło %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Nie udało się pobrać niektórych archiwów." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, 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:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Polecenie rozpakowania \"%s\" zawiodło.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, 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:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Polecenie budowania \"%s\" zawiodło.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Proces potomny zawiódł" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 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 na czas budowania" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" "Nie udało się pobrać informacji o zależnościach na czas budowania dla %s" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s nie ma zależności czasu budowania.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1229,7 +1229,7 @@ msgstr "" "Zależność %s od %s nie może zostać spełniona, ponieważ nie znaleziono " "pakietu %s" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1238,32 +1238,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:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, 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:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Nie udało się spełnić zależności na czas budowania od %s." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Nie udało się przetworzyć zależności na czas budowania" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Obsługiwane moduły:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1349,7 +1349,7 @@ msgstr "" "apt-get(8), sources.list(5) i apt.conf(5).\n" " Ten APT ma moce Super Krowy.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1489,7 +1489,12 @@ msgstr "Nieprawidłowy podpis archiwum" msgid "Error reading archive member header" msgstr "Błąd przy czytaniu nagłówka składnika archiwum" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Nieprawidłowy nagłówek składnika archiwum" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Nieprawidłowy nagłówek składnika archiwum" @@ -1591,7 +1596,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2128,81 +2133,81 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Nie odnaleziono wyboru %s" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Nierozpoznany skrót typu: \"%c\"" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Otwieranie pliku konfiguracyjnego %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Błąd składniowy %s:%u: Blok nie zaczyna się nazwą." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Błąd składniowy %s:%u: Błędny znacznik" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Błąd składniowy %s:%u: Po wartości występują śmieci" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Błąd składniowy %s:%u: Dyrektywy mogą występować tylko na najwyższym poziomie" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Błąd składniowy %s:%u: Zbyt wiele zagnieżdżonych operacji include" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Błąd składniowy %s:%u: Włączony tutaj" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Błąd składniowy %s:%u: Nieobsługiwana dyrektywa \"%s\"" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Błąd składniowy %s:%u: Śmieci na końcu pliku" @@ -2513,7 +2518,7 @@ msgstr "Typ \"%s\" jest nieznany w linii %u listy źródeł %s" msgid "Malformed line %u in source list %s (vendor id)" msgstr "Nieprawidłowa linia %u w liście źródeł %s (identyfikator producenta)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2910,12 +2915,12 @@ msgstr "Zapisano %i rekordów z %i brakującymi plikami i %i niepasującymi\n" msgid "Installing %s" msgstr "Instalowanie %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Konfigurowanie %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Usuwanie %s" @@ -2925,58 +2930,58 @@ msgstr "Usuwanie %s" msgid "Running post-installation trigger %s" msgstr "Uruchamianie wyzwalacza post-installation %s" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Brakuje katalogu \"%s\"" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Przygotowanie %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Rozpakowywanie %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Przygotowanie do konfiguracji %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "Zainstalowany %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Przygotowanie do usunięcia %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "Usunięto %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Przygotowanie do całkowitego usunięcia %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "Całkowicie usunięto %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 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:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/pt.po b/po/pt.po index 1add74f32..b07d0bc07 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2008-09-09 20:54+0100\n" "Last-Translator: Miguel Figueiredo \n" "Language-Team: Portuguese \n" @@ -152,7 +152,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -652,7 +652,7 @@ msgstr "Falhou renomear %s para %s" msgid "Y" msgstr "S" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Erro de compilação de regex - %s" @@ -813,11 +813,11 @@ msgstr "Pacotes precisam de ser removidos mas Remove está desabilitado." msgid "Internal error, Ordering didn't finish" msgstr "Erro Interno, Ordering não terminou" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Impossível criar acesso exclusivo ao directório de downloads" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "A lista de fontes não pôde ser lida." @@ -848,7 +848,7 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Após esta operação, será libertado %sB de espaço em disco.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Não foi possível determinar o espaço livre em %s" @@ -885,7 +885,7 @@ msgstr "Abortado." msgid "Do you want to continue [Y/n]? " msgstr "Deseja continuar [Y/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Falhou obter %s %s\n" @@ -894,7 +894,7 @@ msgstr "Falhou obter %s %s\n" msgid "Some files failed to download" msgstr "Falhou o download de alguns ficheiros" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Download completo e em modo de fazer apenas o download" @@ -918,35 +918,35 @@ msgstr "Não foi possível corrigir os pacotes em falta." msgid "Aborting install." msgstr "A abortar a instalação." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Note, a seleccionar %s em vez de %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, 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:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Instalado]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Você deve seleccionar explicitamente um para instalar." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -957,60 +957,60 @@ 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:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "No entanto, os seguintes pacotes substituem-no:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "O pacote %s não tem candidato para instalação" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s já está na versão mais recente.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Não foi encontrado o Release '%s' para '%s'" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Não foi encontrada a versão '%s' para '%s'" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Versão seleccionada %s (%s) para %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "O comando update não leva argumentos" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Impossível criar acesso exclusivo ao directório de listas" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 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:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1018,18 +1018,18 @@ msgstr "" "Os seguintes pacotes foram instalados automaticamente e já não são " "necessários:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" "Os seguintes pacotes foram instalados automaticamente e já não são " "necessários:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Utilize 'apt-get autoremove' para os remover." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1047,43 +1047,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 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:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Erro Interno, o AutoRemover estragou coisas" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Erro Interno, AllUpgrade estragou algo" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Não foi possível encontrar a tarefa %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Impossível encontrar o pacote %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, 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:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s está definido para ser instalado manualmente.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 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:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1091,7 +1091,7 @@ msgstr "" "Dependências não satisfeitas. Tente `apt-get -f install' sem nenhum pacote " "(ou especifique uma solução)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1103,119 +1103,119 @@ msgstr "" "distribuição unstable em que alguns pacotes pedidos ainda não foram \n" "criados ou foram movidos do Incoming." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Pacotes estragados" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Os seguintes pacotes extra serão instalados:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Pacotes sugeridos:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Pacotes recomendados:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "A calcular a actualização... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Falhou" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Pronto" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Erro Interno, o solucionador de problemas estragou coisas" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 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:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, 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:2192 +#: cmdline/apt-get.cc:2217 #, 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:2223 +#: cmdline/apt-get.cc:2248 #, 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:2229 +#: cmdline/apt-get.cc:2254 #, 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:2232 +#: cmdline/apt-get.cc:2257 #, 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:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Obter código fonte %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Falhou obter alguns arquivos." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, 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:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "O comando de descompactação '%s' falhou.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, 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:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "O comando de compilação '%s' falhou.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "O processo filho falhou" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 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:2390 +#: cmdline/apt-get.cc:2415 #, 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:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s não tem dependências de compilação.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1224,7 +1224,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:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1233,32 +1233,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:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, 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:2594 +#: cmdline/apt-get.cc:2619 #, 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:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Falhou processar as dependências de compilação" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Módulos Suportados:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1345,7 +1345,7 @@ msgstr "" "sources.list(5) e apt.conf(5)\n" " Este APT tem Poderes de Super Vaca.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1487,7 +1487,12 @@ msgstr "Assinatura de arquivo inválida" msgid "Error reading archive member header" msgstr "Erro na leitura de cabeçalho membro de arquivo" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Cabeçalho membro de arquivo inválido" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Cabeçalho membro de arquivo inválido" @@ -1589,7 +1594,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2124,81 +2129,81 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "A selecção %s não foi encontrada" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Abreviatura de tipo desconhecida: '%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "A abrir o ficheiro de configuração %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Erro de sintaxe %s:%u: O bloco começa sem nome." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Erro de sintaxe %s:%u: Tag malformada" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Erro de sintaxe %s:%u: Lixo extra depois do valor" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Erro de sintaxe %s:%u: Directivas só podem ser feitas no nível mais alto" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Erro de sintaxe %s:%u: Demasiados includes encadeados" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Erro de sintaxe %s:%u: Incluído a partir deste ponto" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Erro de sintaxe %s:%u: Directiva '%s' não suportada" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Erro de sintaxe %s:%u: Lixo extra no final do ficheiro" @@ -2512,7 +2517,7 @@ msgstr "O tipo '%s' não é conhecido na linha %u na lista de fontes %s" msgid "Malformed line %u in source list %s (vendor id)" msgstr "Linha malformada %u na lista de fontes %s (id de fornecedor)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2925,12 +2930,12 @@ msgstr "" msgid "Installing %s" msgstr "A instalar %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "A configurar %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "A remover %s" @@ -2940,58 +2945,58 @@ msgstr "A remover %s" msgid "Running post-installation trigger %s" msgstr "A correr o 'trigger' de pós-instalação %s" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Falta o directório '%s'" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "A preparar %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "A desempacotar %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "A preparar para configurar %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "%s instalado" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "A preparar a remoção de %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "%s removido" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "A preparar para remover completamente %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "Remoção completa de %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 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:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 618af0b59..9b45d7867 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: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2008-11-17 02:33-0200\n" "Last-Translator: Felipe Augusto van de Wiel (faw) \n" "Language-Team: Brazilian Portuguese \n" "Language-Team: Romanian \n" @@ -155,7 +155,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -659,7 +659,7 @@ msgstr "Eșec la redenumirea lui %s în %s" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Eroare de compilare expresie regulată - %s" @@ -820,11 +820,11 @@ msgstr "Pachete trebuiesc șterse dar ștergerea este dezactivată." msgid "Internal error, Ordering didn't finish" msgstr "Eroare internă, Ordering nu s-a terminat" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Nu s-a putut bloca directorul de descărcare" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Lista surselor nu poate fi citită." @@ -854,7 +854,7 @@ msgstr "După această operație vor fi folosiți din disc încă %sB.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "După această operație se vor elibera %sB din spațiul ocupat pe disc.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "N-am putut determina spațiul disponibil în %s" @@ -892,7 +892,7 @@ msgstr "Renunțare." msgid "Do you want to continue [Y/n]? " msgstr "Vreți să continuați [Y/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Eșec la aducerea lui %s %s\n" @@ -901,7 +901,7 @@ msgstr "Eșec la aducerea lui %s %s\n" msgid "Some files failed to download" msgstr "Descărcarea unor fișiere a eșuat" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Descărcare completă și în modul doar descărcare" @@ -925,35 +925,35 @@ msgstr "Nu pot corecta pachetele lipsă." msgid "Aborting install." msgstr "Abandonez instalarea." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Notă, se selectează %s în locul lui %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, 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:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Instalat]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Ar trebui să alegeți în mod explicit unul pentru instalare." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -964,74 +964,74 @@ 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:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Oricum următoarele pachete îl înlocuiesc:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Pachetul %s nu are nici un candidat la instalare" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s este deja la cea mai nouă versiune.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Release '%s' pentru '%s' n-a fost găsită" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Versiunea '%s' pentru '%s' n-a fost găsită" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Versiune selectată %s (%s) pentru %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Comanda de actualizare nu are argumente" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Nu pot încuia directorul cu lista" # XXX: orice sugestie este bine-venită -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 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:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Următoarele pachete au fost instalate automat și nu mai sunt necesare:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "Următoarele pachete au fost instalate automat și nu mai sunt necesare:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Folosiți 'apt-get autoremove' pentru a le șterge." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1050,43 +1050,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 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:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Eroare internă, AutoRemover a deteriorat diverse chestiuni" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Eroare internă, înnoire totală a defectat diverse chestiuni" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Nu s-a putut găsi sarcina %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Nu pot găsi pachetul %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Notă, selectare %s pentru expresie regulată '%s'\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s este marcat ca fiind instalat manual.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 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:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1094,7 +1094,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:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1107,118 +1107,118 @@ msgstr "" "pachete\n" "cerute n-au fost create încă sau au fost mutate din Incoming." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Pachete deteriorate" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Următoarele extra pachete vor fi instalate:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Pachete sugerate:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Pachete recomandate:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Calculez înnoirea... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Eșec" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Terminat" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "" "Eroare internă, rezolvatorul de probleme a deteriorat diverse chestiuni" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 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:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, 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:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Sar peste fișierul deja descărcat '%s'\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, 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:2229 +#: cmdline/apt-get.cc:2254 #, 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:2232 +#: cmdline/apt-get.cc:2257 #, 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:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Aducere sursa %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Eșec la aducerea unor arhive." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, 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:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Comanda de despachetare '%s' eșuată.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, 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:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Comanda de construire '%s' eșuată.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Procesul copil a eșuat" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 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:2390 +#: cmdline/apt-get.cc:2415 #, 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:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s nu are dependențe înglobate.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1227,7 +1227,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:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1236,32 +1236,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:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, 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:2594 +#: cmdline/apt-get.cc:2619 #, 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:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Eșec la prelucrarea dependențelor de compilare" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Module suportate:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1348,7 +1348,7 @@ msgstr "" "pentru mai multe informații și opțiuni.\n" " Acest APT are puterile unei Super Vaci.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1489,7 +1489,12 @@ msgstr "Semnătură de arhivă necorespunzătoare" msgid "Error reading archive member header" msgstr "Eroare la citirea antetului membrului arhivei" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Antet de membru de arhivă necorespunzător" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Antet de membru de arhivă necorespunzător" @@ -1593,7 +1598,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2135,81 +2140,81 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Selecția %s nu a fost găsită" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Abreviere de tip nerecunoscut: „%c”" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Se deschide fișierul de configurare %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Eroare de sintaxă %s:%u: Blocul începe fără nume" -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Eroare de sintaxă %s:%u: etichetă greșită" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare după valoare" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Eroare de sintaxă %s:%u: Directivele pot fi date doar la nivelul superior" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Eroare de sintaxă %s:%u: prea multe imbricări incluse" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Eroare de sintaxă %s:%u: incluse de aici" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Eroare de sintaxă %s:%u: directivă nesuportată '%s'" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Eroare de sintaxă %s:%u: mizerii suplimentare la sfârșitul fișierului" @@ -2521,7 +2526,7 @@ msgstr "Tipul '%s' nu este cunoscut în linia %u din lista sursă %s" msgid "Malformed line %u in source list %s (vendor id)" msgstr "Linie greșită %u în lista sursă %s (identificator vânzător)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2930,12 +2935,12 @@ msgstr "" msgid "Installing %s" msgstr "Se instalează %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Se configurează %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Se șterge %s" @@ -2945,57 +2950,57 @@ msgstr "Se șterge %s" msgid "Running post-installation trigger %s" msgstr "Se rulează declanșatorul post-instalare %s" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Directorul „%s” lipsește." -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Se pregătește %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Se despachetează %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Se pregătește configurarea %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "Instalat %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Se pregătește ștergerea lui %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "Șters %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Se pregătește ștergerea completă a %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "Șters complet %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 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:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/ru.po b/po/ru.po index a9ab75d82..c21514958 100644 --- a/po/ru.po +++ b/po/ru.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2009-05-03 22:01+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" @@ -161,7 +161,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s для %s скомпилирован %s %s\n" @@ -662,7 +662,7 @@ msgstr "Не удалось переименовать %s в %s" msgid "Y" msgstr "д" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Ошибка компиляции регулярного выражения - %s" @@ -828,11 +828,11 @@ msgstr "Пакеты необходимо удалить, но удаление msgid "Internal error, Ordering didn't finish" msgstr "Внутренняя ошибка, Ordering не завершилась" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Невозможно заблокировать каталог, куда складываются скачиваемые файлы" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Не читается перечень источников." @@ -865,7 +865,7 @@ msgstr "" "После данной операции, объём занятого дискового пространства уменьшится на %" "sB.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Не удалось определить количество свободного места в %s" @@ -904,7 +904,7 @@ msgstr "Аварийное завершение." msgid "Do you want to continue [Y/n]? " msgstr "Хотите продолжить [Д/н]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Не удалось получить %s %s\n" @@ -913,7 +913,7 @@ msgstr "Не удалось получить %s %s\n" msgid "Some files failed to download" msgstr "Некоторые файлы скачать не удалось" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Указан режим \"только скачивание\", и скачивание завершено" @@ -937,35 +937,35 @@ msgstr "Невозможно исправить ситуацию с пропущ msgid "Aborting install." msgstr "Аварийное завершение установки." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Заметьте, вместо %2$s выбирается %1$s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "Пропускается %s - пакет уже установлен и нет команды upgrade.\n" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Пакет %s не установлен, поэтому не может быть удалён\n" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Пакет %s - виртуальный, его функции предоставляются пакетами:\n" -#: cmdline/apt-get.cc:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Установлен]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Вы должны явно указать, какой именно вы хотите установить." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -976,73 +976,73 @@ msgstr "" "Это может означать, что пакет отсутствует, устарел, или доступен из " "источников, не упомянутых в sources.list\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Однако следующие пакеты могут его заменить:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Для пакета %s не найдены кандидаты на установку" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Переустановка %s невозможна, он не скачивается.\n" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "Уже установлена самая новая версия %s.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Релиз '%s' для '%s' не найден" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Версия '%s' для '%s' не найдена" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Выбрана версия %s (%s) для %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "Нет пакета с исходным кодом '%s', вместо него берётся '%s'\n" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Команде update не нужны аргументы" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Невозможно заблокировать каталог со списками пакетов" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "Не предполагалось удалять stuff, невозможно запустить AutoRemover" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Следующие пакеты устанавливались автоматически и больше не требуются:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "Следующие пакеты устанавливались автоматически и больше не требуются:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Для их удаления используйте 'apt-get autoremove'." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1060,45 +1060,45 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "Следующая информация, возможно, поможет вам:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Внутренняя ошибка, AutoRemover всё поломал" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Внутренняя ошибка, AllUpgrade всё поломал" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Не удалось найти задачу %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Не удалось найти пакет %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Заметьте, выбирается %s из-за регулярного выражения %s\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s установлен вручную.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" "Возможно, для исправления этих ошибок вы захотите воспользоваться `apt-get -" "f install':" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1106,7 +1106,7 @@ msgstr "" "Неудовлетворённые зависимости. Попытайтесь выполнить 'apt-get -f install', " "не указывая имени пакета, (или найдите другое решение)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1117,118 +1117,118 @@ msgstr "" "или же используете нестабильную версию дистрибутива, где запрошенные вами\n" "пакеты ещё не созданы или были удалены из Incoming." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Сломанные пакеты" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Будут установлены следующие дополнительные пакеты:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Предлагаемые пакеты:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Рекомендуемые пакеты:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Расчёт обновлений... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Неудачно" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Готово" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Внутренняя ошибка, решатель проблем всё поломал" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "" "Укажите как минимум один пакет, исходный код которого необходимо получить" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Невозможно найти пакет с исходным кодом для %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Пропускаем уже скачанный файл '%s'\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "Недостаточно места в %s" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Необходимо получить %sб/%sб архивов исходного кода.\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Необходимо получить %sб архивов исходного кода.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Получение исходного кода %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Некоторые архивы не удалось получить." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Пропускается распаковка уже распакованного исходного кода в %s\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Команда распаковки '%s' завершилась неудачно.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Проверьте, установлен ли пакет 'dpkg-dev'.\n" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Команда сборки '%s' завершилась неудачно.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Порождённый процесс завершился неудачно" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "" "Для проверки зависимостей для сборки необходимо указать как минимум один " "пакет" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Невозможно получить информацию о зависимостях для сборки %s" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s не имеет зависимостей для сборки.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1237,7 +1237,7 @@ msgstr "" "Зависимость типа %s для %s не может быть удовлетворена, так как пакет %s не " "найден" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1246,32 +1246,32 @@ msgstr "" "Зависимость типа %s для %s не может быть удовлетворена, поскольку ни одна из " "версий пакета %s не удовлетворяет требованиям" -#: cmdline/apt-get.cc:2551 +#: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Не удалось удовлетворить зависимость типа %s для пакета %s: Установленный " "пакет %s новее, чем надо" -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Невозможно удовлетворить зависимость типа %s для пакета %s: %s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Зависимости для сборки %s не могут быть удовлетворены." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Обработка зависимостей для сборки завершилась неудачно" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Поддерживаемые модули:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1360,7 +1360,7 @@ msgstr "" "содержат подробную информацию и описание параметров.\n" " В APT есть коровья СУПЕРСИЛА.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1500,7 +1500,12 @@ msgstr "Неверная сигнатура архива" msgid "Error reading archive member header" msgstr "Ошибка чтения заголовка элемента архива" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Неправильный заголовок элемента архива" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Неправильный заголовок элемента архива" @@ -1602,7 +1607,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2143,82 +2148,82 @@ msgstr "" "Текущее значение: %lu. (man 5 apt.conf)" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "%liд %liч %liмин %liс" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "%liч %liмин %liс" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "%liмин %liс" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "%liс" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Не найдено: %s" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Неизвестная аббревиатура типа: '%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Открытие файла настройки %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Синтаксическая ошибка %s:%u: в начале блока нет имени." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Синтаксическая ошибка %s:%u: искажённый тег" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Синтаксическая ошибка %s:%u: лишние символы после значения" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Синтаксическая ошибка %s:%u: директивы могут задаваться только на верхнем " "уровне" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Синтаксическая ошибка %s:%u: слишком много вложенных include" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Синтаксическая ошибка %s:%u вызвана include из этого места" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Синтаксическая ошибка %s:%u: не поддерживаемая директива '%s'" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Синтаксическая ошибка %s:%u: лишние символы в конце файла" @@ -2537,7 +2542,7 @@ msgstr "Неизвестный тип '%s' в строке %u в списке и msgid "Malformed line %u in source list %s (vendor id)" msgstr "Искажённая строка %u в списке источников %s (vendor id)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2934,12 +2939,12 @@ msgstr "" msgid "Installing %s" msgstr "Устанавливается %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Настройка %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Удаление %s" @@ -2949,58 +2954,58 @@ msgstr "Удаление %s" msgid "Running post-installation trigger %s" msgstr "Выполняется послеустановочный триггер %s" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Каталог %s отсутствует" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Подготавливается %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Распаковывается %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Подготавливается для настройки %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "Установлен %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Подготавливается для удаления %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "Удалён %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Подготовка к полному удалению %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "%s полностью удалён" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Не удалось записать в журнал, неудачное выполнение openpty() (/dev/pts не " "смонтирован?)\n" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/sk.po b/po/sk.po index dafa3859c..55de39ef9 100644 --- a/po/sk.po +++ b/po/sk.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2009-07-21 12:45+0100\n" "Last-Translator: Ivan Masár \n" "Language-Team: Slovak \n" @@ -155,7 +155,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -650,7 +650,7 @@ msgstr "Premenovanie %s na %s zlyhalo" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Chyba pri preklade regulárneho výrazu - %s" @@ -811,11 +811,11 @@ msgstr "Je potrebné odstránenie balíka, ale funkcia Odstrániť je vypnutá." msgid "Internal error, Ordering didn't finish" msgstr "Vnútorná chyba, Triedenie sa neukončilo" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Adresár pre sťahovanie sa nedá zamknúť" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Nedá sa načítať zoznam zdrojov." @@ -846,7 +846,7 @@ msgstr "Po tejto operácii sa na disku použije ďalších %sB.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Po tejto operácii sa na disku uvoľní %sB.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Na %s sa nedá zistiť veľkosť voľného miesta" @@ -883,7 +883,7 @@ msgstr "Prerušené." msgid "Do you want to continue [Y/n]? " msgstr "Chcete pokračovať [Y/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Zlyhalo stiahnutie %s %s\n" @@ -892,7 +892,7 @@ msgstr "Zlyhalo stiahnutie %s %s\n" msgid "Some files failed to download" msgstr "Niektoré súbory sa nedajú stiahnuť" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Sťahovanie ukončené v režime „iba stiahnuť“" @@ -916,35 +916,35 @@ msgstr "Chýbajúce balíky sa nedajú opraviť." msgid "Aborting install." msgstr "Inštalácia sa prerušuje." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Poznámka: %s sa vyberá namiesto %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, 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:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr "[Inštalovaný]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Mali by ste explicitne vybrať jeden na inštaláciu." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -954,75 +954,75 @@ 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:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Avšak nahrádzajú ho nasledovné balíky:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Balík %s nemá kandidáta na inštaláciu" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s je už najnovšej verzie.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Nebolo nájdené vydanie „%s“ pre „%s“" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Nebola nájdená verzia „%s“ pre „%s“" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Zvolená verzia %s (%s) pre %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "Zdrojový balík „%s“ neexistuje, namiesto neho sa použije „%s“\n" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Príkaz update neprijíma žiadne argumenty" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Adresár zoznamov sa nedá zamknúť" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 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:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" "Nasledovné balíky boli nainštalované automaticky a už viac nie sú potrebné:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" "Nasledovné balíky boli nainštalované automaticky a už viac nie sú potrebné:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Na ich odstránenie použite „apt-get autoremove“." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1040,43 +1040,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 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:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Vnútorná chyba, AutoRemover niečo pokazil" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Vnútorná chyba, AllUpgrade pokazil veci" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Nebolo možné nájsť úlohu %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Balík %s sa nedá nájsť" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, 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:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s je nastavený na manuálnu inštaláciu.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "Na opravu nasledovných môžete spustiť „apt-get -f install“:" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1084,7 +1084,7 @@ msgstr "" "Nesplnené závislosti. Skúste spustiť „apt-get -f install“ bez balíkov (alebo " "navrhnite riešenie)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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,124 +1096,124 @@ msgstr "" "požadované balíky ešte neboli vytvorené alebo presunuté z fronty\n" "Novoprichádzajúcich (Incoming) balíkov." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Poškodené balíky" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Nainštalujú sa nasledovné extra balíky:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Navrhované balíky:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Odporúčané balíky:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Prepočítava sa aktualizácia... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Chyba" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Hotovo" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Vnútorná chyba, „problem resolver“ niečo pokazil" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 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:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, 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:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Preskakuje sa už stiahnutý súbor „%s“\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, 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:2229 +#: cmdline/apt-get.cc:2254 #, 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:2232 +#: cmdline/apt-get.cc:2257 #, 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:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Stiahnuť zdroj %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Zlyhalo stiahnutie niektorých archívov." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, 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:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Príkaz na rozbalenie „%s“ zlyhal.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, 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:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Príkaz na zostavenie „%s“ zlyhal.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Proces potomka zlyhal" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 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:2390 +#: cmdline/apt-get.cc:2415 #, 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:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s nemá žiadne závislosti na zostavenie.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, 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:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1222,31 +1222,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:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Zlyhalo splnenie %s závislosti pre %s: %s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Závislosti na zostavenie %s sa nedajú splniť." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Spracovanie závislostí na zostavenie zlyhalo" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Podporované moduly:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1330,7 +1330,7 @@ msgstr "" "a apt.conf(5).\n" " Tento APT má schopnosti posvätnej kravy.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1471,7 +1471,12 @@ msgstr "Neplatný podpis archívu" msgid "Error reading archive member header" msgstr "Chyba pri čítaní záhlavia prvku archívu" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Neplatné záhlavie prvku archívu" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Neplatné záhlavie prvku archívu" @@ -1573,7 +1578,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2106,81 +2111,81 @@ msgstr "" "Limit. Aktuálna hodnota: %lu. (man 5 apt.conf)" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "%li d %li h %li min %li s" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "%li h %li min %li s" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "%li min %li s" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "%li s" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Voľba %s nenájdená" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Nerozpoznaná skratka typu: „%c“" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Otvára sa konfiguračný súbor %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntaktická chyba %s:%u: Blok začína bez názvu." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntaktická chyba %s:%u: Skomolená značka" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Syntaktická chyba %s:%u: Za hodnotou nasledujú chybné údaje" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Syntaktická chyba %s:%u: Direktívy sa dajú vykonať len na najvyššej úrovni" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntaktická chyba %s:%u: Príliš mnoho vnorených prepojení (include)" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntaktická chyba %s:%u: Zahrnuté odtiaľ" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntaktická chyba %s:%u: Nepodporovaná direktíva „%s“" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntaktická chyba %s:%u: Na konci súboru sú chybné údaje" @@ -2491,7 +2496,7 @@ msgstr "Typ „%s“ je neznámy na riadku %u v zozname zdrojov %s" msgid "Malformed line %u in source list %s (vendor id)" msgstr "Skomolený riadok %u v zozname zdrojov %s (id výrobcu)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2884,12 +2889,12 @@ msgstr "Zapísaných %i záznamov s %i chýbajúcimi a %i chybnými súbormi\n" msgid "Installing %s" msgstr "Inštaluje sa %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Nastavuje sa %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Odstraňuje sa %s" @@ -2899,58 +2904,58 @@ msgstr "Odstraňuje sa %s" msgid "Running post-installation trigger %s" msgstr "Vykonáva sa spúšťač post-installation %s" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Adresár „%s“ chýba" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Pripravuje sa %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Rozbaľuje sa %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Pripravuje sa nastavenie %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "Nainštalovaný balík %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Pripravuje sa odstránenie %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "Odstránený balík %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Pripravuje sa úplné odstránenie %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "Balík „%s“ je úplne odstránený" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 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:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/sl.po b/po/sl.po index 649614259..11533a4ed 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2005-02-16 22:18+0100\n" "Last-Translator: Jure Cuhalev \n" "Language-Team: Slovenian \n" @@ -150,7 +150,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -649,7 +649,7 @@ msgstr "Ni mogo msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Napaka pri prevajanju regex - %s" @@ -812,11 +812,11 @@ msgstr "Odstraniti je potrebno pakete, a je Odstranjevanje onemogo msgid "Internal error, Ordering didn't finish" msgstr "Notranja napaka pri dodajanju odklona" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Ni mogoe zakleniti imenika za prenose" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Seznama virov ni mogoe brati." @@ -845,7 +845,7 @@ msgstr "Po odpakiranju bo uporabljenega %sB dodatnega prostora na disku.\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Po odpakiranju bo sproenega %sB prostora na disku.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, fuzzy, c-format msgid "Couldn't determine free space in %s" msgstr "Nimate dovolj prostora na %s" @@ -882,7 +882,7 @@ msgstr "Prekini." msgid "Do you want to continue [Y/n]? " msgstr "Ali elite nadaljevati [Y/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Ni mogoe dobiti %s %s\n" @@ -891,7 +891,7 @@ msgstr "Ni mogo msgid "Some files failed to download" msgstr "Prenos nekaterih datotek ni uspel" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Prenos dokonan in uporabljen nain samo prenos" @@ -915,35 +915,35 @@ msgstr "Ni mogo msgid "Aborting install." msgstr "Prekinjanje namestitve." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Opomba: izbran %s namesto %s \n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "%s preskoen, ker je e nameen in ne potrebuje nadgradnje.\n" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Paket %s ni nameen, zato ni odstranjen\n" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Nameeno]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Sami izberite paket, ki ga elite namestiti." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -954,74 +954,74 @@ msgstr "" "To ponavadi pomeni, da paket manjka, je zastaran ali\n" "pa je na voljo samo iz drugega vira.\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Kakorkoli, naslednji paketi ga nadomestijo:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Paket %s nima kandidata za namestitev" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Ponovna namestitev %s ni mona, ker ni moen prenos.\n" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "Najnoveja razliica %s je e nameena.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Izdaje '%s' za '%s' ni mogoe najti" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Razliice '%s' za '%s' ni mogoe najti" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Izbrana razliica %s (%s) za %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Ukaz update ne potrebuje argumentov" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Imenika seznamov ni mogoe zakleniti" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Naslednji NOVI paketi bodo nameeni:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "Naslednji NOVI paketi bodo nameeni:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1037,44 +1037,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "Naslednji podatki vam bodo morda pomagali reiti teavo:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Notranja napaka zaradi AllUpgrade." -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Notranja napaka zaradi AllUpgrade." -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, fuzzy, c-format msgid "Couldn't find task %s" msgstr "Ni mogoe najti paketa %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Ni mogoe najti paketa %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Opomba: izbran %s namesto regex '%s'\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "vendar bo paket %s nameen" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 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:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1082,7 +1082,7 @@ msgstr "" "Nereene odvisnosti. Poskusite 'apt-get -f install' brez paketov (ali " "podajte reitev)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1093,126 +1093,126 @@ msgstr "" "nemogo poloaj, e uporabljate nestabilno izdajo pa, da nekateri zahtevani " "paketi e niso ustvarjeni ali preneeni iz Prihajajoe." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Pokvarjeni paketi" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Naslednji dodatni paketi bodo nameeni:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Predlagani paketi:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Priporoeni paketi:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Preraunavanje nadgradnje ... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Spodletelo" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Opravljeno" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 #, fuzzy msgid "Internal error, problem resolver broke stuff" msgstr "Notranja napaka zaradi AllUpgrade." -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 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:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Izvornega paketa za %s ni mogoe najti" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, fuzzy, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Odpakiranje e odpakiranih izvornih paketov v %s preskoeno\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "Nimate dovolj prostora na %s" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, 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:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Potrebno je dobiti %sB izvornih arhivov.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Dobi vir %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Nekaterih arhivov ni mogoe dobiti." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Odpakiranje e odpakiranih izvornih paketov v %s preskoeno\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Ukaz odpakiranja '%s' ni uspel.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Ukaz gradnje '%s' ni uspel.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Otroki proces ni uspel" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 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:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Ni mogoe dobiti informacij o odvisnostih za gradnjo za %s" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s nima odvisnosti za gradnjo.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "%s odvisnosti za %s ni mogoe zadostiti, ker ni mogoe najti paketa %s" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1221,31 +1221,31 @@ msgstr "" "%s odvisnosti za %s ni mogoe zadostiti, ker nobena razliica paketa %s ne " "more zadostiti zahtevi po razliici" -#: cmdline/apt-get.cc:2551 +#: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Ni mogoe zadostiti %s odvisnosti za %s. Nameen paket %s je preve nov" -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Ni mogoe zadostiti %s odvisnosti za %s. %s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Odvisnostim za gradnjo %s ni mogoe zadostiti." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Obdelava odvisnosti za gradnjo ni uspela" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Podprti moduli:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1328,7 +1328,7 @@ msgstr "" "sources.list(5) in apt.conf(5).\n" " APT ima mo Super Krave.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1467,7 +1467,12 @@ msgstr "Napa msgid "Error reading archive member header" msgstr "Napaka pri branju glave lana arhiva" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Napana glava lana arhiva" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Napana glava lana arhiva" @@ -1569,7 +1574,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2098,81 +2103,81 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Izbira %s ni mogoe najti" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Ne-prepoznan tip okrajave: '%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Odpiranje nastavitvene datoteke %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Skladenjska napaka %s:%u: Blok se zane brez imena." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Skladenjska napaka %s:%u: Nepravilna znaka." -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Skladenjska napaka %s:%u: Dodatno smetje za vrednostjo." -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Skladenjska napaka %s:%u: Napotki se lahko izvedejo le na vrhnjem nivoju." -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Skladenjska napaka %s:%u: Preve ugnezdenih vkljuitev." -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Skladenjska napaka %s:%u: Vkljuen od tu." -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Skladenjska napaka %s:%u: Nepodprt napotek '%s'" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Skladenjska napaka %s:%u: Dodatno smetje na koncu datoteke" @@ -2484,7 +2489,7 @@ msgstr "Vrsta '%s' v vrstici %u v seznamu virov %s ni znana" msgid "Malformed line %u in source list %s (vendor id)" msgstr "Napana vrstica %u v seznamu virov %s (ID ponudnika)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2884,12 +2889,12 @@ msgstr "" msgid "Installing %s" msgstr " Nameen: " -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, fuzzy, c-format msgid "Configuring %s" msgstr "Povezujem se z %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, fuzzy, c-format msgid "Removing %s" msgstr "Odpiram %s" @@ -2899,56 +2904,56 @@ msgstr "Odpiram %s" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "Manjka imenik s seznami %spartial." -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, fuzzy, c-format msgid "Preparing %s" msgstr "Odpiram %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, fuzzy, c-format msgid "Unpacking %s" msgstr "Odpiram %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, fuzzy, c-format msgid "Preparing to configure %s" msgstr "Odpiranje nastavitvene datoteke %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, fuzzy, c-format msgid "Installed %s" msgstr " Nameen: " -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, fuzzy, c-format msgid "Removed %s" msgstr "Priporoa" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, fuzzy, c-format msgid "Preparing to completely remove %s" msgstr "Odpiranje nastavitvene datoteke %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, fuzzy, c-format msgid "Completely removed %s" msgstr "Odstranitev %s ni uspela" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/sv.po b/po/sv.po index fc04f86c3..f6b5cb517 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2009-03-03 23:15+0100\n" "Last-Translator: Daniel Nylander \n" "Language-Team: Swedish \n" @@ -152,7 +152,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -653,7 +653,7 @@ msgstr "Misslyckades med att byta namn på %s till %s" msgid "Y" msgstr "J" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Fel vid kompilering av reguljärt uttryck - %s" @@ -815,11 +815,11 @@ msgstr "Paketen måste tas bort men \"Remove\" är inaktiverat." msgid "Internal error, Ordering didn't finish" msgstr "Internt fel. Sorteringen färdigställdes inte" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Kunde inte låsa hämtningskatalogen" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Listan över källor kunde inte läsas." @@ -851,7 +851,7 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Efter denna åtgärd kommer %sB att frigöras på disken.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Kunde inte fastställa ledigt utrymme i %s" @@ -889,7 +889,7 @@ msgstr "Avbryter." msgid "Do you want to continue [Y/n]? " msgstr "Vill du fortsätta [J/n]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Misslyckades med att hämta %s %s\n" @@ -898,7 +898,7 @@ msgstr "Misslyckades med att hämta %s %s\n" msgid "Some files failed to download" msgstr "Misslyckades med att hämta vissa filer" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Hämtningen färdig i \"endast-hämta\"-läge" @@ -922,36 +922,36 @@ msgstr "Kunde inte korrigera saknade paket." msgid "Aborting install." msgstr "Avbryter installationen." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, 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:1068 +#: cmdline/apt-get.cc:1093 #, 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:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Installerat]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Du bör uttryckligen ange ett att installera." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -962,76 +962,76 @@ 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:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Dock kan följande paket ersätta det:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Paketet %s har ingen installationskandidat" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s är redan den senaste versionen.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Utgåvan \"%s\" för \"%s\" hittades inte" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Version \"%s\" för \"%s\" hittades inte" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Vald version %s (%s) för %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Uppdateringskommandot tar inga argument" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Kunde inte låsa listkatalogen" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 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:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" "Följande paket har installerats automatiskt och är inte längre nödvändiga:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" "Följande paket har installerats automatiskt och är inte längre nödvändiga:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Använd \"apt-get autoremove\" för att ta bort dem." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1049,44 +1049,44 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 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:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Internt fel, AutoRemover förstörde något" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Internt fel, AllUpgrade förstörde något" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Kunde inte hitta funktionen %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Kunde inte hitta paketet %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, 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:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s är satt till manuellt installerad.\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" "Du kan möjligen rätta till detta genom att köra \"apt-get -f install\":" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1094,7 +1094,7 @@ msgstr "" "Otillfredsställda beroenden. Prova med \"apt-get -f install\" utan paket " "(eller ange en lösning)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1106,115 +1106,115 @@ msgstr "" "att några nödvändiga paket ännu inte har skapats eller flyttats\n" "ut från \"Incoming\"." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Trasiga paket" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Följande ytterligare paket kommer att installeras:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Föreslagna paket:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Rekommenderade paket:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Beräknar uppgradering... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Misslyckades" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Färdig" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Internt fel, problemlösaren förstörde någonting" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 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:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, 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:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Hoppar över redan hämtade filen \"%s\"\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, 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:2229 +#: cmdline/apt-get.cc:2254 #, 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:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Behöver hämta %sB källkodsarkiv.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Hämtar källkoden %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Misslyckades med att hämta vissa arkiv." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, 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:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Uppackningskommandot \"%s\" misslyckades.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, 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:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Byggkommandot \"%s\" misslyckades.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Barnprocessen misslyckades" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 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:2390 +#: cmdline/apt-get.cc:2415 #, 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:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s har inga byggberoenden.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1223,7 +1223,7 @@ msgstr "" "%s-beroendet på %s kan inte tillfredsställas eftersom paketet %s inte kan " "hittas" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1232,32 +1232,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:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, 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:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Byggberoenden för %s kunde inte tillfredsställas." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Misslyckades med att behandla byggberoenden" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Moduler som stöds:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1341,7 +1341,7 @@ msgstr "" "för mer information och flaggor.\n" " Denna APT har Speciella Ko-Krafter.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1485,7 +1485,12 @@ msgstr "Ogiltig arkivsignatur" msgid "Error reading archive member header" msgstr "Fel vid läsning av rubrik för arkivdel" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Ogiltigt arkivdelsrubrik" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Ogiltigt arkivdelsrubrik" @@ -1587,7 +1592,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2127,80 +2132,80 @@ msgstr "" "Aktuellt värde: %lu. (man 5 apt.conf)" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Valet %s hittades inte" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Okänd typförkortning: \"%c\"" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Öppnar konfigurationsfilen %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntaxfel %s:%u: Block börjar utan namn." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntaxfel %s:%u: Felformat märke" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Syntaxfel %s:%u: Överflödigt skräp efter värde" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "Syntaxfel %s:%u: Direktiv kan endast utföras på toppnivån" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntaxfel %s:%u: För många nästlade inkluderingar" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntaxfel %s:%u: Inkluderad härifrån" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntaxfel %s:%u: Direktivet \"%s\" stöds inte" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntaxfel %s:%u: Överflödigt skräp vid filens slut" @@ -2516,7 +2521,7 @@ msgstr "Typ \"%s\" är inte känd på rad %u i listan över källor %s" msgid "Malformed line %u in source list %s (vendor id)" msgstr "Rad %u i källistan %s har fel format (leverantörs-id)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2915,12 +2920,12 @@ msgstr "Skrev %i poster med %i saknade filer och %i filer som inte stämmer\n" msgid "Installing %s" msgstr "Installerar %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Konfigurerar %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Tar bort %s" @@ -2930,57 +2935,57 @@ msgstr "Tar bort %s" msgid "Running post-installation trigger %s" msgstr "Kör efterinstallationsutlösare %s" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Katalogen \"%s\" saknas" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Förbereder %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Packar upp %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Förbereder konfigurering av %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "Installerade %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Förbereder borttagning av %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "Tog bort %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Förbereder borttagning av hela %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "Tog bort hela %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 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:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/th.po b/po/th.po index 968ff8b2c..dd71eee54 100644 --- a/po/th.po +++ b/po/th.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2008-11-06 15:54+0700\n" "Last-Translator: Theppitak Karoonboonyanan \n" "Language-Team: Thai \n" @@ -152,7 +152,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s สำหรับ %s คอมไพล์เมื่อ %s %s\n" @@ -643,7 +643,7 @@ msgstr "ไม่สามารถเปลี่ยนชื่อ %s ไป msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "คอมไพล์นิพจน์เรกิวลาร์ไม่สำเร็จ - %s" @@ -804,11 +804,11 @@ msgstr "มีแพกเกจที่จำเป็นต้องถอด msgid "Internal error, Ordering didn't finish" msgstr "ข้อผิดพลาดภายใน: การเรียงลำดับไม่เสร็จสิ้น" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "ไม่สามารถล็อคไดเรกทอรีดาวน์โหลด" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "ไม่สามารถอ่านรายชื่อแหล่งแพกเกจได้" @@ -837,7 +837,7 @@ msgstr "หลังจากการกระทำนี้ ต้องใ msgid "After this operation, %sB disk space will be freed.\n" msgstr "หลังจากการกระทำนี้ เนื้อที่บนดิสก์จะว่างเพิ่มอีก %sB\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "ไม่สามารถคำนวณพื้นที่ว่างใน %s" @@ -874,7 +874,7 @@ msgstr "เลิกทำ" msgid "Do you want to continue [Y/n]? " msgstr "คุณต้องการจะดำเนินการต่อไปหรือไม่ [Y/n]?" -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "ไม่สามารถดาวน์โหลด %s %s\n" @@ -883,7 +883,7 @@ msgstr "ไม่สามารถดาวน์โหลด %s %s\n" msgid "Some files failed to download" msgstr "ดาวน์โหลดบางแฟ้มไม่สำเร็จ" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "ดาวน์โหลดสำเร็จแล้ว และอยู่ในโหมดดาวน์โหลดอย่างเดียว" @@ -907,35 +907,35 @@ msgstr "ไม่สามารถแก้ปัญหาแพกเกจท msgid "Aborting install." msgstr "จะล้มเลิกการติดตั้ง" -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "หมายเหตุ: จะเลือก %s แทน %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "จะข้าม %s เนื่องจากแพกเกจติดตั้งไว้แล้ว และไม่มีการกำหนดให้ปรับรุ่น\n" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "แพกเกจ %s ไม่ได้ติดตั้งไว้ จึงไม่มีการถอดถอน\n" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "แพกเกจ %s เป็นแพกเกจเสมือนที่ตระเตรียมโดย:\n" -#: cmdline/apt-get.cc:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [ติดตั้งอยู่]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "คุณควรเจาะจงเลือกแพกเกจใดแพกเกจหนึ่งเพื่อติดตั้ง" -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -945,73 +945,73 @@ msgstr "" "ไม่มีแพกเกจ %s ให้ใช้ติดตั้ง แต่ถูกอ้างถึงโดยแพกเกจอื่น\n" "แพกเกจนี้อาจขาดหายไป หรือตกรุ่นไปแล้ว หรืออยู่ในแหล่งอื่น\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "อย่างไรก็ดี แพกเกจต่อไปนี้ได้แทนที่แพกเกจดังกล่าวไปแล้ว:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "แพกเกจ %s ไม่มีรุ่นที่จะใช้ติดตั้ง" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "ไม่สามารถติดตั้ง %s ซ้ำได้ เนื่องจากไม่สามารถดาวน์โหลดได้\n" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s เป็นรุ่นใหม่ล่าสุดอยู่แล้ว\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "ไม่พบรุ่นย่อย '%s' ของ '%s'" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "ไม่พบรุ่น '%s' ของ '%s'" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "เลือกรุ่น %s (%s) สำหรับ %s แล้ว\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "คำสั่ง update ไม่รับอาร์กิวเมนต์เพิ่ม" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "ไม่สามารถล็อคไดเรกทอรีรายชื่อแพกเกจ" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "apt ถูกกำหนดไม่ให้มีการลบใดๆ จึงไม่สามารถดำเนินการถอดถอนอัตโนมัติได้" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "แพกเกจต่อไปนี้ถูกติดตั้งแบบอัตโนมัติไว้ และไม่ต้องใช้อีกต่อไปแล้ว:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "แพกเกจต่อไปนี้ถูกติดตั้งแบบอัตโนมัติไว้ และไม่ต้องใช้อีกต่อไปแล้ว:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "ใช้ 'apt-get autoremove' เพื่อลบแพกเกจดังกล่าวได้" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1029,43 +1029,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "ข้อมูลต่อไปนี้อาจช่วยแก้ปัญหาได้:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "เกิดข้อผิดพลาดภายใน: AutoRemover ทำความเสียหาย" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "เกิดข้อผิดพลาดภายใน: AllUpgrade ทำความเสียหาย" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "ไม่พบงาน %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "ไม่พบแพกเกจ %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "หมายเหตุ: จะเลือก %s สำหรับนิพจน์เรกิวลาร์ '%s'\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "กำหนด %s ให้เป็นการติดตั้งแบบเลือกเองแล้ว\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "คุณอาจเรียก `apt-get -f install' เพื่อแก้ปัญหานี้ได้:" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1073,7 +1073,7 @@ msgstr "" "มีปัญหาความขึ้นต่อกันระหว่างแพกเกจ กรุณาลองใช้ 'apt-get -f install' โดยไม่ระบุแพกเกจ " "(หรือจะระบุทางแก้ก็ได้)" -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1084,122 +1084,122 @@ msgstr "" "หรือถ้าคุณกำลังใช้รุ่น unstable ก็เป็นไปได้ว่าแพกเกจที่จำเป็นบางรายการ\n" "ยังไม่ถูกสร้างขึ้น หรือถูกย้ายออกจาก Incoming" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "แพกเกจมีปัญหา" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "จะติดตั้งแพกเกจเพิ่มเติมต่อไปนี้:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "แพกเกจที่แนะนำ:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "แพกเกจที่ควรใช้ร่วมกัน:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "กำลังคำนวณการปรับรุ่น... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "ล้มเหลว" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "เสร็จแล้ว" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "เกิดข้อผิดพลาดภายใน: กลไกการแก้ปัญหาทำความเสียหาย" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "ต้องระบุแพกเกจอย่างน้อยหนึ่งแพกเกจที่จะดาวน์โหลดซอร์สโค้ด" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "ไม่พบแพกเกจซอร์สโค้ดสำหรับ %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "จะข้ามแฟ้ม '%s' ที่ดาวน์โหลดไว้แล้ว\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "คุณมีพื้นที่ว่างเหลือไม่พอใน %s" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB/%sB\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "ต้องดาวน์โหลดซอร์สโค้ด %sB\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "ดาวน์โหลดซอร์ส %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "ไม่สามารถดาวน์โหลดบางแฟ้ม" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "จะข้ามการแตกซอร์สของซอร์สที่แตกไว้แล้วใน %s\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "คำสั่งแตกแฟ้ม '%s' ล้มเหลว\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "กรุณาตรวจสอบว่าได้ติดตั้งแพกเกจ 'dpkg-dev' แล้ว\n" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "คำสั่ง build '%s' ล้มเหลว\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "โพรเซสลูกล้มเหลว" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "ต้องระบุแพกเกจอย่างน้อยหนึ่งแพกเกจที่จะตรวจสอบสิ่งที่ต้องการสำหรับการ build" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "ไม่สามารถอ่านข้อมูลสิ่งที่ต้องการสำหรับการ build ของ %s" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s ไม่ต้องการสิ่งใดสำหรับ build\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, 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:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1208,30 +1208,30 @@ msgstr "" "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้ เพราะไม่มีแพกเกจ %s " "รุ่นที่จะสอดคล้องกับความต้องการรุ่นของแพกเกจได้" -#: cmdline/apt-get.cc:2551 +#: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้: แพกเกจ %s ที่ติดตั้งไว้ใหม่เกินไป" -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "ไม่สามารถติดตั้งสิ่งเชื่อมโยง %s สำหรับ %s ได้: %s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "ไม่สามารถติดตั้งสิ่งที่จำเป็นสำหรับการ build ของ %s ได้" -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "ติดตั้งสิ่งที่จำเป็นสำหรับการ build ไม่สำเร็จ" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "มอดูลที่รองรับ:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1315,7 +1315,7 @@ msgstr "" "และ apt.conf(5)\n" " APT นี้มีพลังของ Super Cow\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1451,7 +1451,12 @@ msgstr "เอกลักษณ์ archive ไม่ถูกต้อง" msgid "Error reading archive member header" msgstr "เกิดข้อผิดพลาดขณะอ่านข้อมูลส่วนหัวของสมาชิก archive" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "ข้อมูลส่วนหัวของสมาชิก archive ไม่ถูกต้อง" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "ข้อมูลส่วนหัวของสมาชิก archive ไม่ถูกต้อง" @@ -1553,7 +1558,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2076,80 +2081,80 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "ไม่พบรายการเลือก %s" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "พบตัวย่อของชนิดที่ข้อมูลไม่รู้จัก: '%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "ขณะเปิดแฟ้มค่าตั้ง %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "ไวยากรณ์ผิดพลาด %s:%u: เริ่มบล็อคโดยไม่มีชื่อ" -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "ไวยากรณ์ผิดพลาด %s:%u: แท็กผิดรูปแบบ" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "ไวยากรณ์ผิดพลาด %s:%u: มีขยะเกินหลังค่า" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "ไวยากรณ์ผิดพลาด %s:%u: สามารถใช้ directive ที่ระดับบนสุดได้เท่านั้น" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "ไวยากรณ์ผิดพลาด %s:%u: ใช้ include ซ้อนกันมากเกินไป" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "ไวยากรณ์ผิดพลาด %s:%u: include จากที่นี่" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "ไวยากรณ์ผิดพลาด %s:%u: พบ directive '%s' ที่ไม่รองรับ" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "ไวยากรณ์ผิดพลาด %s:%u: มีขยะเกินหลังจบแฟ้ม" @@ -2460,7 +2465,7 @@ msgstr "ไม่รู้จักชนิด '%s' ที่บรรทัด msgid "Malformed line %u in source list %s (vendor id)" msgstr "บรรทัด %u ในแฟ้มรายชื่อแหล่งแพกเกจ %s ผิดรูปแบบ (id ผู้ผลิต)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2846,12 +2851,12 @@ msgstr "เขียนแล้ว %i ระเบียน โดยมีแ msgid "Installing %s" msgstr "กำลังติดตั้ง %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "กำลังตั้งค่า %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "กำลังถอดถอน %s" @@ -2861,58 +2866,58 @@ msgstr "กำลังถอดถอน %s" msgid "Running post-installation trigger %s" msgstr "กำลังเรียกการสะกิด %s หลังการติดตั้ง" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "ไม่มีไดเรกทอรี '%s'" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "กำลังเตรียม %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "กำลังแตกแพกเกจ %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "กำลังเตรียมตั้งค่า %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "ติดตั้ง %s แล้ว" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "กำลังเตรียมถอดถอน %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "ถอดถอน %s แล้ว" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "กำลังเตรียมถอดถอน %s อย่างสมบูรณ์" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "ถอดถอน %s อย่างสมบูรณ์แล้ว" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "ไม่สามารถเขียนบันทึกปฏิบัติการ เนื่องจาก openpty() ล้มเหลว (ไม่ได้เมานท์ /dev/pts " "หรือเปล่า?)\n" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/tl.po b/po/tl.po index fae07f2f2..d14827ab6 100644 --- a/po/tl.po +++ b/po/tl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2007-03-29 21:36+0800\n" "Last-Translator: Eric Pareja \n" "Language-Team: Tagalog \n" @@ -157,7 +157,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -661,7 +661,7 @@ msgstr "Bigo ang pagpangalan muli ng %s tungong %s" msgid "Y" msgstr "O" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Error sa pag-compile ng regex - %s" @@ -826,11 +826,11 @@ msgstr "" msgid "Internal error, Ordering didn't finish" msgstr "Error na internal, hindi natapos ang pagsaayos na pagkasunud-sunod" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Hindi maaldaba ang directory ng download" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Hindi mabasa ang talaan ng pagkukunan (sources)." @@ -862,7 +862,7 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "Matapos magbuklat ay %sB na puwang sa disk ang mapapalaya.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Hindi matantsa ang libreng puwang sa %s" @@ -899,7 +899,7 @@ msgstr "Abort." msgid "Do you want to continue [Y/n]? " msgstr "Nais niyo bang magpatuloy [O/h]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Bigo sa pagkuha ng %s %s\n" @@ -908,7 +908,7 @@ msgstr "Bigo sa pagkuha ng %s %s\n" msgid "Some files failed to download" msgstr "May mga talaksang hindi nakuha" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Kumpleto ang pagkakuha ng mga talaksan sa modong pagkuha lamang" @@ -932,36 +932,36 @@ msgstr "Hindi maayos ang mga kulang na pakete." msgid "Aborting install." msgstr "Ina-abort ang pag-instol." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Paunawa, pinili ang %s imbes na %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, 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:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Nakaluklok]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Dapat kayong mamili ng isa na iluluklok." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -972,74 +972,74 @@ msgstr "" "Maaaring nawawala ang pakete, ito'y laos na, o ito'y makukuha lamang\n" "sa ibang pinagmulan.\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Gayunpaman, ang sumusunod na mga pakete ay humahalili sa kanya:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Ang paketeng %s ay walang kandidatong maaaring instolahin" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ay pinakabagong bersyon na.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Release '%s' para sa '%s' ay hindi nahanap" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Bersyon '%s' para sa '%s' ay hindi nahanap" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Ang napiling bersyon %s (%s) para sa %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Ang utos na update ay hindi tumatanggap ng mga argumento" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Hindi maaldaba ang directory ng talaan" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "Ang sumusunod na mga paketeng BAGO ay iluluklok:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1055,46 +1055,46 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 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:1493 +#: cmdline/apt-get.cc:1518 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Error na internal, may nasira ang problem resolver" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Internal error, nakasira ng bagay-bagay ang AllUpgrade" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, fuzzy, c-format msgid "Couldn't find task %s" msgstr "Hindi mahanap ang paketeng %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Hindi mahanap ang paketeng %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Paunawa, pinili ang %s para sa regex '%s'\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "ngunit ang %s ay iluluklok" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 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:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1102,7 +1102,7 @@ msgstr "" "May mga dependensiyang kulang. Subukan ang 'apt-get -f install' na walang " "mga pakete (o magtakda ng solusyon)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1113,115 +1113,115 @@ 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:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Sirang mga pakete" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Ang mga sumusunod na extra na pakete ay luluklokin:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Mga paketeng mungkahi:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Mga paketeng rekomendado:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Sinusuri ang pag-upgrade... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Bigo" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Tapos" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Error na internal, may nasira ang problem resolver" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 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:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Hindi mahanap ang paketeng source para sa %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Linaktawan ang nakuha na na talaksan '%s'\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "Kulang kayo ng libreng puwang sa %s" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, 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:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Kailangang kumuha ng %sB ng arkibong source.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Kunin ang Source %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Bigo sa pagkuha ng ilang mga arkibo." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, 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:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Bigo ang utos ng pagbuklat '%s'.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, 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:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Utos na build '%s' ay bigo.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Bigo ang prosesong anak" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 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:2390 +#: cmdline/apt-get.cc:2415 #, 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:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "Walang build depends ang %s.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1230,7 +1230,7 @@ msgstr "" "Dependensiyang %s para sa %s ay hindi mabuo dahil ang paketeng %s ay hindi " "mahanap" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1239,32 +1239,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:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, 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:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Hindi mabuo ang build-dependencies para sa %s." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Bigo sa pagproseso ng build dependencies" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Suportadong mga Module:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1347,7 +1347,7 @@ msgstr "" "para sa karagdagang impormasyon at mga option.\n" " Ang APT na ito ay may Kapangyarihan Super Kalabaw.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1487,7 +1487,12 @@ msgstr "Hindi tanggap na signature ng arkibo" msgid "Error reading archive member header" msgstr "Error sa pagbasa ng header ng miyembro ng arkibo" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Hindi tanggap na header ng miyembro ng arkibo" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Hindi tanggap na header ng miyembro ng arkibo" @@ -1589,7 +1594,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2125,81 +2130,81 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Piniling %s ay hindi nahanap" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Hindi kilalang katagang uri: '%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Binubuksan ang talaksang pagsasaayos %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Syntax error %s:%u: Nag-umpisa ang block na walang pangalan." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Syntax error %s:%u: Maling anyo ng Tag" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Syntax error %s:%u: May basura matapos ng halaga" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Syntax error %s:%u: Maaari lamang gawin ang mga direktiba sa tuktok na antas" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Syntax error %s:%u: Labis ang pagkaka-nest ng mga include" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Syntax error %s:%u: Sinama mula dito" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Syntax error %s:%u: Di suportadong direktiba '%s'" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Syntax error %s:%u: May basura sa dulo ng talaksan" @@ -2516,7 +2521,7 @@ msgstr "Hindi kilalang uri '%s' sa linyang %u sa talaksan ng pagkukunan %s" msgid "Malformed line %u in source list %s (vendor id)" msgstr "Maling anyo ng linyang %u sa talaksang pagkukunan %s (vendor id)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2924,12 +2929,12 @@ msgstr "" msgid "Installing %s" msgstr "Iniluklok ang %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Isasaayos ang %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Tinatanggal ang %s" @@ -2939,56 +2944,56 @@ msgstr "Tinatanggal ang %s" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "Nawawala ang directory ng talaan %spartial." -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Hinahanda ang %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Binubuklat ang %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Hinahanda ang %s upang isaayos" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "Iniluklok ang %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Naghahanda para sa pagtanggal ng %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "Tinanggal ang %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Naghahanda upang tanggalin ng lubusan ang %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "Natanggal ng lubusan ang %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/uk.po b/po/uk.po index 52324e12d..6ff02f781 100644 --- a/po/uk.po +++ b/po/uk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-all\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2006-07-29 15:57+0300\n" "Last-Translator: Artem Bondarenko \n" "Language-Team: Українська \n" @@ -153,7 +153,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -659,7 +659,7 @@ msgstr "Не вдалося перейменувати %s в %s" msgid "Y" msgstr "Т" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Помилка компіляції регулярного виразу - %s" @@ -824,11 +824,11 @@ msgstr "Пакунки необхідно видалити, але видале msgid "Internal error, Ordering didn't finish" msgstr "Внутрішня помилка, Ordering не завершилася" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Неможливо заблокувати теку для завантаження" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Неможливо прочитати перелік джерел." @@ -858,7 +858,7 @@ msgid "After this operation, %sB disk space will be freed.\n" msgstr "" "Після розпакування об'єм зайнятого дискового простору зменшиться на %sB.\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Не вдалося визначити кількість вільного місця в %s" @@ -897,7 +897,7 @@ msgstr "Перервано." msgid "Do you want to continue [Y/n]? " msgstr "Бажаєте продовжити [Т/н]? " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Не вдалося завантажити %s %s\n" @@ -906,7 +906,7 @@ msgstr "Не вдалося завантажити %s %s\n" msgid "Some files failed to download" msgstr "Деякі файли не вдалося завантажити" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Вказано режим \"тільки завантаження\", і завантаження завершено" @@ -930,37 +930,37 @@ msgstr "Неможливо виправити втрачені пакунки." msgid "Aborting install." msgstr "Переривається встановлення." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Помітьте, замість %2$s вибирається %1$s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" "Пропускається %s - пакунок вже встановлений, і опція upgrade не " "встановлена.\n" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "Пакунок %s не встановлений, тому не може бути видалений\n" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Пакунок %s - віртуальний, його функції надаються пакунками:\n" -#: cmdline/apt-get.cc:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Встановлено]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Ви повинні явно вказати, який саме ви хочете встановити." -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -972,74 +972,74 @@ msgstr "" "Це може означати, що пакунок відсутній, застарів, або доступний з джерел, не " "згаданих в sources.list\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Однак наступні пакунки можуть його замінити:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Для пакунка %s не знайдені кандидати на встановлення" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "Перевстановлення %s неможливе, бо він не може бути завантаженим.\n" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "Вже встановлена найновіша версія %s.\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Реліз '%s' для '%s' не знайдений" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Версія '%s' для '%s' не знайдена" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Обрана версія %s (%s) для %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Команді update не потрібні аргументи" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Неможливо заблокувати теку з переліками пакунків" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 #, fuzzy msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "НОВІ пакунки були встановлені автоматично і більше не потрібні:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "НОВІ пакунки були встановлені автоматично і більше не потрібні:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Використовуйте 'apt-get autoremove' щоб видалити їх." -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1057,46 +1057,46 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "Наступна інформація можливо допоможе Вам:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 #, fuzzy msgid "Internal Error, AutoRemover broke stuff" msgstr "Внутрішня помилка, вирішувач проблем все поламав" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Внутрішня помилка, AllUpgrade все поламав" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, fuzzy, c-format msgid "Couldn't find task %s" msgstr "Не можу знайти пакунок %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Не можу знайти пакунок %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Помітьте, регулярний вираз %2$s призводить до вибору %1$s\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, fuzzy, c-format msgid "%s set to manually installed.\n" msgstr "але %s буде встановлений" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" "Можливо, для виправлення цих помилок Ви захочете скористатися 'apt-get -f " "install':" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1104,7 +1104,7 @@ msgstr "" "Незадоволені залежності. Спробуйте виконати 'apt-get -f install', не " "вказуючи імені пакунка (або знайдіть інше рішення)." -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1115,121 +1115,121 @@ msgstr "" "або ж використаєте нестабільний дистрибутив, і запитані Вами пакунки\n" "ще не створені або були вилучені з Incoming." -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Зламані пакунки" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Будуть встановлені наступні додаткові пакунки:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Пропоновані пакунки:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Рекомендовані пакунки:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Обчислення оновлень... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Невдача" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Виконано" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Внутрішня помилка, вирішувач проблем все поламав" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "" "Вкажіть як мінімум один пакунок, для якого необхідно завантажити вихідні " "тексти" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Неможливо знайти пакунок з вихідними текстами для %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Пропускаємо вже завантажений файл '%s'\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "Недостатньо місця в %s" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "Необхідно завантажити %sB/%sB з архівів вихідних текстів.\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Потрібно завантажити %sB архівів з вихідними текстами.\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Завантаження вихідних текстів %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Деякі архіви не вдалося завантажити." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" "Розпакування вихідних текстів пропущено, тому що в %s вже перебувають " "розпаковані вихідні тексти\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Команда розпакування '%s' завершилася невдало.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Перевірте, чи встановлений пакунок 'dpkg-dev'.\n" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Команда побудови '%s' закінчилася невдало.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Породжений процес завершився невдало" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "" "Для перевірки залежностей для побудови необхідно вказати як мінімум один " "пакунок" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Неможливо одержати інформацію про залежності для побудови %s" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s не має залежностей для побудови.\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1237,7 +1237,7 @@ msgid "" msgstr "" "Залежність типу %s для %s не може бути задоволена, бо пакунок %s не знайдено" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1246,32 +1246,32 @@ msgstr "" "Залежність типу %s для %s не може бути задоволена, бо ні одна з версій " "пакунка %s не задовольняє умови" -#: cmdline/apt-get.cc:2551 +#: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" "Не вдалося задовольнити залежність типу %s для пакунка %s: Встановлений " "пакунок %s новіше, аніж треба" -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Неможливо задовольнити залежність типу %s для пакунка %s: %s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Залежності для побудови %s не можуть бути задоволені." -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Обробка залежностей для побудови закінчилася невдало" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Підтримувані модулі:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1358,7 +1358,7 @@ msgstr "" "містять більше інформації.\n" " This APT has Super Cow Powers.\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1496,7 +1496,12 @@ msgstr "Невірний підпис архіву" msgid "Error reading archive member header" msgstr "Неможливо прочитати заголовок \"member\" архіву" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Невірний заголовок \"member\" архіву" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Невірний заголовок \"member\" архіву" @@ -1602,7 +1607,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2142,82 +2147,82 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Вибір %s не знайдено" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Нерозпізнаваний тип абревіатури: '%c'" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Відкривається конфігураційний файл %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Синтаксова помилка %s:%u: Блок починається без назви." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Синтаксова помилка %s:%u: спотворений тег" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Синтаксова помилка %s:%u: зайві символи після величини" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, fuzzy, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Синтаксова помилка %s:%u: Директиви можуть бути виконані тільки на " "найвищому рівні" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Синтаксова помилка %s:%u: Забагато вмонтованих включень" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Синтаксова помилка %s:%u: Включена звідси" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Синтаксова помилка %s:%u: Директива '%s' не підтримується" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Синтаксова помилка %s:%u: зайві символи в кінці файла" @@ -2535,7 +2540,7 @@ msgstr "Невідомий тип '%s' в лінії %u в переліку дж msgid "Malformed line %u in source list %s (vendor id)" msgstr "Спотворена лінія %u у переліку джерел %s (vendor id)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2934,12 +2939,12 @@ msgstr "Записано %i записів з %i відсутніми і %i не msgid "Installing %s" msgstr "Встановлено %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Конфігурація %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Видаляється %s" @@ -2949,57 +2954,57 @@ msgstr "Видаляється %s" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, fuzzy, c-format msgid "Directory '%s' missing" msgstr "Lists тека %spartial відсутня." -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Підготовка %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Розпакування %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Підготовка до конфігурації %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "Встановлено %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Підготовка до видалення %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "Видалено %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Підготовка до повного видалення %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "Повністю видалено %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Неможливо записати в лог, проблема з openpty() (не змонтовано /dev/pts?)\n" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/vi.po b/po/vi.po index 685a8c49a..c445ac3f0 100644 --- a/po/vi.po +++ b/po/vi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2008-12-22 19:04+1030\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" @@ -154,7 +154,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -678,7 +678,7 @@ msgstr "Việc đổi tên %s thành %s bị lỗi" msgid "Y" msgstr "C" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Lỗi biên dich biểu thức chính quy - %s" @@ -841,11 +841,11 @@ msgstr "Cần phải gỡ bỏ một số gói, nhưng mà khả năng Gỡ bỏ 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:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Không thể khóa thư mục tải về" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Không thể đọc danh sách nguồn." @@ -875,7 +875,7 @@ msgstr "Sau thao tác này, %sB sức chứa đĩa thêm sẽ được chiếm.\ 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:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Không thể quyết định chỗ rảnh trong %s" @@ -913,7 +913,7 @@ msgstr "Hủy bỏ." msgid "Do you want to continue [Y/n]? " msgstr "Bạn có muốn tiếp tục không? [Y/n] [C/k] " -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Việc gói %s bị lỗi %s\n" @@ -922,7 +922,7 @@ msgstr "Việc gói %s bị lỗi %s\n" msgid "Some files failed to download" msgstr "Một số tập tin không tải về được" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Mới tải về xong và trong chế độ chỉ tải về" @@ -948,35 +948,35 @@ msgstr "Không thể sửa những gói còn thiếu." msgid "Aborting install." msgstr "Đang hủy bỏ cài đặt." -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Ghi chú : đang chọn %s thay vì %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, 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:1086 +#: cmdline/apt-get.cc:1111 #, 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:1097 +#: cmdline/apt-get.cc:1122 #, 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:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Đã cài đặt]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 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:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -987,75 +987,75 @@ 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:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Tuy nhiên, những gói theo đây thay thế nó :" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Gói %s không có ứng cử cài đặt" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, 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:1169 +#: cmdline/apt-get.cc:1194 #, 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:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Không tìm thấy bản phát hành « %s » cho « %s »" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Không tìm thấy phiên bản « %s » cho « %s »" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Đã chọn phiên bản %s (%s) cho %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Lệnh cập nhật không chấp nhật đối số" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Không thể khóa thư mục danh sách" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 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:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" "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:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" "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:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 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:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1073,43 +1073,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 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:1493 +#: cmdline/apt-get.cc:1518 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:1512 +#: cmdline/apt-get.cc:1537 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:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Không tìm thấy tác vụ %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Không tìm thấy gói %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, 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" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, 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:1749 +#: cmdline/apt-get.cc:1774 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:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1117,7 +1117,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:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1129,123 +1129,123 @@ 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:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Gói bị ngắt" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 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:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Gói được đệ nghị:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Gói được khuyên:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Đang tính nâng cấp... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Bị lỗi" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Xong" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Lỗi nội bộ: bộ tháo gỡ vấn đề đã ngắt gì" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 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ó" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, 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:2192 +#: cmdline/apt-get.cc:2217 #, 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:2223 +#: cmdline/apt-get.cc:2248 #, 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:2229 +#: cmdline/apt-get.cc:2254 #, 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:2232 +#: cmdline/apt-get.cc:2257 #, 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:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Lấy nguồn %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Việc lấy một số kho bị lỗi." -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, 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:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Lệnh giải nén « %s » bị lỗi.\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, 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:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Lệnh xây dụng « %s » bị lỗi.\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Tiến trình con bị lỗi" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 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:2390 +#: cmdline/apt-get.cc:2415 #, 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:2410 +#: cmdline/apt-get.cc:2435 #, 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:2462 +#: cmdline/apt-get.cc:2487 #, 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:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1254,31 +1254,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:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, 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:2594 +#: cmdline/apt-get.cc:2619 #, 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:2599 +#: cmdline/apt-get.cc:2624 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:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Mô-đun đã hỗ trợ :" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1370,7 +1370,7 @@ 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:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1512,7 +1512,12 @@ msgstr "Chữ ký kho không hợp lệ" 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 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Phần đầu bộ phạn kho không hợp lê" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Phần đầu bộ phạn kho không hợp lê" @@ -1614,7 +1619,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2151,80 +2156,80 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Không tìm thấy vùng chọn %s" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Không nhận biết viết tắt kiểu: « %c »" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Đang mở tập tin cấu hình %s..." -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Gặp lỗi cú pháp %s:%u: khối bắt đầu không có tên." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Gặp lỗi cú pháp %s:%u: thẻ dạng sai" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Gặp lỗi cú pháp %s:%u: có rác thêm sau giá trị" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "Gặp lỗi cú pháp %s:%u: có thể thực hiện chỉ thị chỉ tại mức đầu" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Gặp lỗi cú pháp %s:%u: quá nhiều điều bao gồm lồng nhau" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Gặp lỗi cú pháp %s:%u: đã bao gồm từ đây" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Gặp lỗi cú pháp %s:%u: chưa hỗ trợ chỉ thị « %s »" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, 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" @@ -2538,7 +2543,7 @@ msgstr "Không biết kiểu « %s » trên dòng %u trong danh sách nguồn %s 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)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2939,12 +2944,12 @@ msgstr "" msgid "Installing %s" msgstr "Đang cài đặt %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Đang cấu hình %s..." -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Đang gỡ bỏ %s..." @@ -2954,56 +2959,56 @@ msgstr "Đang gỡ bỏ %s..." 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:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Thiếu thư mục « %s »" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Đang chuẩn bị %s..." -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Đang mở gói %s..." -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Đang chuẩn bị cấu hình %s..." -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "Đã cài đặt %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Đang chuẩn bị gỡ bỏ %s..." -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "Đã gỡ bỏ %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Đang chuẩn bị gỡ bỏ hoàn toàn %s..." -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "Mới gỡ bỏ hoàn toàn %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 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:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 54ae8de36..801124adc 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2009-06-01 15:54+0800\n" "Last-Translator: Deng Xiyue \n" "Language-Team: Debian Chinese [GB] \n" @@ -152,7 +152,7 @@ msgstr " %4i %s\n" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 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" @@ -646,7 +646,7 @@ msgstr "无法将 %s 重命名为 %s" msgid "Y" msgstr "Y" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "编译正则表达式时出错 - %s" @@ -807,11 +807,11 @@ msgstr "有软件包需要被卸载,但是卸载动作被程序设置所禁止 msgid "Internal error, Ordering didn't finish" msgstr "内部错误,Ordering 未能完成" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "无法对下载目录加锁" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "无法读取安装源列表。" @@ -840,7 +840,7 @@ msgstr "解压缩后会消耗掉 %sB 的额外空间。\n" msgid "After this operation, %sB disk space will be freed.\n" msgstr "解压缩后将会空出 %sB 的空间。\n" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "无法获知您在 %s 上的空余空间" @@ -877,7 +877,7 @@ msgstr "中止执行。" msgid "Do you want to continue [Y/n]? " msgstr "您希望继续执行吗?[Y/n]" -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "无法下载 %s %s\n" @@ -886,7 +886,7 @@ msgstr "无法下载 %s %s\n" msgid "Some files failed to download" msgstr "有一些文件下载失败" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "下载完毕,目前是“仅下载”模式" @@ -910,35 +910,35 @@ msgstr "无法更正缺少的软件包。" msgid "Aborting install." msgstr "放弃安装。" -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "注意,选取 %s 而非 %s\n" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "忽略了 %s,它已经被安装而且没有指定要升级。\n" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "软件包 %s 还未安装,因而不会被卸载\n" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "软件包 %s 是一个由下面的软件包提供的虚拟软件包:\n" -#: cmdline/apt-get.cc:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [已安装]" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "请您明确地选择一个来进行安装。" -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -949,73 +949,73 @@ msgstr "" "这可能意味着这个缺失的软件包可能已被废弃,\n" "或者只能在其他发布源中找到\n" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "可是下列的软件包取代了它:" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "软件包 %s 还没有可供安装的候选者" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "不能重新安装 %s,因为无法下载它。\n" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s 已经是最新的版本了。\n" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "未找到“%2$s”的“%1$s”发布版本" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "未找到“%2$s”的“%1$s”版本" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "选定了版本为 %s (%s) 的 %s\n" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr " update 命令是不需任何参数的" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "无法对状态列表目录加锁" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "我们不应该进行删除,无法启动自动删除器" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "下列软件包是自动安装的并且现在不再被使用了:" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, fuzzy, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "下列软件包是自动安装的并且现在不再被使用了:" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "使用'apt-get autoremove'来删除它们" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1031,43 +1031,43 @@ msgstr "似乎自动删除器毁掉了一些软件,这不应该发生。请向 #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "下列的信息可能会对解决问题有所帮助:" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "内部错误,自动删除器坏事了" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "内部错误,全部升级坏事了" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "无法找到任务 %s" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "无法找到软件包 %s" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "注意,根据正则表达式“%2$s”选中了 %1$s\n" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s 被设置为手动安装。\n" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "您可能需要运行“apt-get -f install”来纠正下列错误:" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1075,7 +1075,7 @@ msgstr "" "有未能满足的依赖关系。请尝试不指明软件包的名字来运行“apt-get -f install”(也可" "以指定一个解决办法)。" -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -1086,122 +1086,122 @@ msgstr "" "因为系统无法达到您要求的状态造成的。该版本中可能会有一些您需要的软件\n" "包尚未被创建或是它们还在新到(incoming)目录中。" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "无法安装的软件包" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "将会安装下列额外的软件包:" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "建议安装的软件包:" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "推荐安装的软件包:" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "正在筹划升级... " -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "失败" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "完成" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "内部错误,问题解决器坏事了" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "要下载源代码,必须指定至少一个对应的软件包" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "无法找到与 %s 对应的源代码包" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "忽略已下载过的文件“%s”\n" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "您在 %s 上没有足够的空余空间" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "需要下载 %sB/%sB 的源代码包。\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "需要下载 %sB 的源代码包。\n" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "下载源代码 %s\n" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "有一些包文件无法下载。" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "对于已经被解包到 %s 目录的源代码包就不再解开了\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "运行解包的命令“%s”出错。\n" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "请检查是否安装了“dpkg-dev”软件包。\n" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "执行构造软件包命令“%s”失败。\n" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "子进程出错" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "要检查生成软件包的构建依赖关系(builddeps),必须指定至少一个软件包" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "无法获得 %s 的构建依赖关系(build-dependency)信息" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr " %s 没有构建依赖关系信息。\n" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, 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:2515 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1210,30 +1210,30 @@ msgstr "" "由于无法找到符合要求的软件包 %3$s 的可用版本,因此不能满足 %2$s 所要求的 %1" "$s 依赖关系" -#: cmdline/apt-get.cc:2551 +#: cmdline/apt-get.cc:2576 #, 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:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:%3$s" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "不能满足软件包 %s 所要求的构建依赖关系。" -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "无法处理构建依赖关系" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "被支持模块:" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 #, fuzzy msgid "" "Usage: apt-get [options] command\n" @@ -1317,7 +1317,7 @@ msgstr "" "以获取更多信息和选项。\n" " 本 APT 有着超级牛力。\n" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1453,7 +1453,12 @@ msgstr "无效的打包文件特征号(signature)" msgid "Error reading archive member header" msgstr "读取打包文件中的成员文件头出错" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "打包文件中成员文件头无效" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "打包文件中成员文件头无效" @@ -1555,7 +1560,7 @@ 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/configuration.cc:822 +#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:843 #: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 #: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 #: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 @@ -2082,80 +2087,80 @@ msgstr "" "apt.conf)" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "没有发现您的所选 %s" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "无法识别的类型缩写:“%c”" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "正在打开配置文件 %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "语法错误 %s:%u:配置小节没有以名字开头" -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "语法错误 %s:%u:标签格式有误" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "语法错误 %s:%u: 配置值后有多余的无意义数据" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "语法错误 %s:%u: 只能在顶层配置文件中使用指示" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "语法错误 %s:%u:太多的嵌套 include 命令" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "语法错误 %s:%u: Included from here" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "语法错误 %s:%u: 不支持的指令“%s”" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "语法错误 %s:%u: 文件尾部有多余的无意义的数据" @@ -2466,7 +2471,7 @@ msgstr "无法识别在安装源列表 %3$s 里,第 %2$u 行中的软件包类 msgid "Malformed line %u in source list %s (vendor id)" msgstr "在安装源列表中 %2$s 中第 %1$u 行的格式有误 (vendor id)" -#: apt-pkg/packagemanager.cc:426 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2857,12 +2862,12 @@ msgstr "已写入 %i 条记录,并有 %i 个缺失,以及 %i 个文件不吻 msgid "Installing %s" msgstr "正在安装 %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "正在配置 %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "正在删除 %s" @@ -2872,56 +2877,56 @@ msgstr "正在删除 %s" msgid "Running post-installation trigger %s" msgstr "执行安装后执行的触发器 %s" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "目录 %s 不见了" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "正在准备 %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "正在解压缩 %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "正在准备配置 %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "已安装 %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "正在准备 %s 的删除操作" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "已删除 %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "正在准备完全删除 %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "完全删除了 %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "无法写入日志。 openpty() 失败 (/dev/pts 没有 mount 上?)\n" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" diff --git a/po/zh_TW.po b/po/zh_TW.po index 6569ecf85..4fa43ecb1 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: 2009-08-27 19:43+0200\n" +"POT-Creation-Date: 2009-09-26 11:38+0200\n" "PO-Revision-Date: 2009-01-28 10:41+0800\n" "Last-Translator: Tetralet \n" "Language-Team: Debian-user in Chinese [Big5] Date: Sat, 26 Sep 2009 13:04:17 +0200 Subject: French translation update --- po/fr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/fr.po b/po/fr.po index 4ba546f14..0bef42118 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1513,13 +1513,12 @@ msgid "Error reading archive member header" msgstr "Erreur de lecture de l'en-tête du membre d'archive" #: apt-inst/contrib/arfile.cc:90 -#, fuzzy, c-format msgid "Invalid archive member header %s" -msgstr "En-tête du membre d'archive non-valide" +msgstr "En-tête du membre d'archive %s non valable" #: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" -msgstr "En-tête du membre d'archive non-valide" +msgstr "En-tête du membre d'archive non-valable" #: apt-inst/contrib/arfile.cc:128 msgid "Archive is too short" -- cgit v1.2.3 From e732412dc851ef0f068c03d613e042c95b3bb5bb Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sat, 26 Sep 2009 13:54:38 +0200 Subject: Update POT file --- po/apt-all.pot | 177 +++++++++++++++++++++++++++++---------------------------- 1 file changed, 91 insertions(+), 86 deletions(-) diff --git a/po/apt-all.pot b/po/apt-all.pot index 46871528d..1dff93356 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: 2009-09-15 22:58+0200\n" +"POT-Creation-Date: 2009-09-26 13:54+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -151,7 +151,7 @@ msgstr "" #: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2626 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "" @@ -549,7 +549,7 @@ msgstr "" msgid "Y" msgstr "" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1695 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "" @@ -708,11 +708,11 @@ msgstr "" msgid "Internal error, Ordering didn't finish" msgstr "" -#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2037 cmdline/apt-get.cc:2070 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "" -#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2118 cmdline/apt-get.cc:2367 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "" @@ -741,7 +741,7 @@ msgstr "" msgid "After this operation, %sB disk space will be freed.\n" msgstr "" -#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2213 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "" @@ -775,7 +775,7 @@ msgstr "" msgid "Do you want to continue [Y/n]? " msgstr "" -#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2264 apt-pkg/algorithms.cc:1389 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "" @@ -784,7 +784,7 @@ msgstr "" msgid "Some files failed to download" msgstr "" -#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "" @@ -806,35 +806,35 @@ msgstr "" msgid "Aborting install." msgstr "" -#: cmdline/apt-get.cc:1058 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "" -#: cmdline/apt-get.cc:1068 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -#: cmdline/apt-get.cc:1086 +#: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" msgstr "" -#: cmdline/apt-get.cc:1097 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "" -#: cmdline/apt-get.cc:1109 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr "" -#: cmdline/apt-get.cc:1114 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "" -#: cmdline/apt-get.cc:1119 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -842,73 +842,73 @@ msgid "" "is only available from another source\n" msgstr "" -#: cmdline/apt-get.cc:1138 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "" -#: cmdline/apt-get.cc:1141 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "" -#: cmdline/apt-get.cc:1161 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "" -#: cmdline/apt-get.cc:1169 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "" -#: cmdline/apt-get.cc:1200 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "" -#: cmdline/apt-get.cc:1206 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "" -#: cmdline/apt-get.cc:1323 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1360 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "" -#: cmdline/apt-get.cc:1373 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "" -#: cmdline/apt-get.cc:1429 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "" -#: cmdline/apt-get.cc:1480 +#: cmdline/apt-get.cc:1505 #, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" -#: cmdline/apt-get.cc:1481 +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "" -#: cmdline/apt-get.cc:1486 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -924,49 +924,49 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1489 cmdline/apt-get.cc:1779 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "" -#: cmdline/apt-get.cc:1493 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: cmdline/apt-get.cc:1512 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1567 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "" -#: cmdline/apt-get.cc:1682 cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "" -#: cmdline/apt-get.cc:1705 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "" -#: cmdline/apt-get.cc:1736 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "" -#: cmdline/apt-get.cc:1749 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "" -#: cmdline/apt-get.cc:1752 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." msgstr "" -#: cmdline/apt-get.cc:1764 +#: cmdline/apt-get.cc:1789 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" @@ -974,152 +974,152 @@ msgid "" "or been moved out of Incoming." msgstr "" -#: cmdline/apt-get.cc:1782 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "" -#: cmdline/apt-get.cc:1811 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "" -#: cmdline/apt-get.cc:1900 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "" -#: cmdline/apt-get.cc:1901 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "" -#: cmdline/apt-get.cc:1930 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "" -#: cmdline/apt-get.cc:1933 methods/ftp.cc:707 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "" -#: cmdline/apt-get.cc:1938 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "" -#: cmdline/apt-get.cc:2005 cmdline/apt-get.cc:2013 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "" -#: cmdline/apt-get.cc:2113 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "" -#: cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2385 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "" -#: cmdline/apt-get.cc:2223 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "" -#: cmdline/apt-get.cc:2229 +#: cmdline/apt-get.cc:2254 #, c-format msgid "Need to get %sB/%sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "" -#: cmdline/apt-get.cc:2238 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "" -#: cmdline/apt-get.cc:2269 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "" -#: cmdline/apt-get.cc:2297 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2310 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "" -#: cmdline/apt-get.cc:2327 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "" -#: cmdline/apt-get.cc:2346 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "" -#: cmdline/apt-get.cc:2362 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "" -#: cmdline/apt-get.cc:2390 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "" -#: cmdline/apt-get.cc:2410 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:2462 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -#: cmdline/apt-get.cc:2515 +#: cmdline/apt-get.cc:2540 #, 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:2551 +#: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -#: cmdline/apt-get.cc:2578 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "" -#: cmdline/apt-get.cc:2594 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:2599 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:2631 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "" -#: cmdline/apt-get.cc:2672 +#: cmdline/apt-get.cc:2697 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1163,7 +1163,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:2839 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1286,7 +1286,12 @@ msgstr "" msgid "Error reading archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, c-format +msgid "Invalid archive member header %s" +msgstr "" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "" @@ -2666,12 +2671,12 @@ msgstr "" msgid "Installing %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:659 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:666 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "" @@ -2686,51 +2691,51 @@ msgstr "" msgid "Directory '%s' missing" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:652 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:653 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:658 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:660 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:665 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:667 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:672 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:673 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:861 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:889 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" -- cgit v1.2.3 From 01f2b54d3606637101a95585994fb6f1e88dab66 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sat, 26 Sep 2009 14:03:57 +0200 Subject: Update files --- doc/po/apt-doc.pot | 32 ++++++++++++++++---------------- doc/po/fr.po | 54 +++++++++++++++++++++++++++++++++++++----------------- doc/po/ja.po | 54 +++++++++++++++++++++++++++++++++++++----------------- 3 files changed, 90 insertions(+), 50 deletions(-) diff --git a/doc/po/apt-doc.pot b/doc/po/apt-doc.pot index ddd9d025e..aeb624948 100644 --- a/doc/po/apt-doc.pot +++ b/doc/po/apt-doc.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-09-24 15:02+0300\n" +"POT-Creation-Date: 2009-09-26 11:35+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1836,8 +1836,8 @@ msgid "" "apt-ftparchive " " " " " -" " +" " " packagespathoverridepathprefix " @@ -4298,9 +4298,9 @@ msgstr "" msgid "" "The #clear command is the only way to delete a list or a complete scope. " "Reopening a scope or the ::-style described below will " -"not override previewsly written entries. Only options " -"can be overridden by adressing a new value to it - lists and scopes can't be " -"overridden, only cleared." +"not override previously written entries. Only options " +"can be overridden by addressing a new value to it - lists and scopes can't " +"be overridden, only cleared." msgstr "" #. type: Content of: @@ -4311,7 +4311,7 @@ msgid "" "full option name (APT::Get::Assume-Yes 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. (As you might " -"suspect: The scope syntax can't be used on the commandline.)" +"suspect: The scope syntax can't be used on the command line.)" msgstr "" #. type: Content of: @@ -4598,7 +4598,7 @@ msgid "" "The used bandwidth can be limited with " "Acquire::http::Dl-Limit which accepts integer values in " "kilobyte. The default value is 0 which deactivates the limit and tries uses " -"as much as possible of the bandwith (Note that this option implicit " +"as much as possible of the bandwidth (Note that this option implicit " "deactivates the download from multiple servers at the same time.)" msgstr "" @@ -4797,7 +4797,7 @@ msgid "" "checked: If this setting exists the method will only be used if this file " "exists, e.g. for the bzip2 method (the inbuilt) setting is Note also that list entries specified on " -"the commandline will be added at the end of the list specified in the " +"the command line will be added at the end of the list specified in the " "configuration files, but before the default entries. To prefer a type in " "this case over the ones specified in in the configuration files you can set " "the option direct - not in list style. This will not override the defined " @@ -5057,7 +5057,7 @@ msgid "" "in between his own run. Activating these options can therefore decrease the " "time needed to perform the install / upgrade. Note that it is intended to " "activate these options per default in the future, but as it changes the way " -"APT calling dpkg drastical it needs a lot more testing. These " +"APT calling dpkg drastically it needs a lot more testing. These " "options are therefore currently experimental and should not be used in " "productive environments. Also it breaks the progress reporting so " "all frontends will currently stay around half (or more) of the time in the " @@ -5077,7 +5077,7 @@ msgstr "" #. type: Content of: #: apt.conf.5.xml:506 msgid "" -"Note that it is not garanteed that APT will support these options or that " +"Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " "understand the current risks and problems with these options, but are brave " "enough to help testing them create a new configuration file and test a " @@ -5170,7 +5170,7 @@ msgid "" "As the configuration can be deferred to be done at the end by dpkg it can be " "tried to order the unpack series only by critical needs, e.g. by " "Pre-Depends. Default is true and therefore the \"old\" method of ordering in " -"verious steps by everything. While both method were present in earlier APT " +"various steps by everything. While both method were present in earlier APT " "versions the OrderCritical method was unused, so this " "method is very experimental and needs further improvements before becoming " "really useful." @@ -5201,10 +5201,10 @@ msgid "" "upgrade process as these these configure calls require currently also " "DPkg::TriggersPending which will run quite a few triggers " "(which maybe not needed). Essentials get per default a high score but the " -"immediate flag is relativly low (a package which has a Pre-Depends is higher " -"rated). These option and the others in the same group can be used to change " -"the scoring. The following example shows the settings with there default " -"values. " +"immediate flag is relatively low (a package which has a Pre-Depends is " +"higher rated). These option and the others in the same group can be used to " +"change the scoring. The following example shows the settings with there " +"default values. " msgstr "" #. type: Content of: diff --git a/doc/po/fr.po b/doc/po/fr.po index 461638080..541fd369f 100644 --- a/doc/po/fr.po +++ b/doc/po/fr.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2009-09-24 15:02+0300\n" +"POT-Creation-Date: 2009-09-26 11:35+0300\n" "PO-Revision-Date: 2009-09-14 20:15+0200\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" @@ -2424,14 +2424,34 @@ msgstr "Outil de création de fichiers d'index" #. 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> " "<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>-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</" @@ -5721,8 +5741,8 @@ msgstr "" msgid "" "The #clear command is the only way to delete a list or a complete scope. " "Reopening a scope or the ::-style described below will <emphasis>not</" -"emphasis> override previewsly written entries. Only options can be " -"overridden by adressing a new value to it - lists and scopes can't be " +"emphasis> override previously written entries. Only options can be " +"overridden by addressing a new value to it - lists and scopes can't be " "overridden, only cleared." msgstr "" @@ -5741,7 +5761,7 @@ msgid "" "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. (As you might " -"suspect: The scope syntax can't be used on the commandline.)" +"suspect: The scope syntax can't be used on the command line.)" msgstr "" "Tous les outils d'APT possèdent une option <option>-o</option> qui permet de " "spécifier une configuration quelconque depuis la ligne de commande. La " @@ -6129,7 +6149,7 @@ msgid "" "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" "literal> which accepts integer values in kilobyte. The default value is 0 " "which deactivates the limit and tries uses as much as possible of the " -"bandwith (Note that this option implicit deactivates the download from " +"bandwidth (Note that this option implicit deactivates the download from " "multiple servers at the same time.)" msgstr "" @@ -6396,7 +6416,7 @@ msgid "" "replaceable></literal> will be checked: If this setting exists the method " "will only be used if this file exists, e.g. for the bzip2 method (the " "inbuilt) setting is <placeholder type=\"literallayout\" id=\"0\"/> Note also " -"that list entries specified on the commandline will be added at the end of " +"that list entries specified on the command line will be added at the end of " "the list specified in the configuration files, but before the default " "entries. To prefer a type in this case over the ones specified in in the " "configuration files you can set the option direct - not in list style. This " @@ -6749,7 +6769,7 @@ msgid "" "in between his own run. Activating these options can therefore decrease the " "time needed to perform the install / upgrade. Note that it is intended to " "activate these options per default in the future, but as it changes the way " -"APT calling dpkg drastical it needs a lot more testing. <emphasis>These " +"APT calling dpkg drastically it needs a lot more testing. <emphasis>These " "options are therefore currently experimental and should not be used in " "productive environments.</emphasis> Also it breaks the progress reporting so " "all frontends will currently stay around half (or more) of the time in the " @@ -6769,7 +6789,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt.conf.5.xml:506 msgid "" -"Note that it is not garanteed that APT will support these options or that " +"Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " "understand the current risks and problems with these options, but are brave " "enough to help testing them create a new configuration file and test a " @@ -6862,7 +6882,7 @@ msgid "" "As the configuration can be deferred to be done at the end by dpkg it can be " "tried to order the unpack series only by critical needs, e.g. by Pre-" "Depends. Default is true and therefore the \"old\" method of ordering in " -"verious steps by everything. While both method were present in earlier APT " +"various steps by everything. While both method were present in earlier APT " "versions the <literal>OrderCritical</literal> method was unused, so this " "method is very experimental and needs further improvements before becoming " "really useful." @@ -6893,10 +6913,10 @@ msgid "" "upgrade process as these these configure calls require currently also " "<literal>DPkg::TriggersPending</literal> which will run quite a few triggers " "(which maybe not needed). Essentials get per default a high score but the " -"immediate flag is relativly low (a package which has a Pre-Depends is higher " -"rated). These option and the others in the same group can be used to change " -"the scoring. The following example shows the settings with there default " -"values. <placeholder type=\"literallayout\" id=\"0\"/>" +"immediate flag is relatively low (a package which has a Pre-Depends is " +"higher rated). These option and the others in the same group can be used to " +"change the scoring. The following example shows the settings with there " +"default values. <placeholder type=\"literallayout\" id=\"0\"/>" msgstr "" #. type: Content of: <refentry><refsect1><title> diff --git a/doc/po/ja.po b/doc/po/ja.po index fc1fec09e..ca5ccef2b 100644 --- a/doc/po/ja.po +++ b/doc/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-09-24 15:02+0300\n" +"POT-Creation-Date: 2009-09-26 11:35+0300\n" "PO-Revision-Date: 2009-07-30 22:55+0900\n" "Last-Translator: KURASAWA Nozomu <nabetaro@caldron.jp>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -2501,14 +2501,34 @@ 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> " "<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>-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</" @@ -5904,8 +5924,8 @@ msgstr "" msgid "" "The #clear command is the only way to delete a list or a complete scope. " "Reopening a scope or the ::-style described below will <emphasis>not</" -"emphasis> override previewsly written entries. Only options can be " -"overridden by adressing a new value to it - lists and scopes can't be " +"emphasis> override previously written entries. Only options can be " +"overridden by addressing a new value to it - lists and scopes can't be " "overridden, only cleared." msgstr "" @@ -5925,7 +5945,7 @@ msgid "" "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. (As you might " -"suspect: The scope syntax can't be used on the commandline.)" +"suspect: The scope syntax can't be used on the command line.)" msgstr "" "すべての APT ツールで、コマンドラインで任意の設定を行う -o オプションが使用で" "きます。文法は、完全なオプション名 (例: <literal>APT::Get::Assume-Yes</" @@ -6323,7 +6343,7 @@ msgid "" "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" "literal> which accepts integer values in kilobyte. The default value is 0 " "which deactivates the limit and tries uses as much as possible of the " -"bandwith (Note that this option implicit deactivates the download from " +"bandwidth (Note that this option implicit deactivates the download from " "multiple servers at the same time.)" msgstr "" @@ -6577,7 +6597,7 @@ msgid "" "replaceable></literal> will be checked: If this setting exists the method " "will only be used if this file exists, e.g. for the bzip2 method (the " "inbuilt) setting is <placeholder type=\"literallayout\" id=\"0\"/> Note also " -"that list entries specified on the commandline will be added at the end of " +"that list entries specified on the command line will be added at the end of " "the list specified in the configuration files, but before the default " "entries. To prefer a type in this case over the ones specified in in the " "configuration files you can set the option direct - not in list style. This " @@ -6941,7 +6961,7 @@ msgid "" "in between his own run. Activating these options can therefore decrease the " "time needed to perform the install / upgrade. Note that it is intended to " "activate these options per default in the future, but as it changes the way " -"APT calling dpkg drastical it needs a lot more testing. <emphasis>These " +"APT calling dpkg drastically it needs a lot more testing. <emphasis>These " "options are therefore currently experimental and should not be used in " "productive environments.</emphasis> Also it breaks the progress reporting so " "all frontends will currently stay around half (or more) of the time in the " @@ -6961,7 +6981,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt.conf.5.xml:506 msgid "" -"Note that it is not garanteed that APT will support these options or that " +"Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " "understand the current risks and problems with these options, but are brave " "enough to help testing them create a new configuration file and test a " @@ -7057,7 +7077,7 @@ msgid "" "As the configuration can be deferred to be done at the end by dpkg it can be " "tried to order the unpack series only by critical needs, e.g. by Pre-" "Depends. Default is true and therefore the \"old\" method of ordering in " -"verious steps by everything. While both method were present in earlier APT " +"various steps by everything. While both method were present in earlier APT " "versions the <literal>OrderCritical</literal> method was unused, so this " "method is very experimental and needs further improvements before becoming " "really useful." @@ -7088,10 +7108,10 @@ msgid "" "upgrade process as these these configure calls require currently also " "<literal>DPkg::TriggersPending</literal> which will run quite a few triggers " "(which maybe not needed). Essentials get per default a high score but the " -"immediate flag is relativly low (a package which has a Pre-Depends is higher " -"rated). These option and the others in the same group can be used to change " -"the scoring. The following example shows the settings with there default " -"values. <placeholder type=\"literallayout\" id=\"0\"/>" +"immediate flag is relatively low (a package which has a Pre-Depends is " +"higher rated). These option and the others in the same group can be used to " +"change the scoring. The following example shows the settings with there " +"default values. <placeholder type=\"literallayout\" id=\"0\"/>" msgstr "" #. type: Content of: <refentry><refsect1><title> -- cgit v1.2.3 From 1cf5e7c9feb1111eb2dc278fdd3aaa2f2708bbf0 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sat, 26 Sep 2009 14:47:15 +0200 Subject: Disable hebrew on translator's request --- debian/changelog | 1 + po/LINGUAS | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 101ad03a7..b5c546b59 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ apt (0.7.25) UNRELEASED; urgency=low * Fix apt-ftparchive(1) wrt description of the "-o" option. Thanks to Dann Frazier for the patch. Closes: #273100 + * po/LINGUAS. Re-disable Hebrew. Closes: #534992 -- Christian Perrier <bubulle@debian.org> Sat, 26 Sep 2009 11:17:25 +0200 diff --git a/po/LINGUAS b/po/LINGUAS index 1b7bdef57..2807a7cb6 100644 --- a/po/LINGUAS +++ b/po/LINGUAS @@ -1 +1 @@ -ar bg bs ca cs cy da de dz el en_GB es eu fi fr gl he hu it ja km ko ku mr nb ne nl nn pl pt pt_BR ro ru sk sl sv th tl uk vi zh_CN zh_TW +ar bg bs ca cs cy da de dz el en_GB es eu fi fr gl hu it ja km ko ku mr nb ne nl nn pl pt pt_BR ro ru sk sl sv th tl uk vi zh_CN zh_TW -- cgit v1.2.3 From 52f2e1dadd74b6cce8fd72f1a693fb774bfe5cdf Mon Sep 17 00:00:00 2001 From: Julian Andres Klode <jak@debian.org> Date: Sat, 26 Sep 2009 15:12:39 +0200 Subject: doc/apt.conf.5.xml: Start deprecating stuff. - Deprecate unquoted values, string concatenation and explain what should not be written inside a value (quotes,backslash). --- debian/changelog | 8 +++++++- doc/apt.conf.5.xml | 7 +++++-- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 101ad03a7..4f8b72a31 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,15 @@ apt (0.7.25) UNRELEASED; urgency=low + [ Christian Perrier ] * Fix apt-ftparchive(1) wrt description of the "-o" option. Thanks to Dann Frazier for the patch. Closes: #273100 - -- Christian Perrier <bubulle@debian.org> Sat, 26 Sep 2009 11:17:25 +0200 + [ Julian Andres Klode ] + * doc/apt.conf.5.xml: + - Deprecate unquoted values, string concatenation and explain what should + not be written inside a value (quotes,backslash). + + -- Julian Andres Klode <jak@debian.org> Sat, 26 Sep 2009 15:00:28 +0200 apt (0.7.24) unstable; urgency=low diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml index e752f9d27..b1522a614 100644 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@ -59,8 +59,11 @@ 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:</para> + semicolon and the quotes are required. The value must be on one line, and + there is no kind of string concatenation. It must not include inside quotes. + The behavior of the backslash "\" and escaped characters inside a value is + undefined and it should not be used. A new scope can be opened with curly + braces, like:</para> <informalexample><programlisting> APT { -- cgit v1.2.3 From 31f113db16fc6854be90ca7ec3f7321fd65e99f3 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode <jak@debian.org> Date: Sat, 26 Sep 2009 16:14:54 +0200 Subject: doc/apt.conf.5.xml: Restrict option names to alphanumerical characters and "/-:._+". --- debian/changelog | 1 + doc/apt.conf.5.xml | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 4f8b72a31..018b072d8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,7 @@ apt (0.7.25) UNRELEASED; urgency=low * doc/apt.conf.5.xml: - Deprecate unquoted values, string concatenation and explain what should not be written inside a value (quotes,backslash). + - Restrict option names to alphanumerical characters and "/-:._+". -- Julian Andres Klode <jak@debian.org> Sat, 26 Sep 2009 15:00:28 +0200 diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml index b1522a614..661f97ab1 100644 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@ -62,8 +62,9 @@ semicolon and the quotes are required. The value must be on one line, and there is no kind of string concatenation. It must not include inside quotes. The behavior of the backslash "\" and escaped characters inside a value is - undefined and it should not be used. A new scope can be opened with curly - braces, like:</para> + undefined and it should not be used. An option name may include + alphanumerical characters and the "/-:._+" characters. A new scope can + be opened with curly braces, like:</para> <informalexample><programlisting> APT { @@ -329,7 +330,7 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; as specified in <filename>/etc/fstab</filename>. It is possible to provide alternate mount and unmount commands if your mount point cannot be listed in the fstab (such as an SMB mount and old mount packages). The syntax - is to put <literallayout>"/cdrom/"::Mount "foo";</literallayout> within + is to put <literallayout>/cdrom/::Mount "foo";</literallayout> within the cdrom block. It is important to have the trailing slash. Unmount commands can be specified using UMount.</para></listitem> </varlistentry> -- cgit v1.2.3 From 847d81b8e95610240f782daeaf154df69b3dd80c Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sat, 26 Sep 2009 19:20:33 +0200 Subject: Fix typo --- debian/changelog | 1 + doc/apt-cache.8.xml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index b5c546b59..98b9981d1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ apt (0.7.25) UNRELEASED; urgency=low * Fix apt-ftparchive(1) wrt description of the "-o" option. Thanks to Dann Frazier for the patch. Closes: #273100 * po/LINGUAS. Re-disable Hebrew. Closes: #534992 + * Fix typo in apt-cache.8.xml: nessasarily -- Christian Perrier <bubulle@debian.org> Sat, 26 Sep 2009 11:17:25 +0200 diff --git a/doc/apt-cache.8.xml b/doc/apt-cache.8.xml index 9851135b1..c61d00e47 100644 --- a/doc/apt-cache.8.xml +++ b/doc/apt-cache.8.xml @@ -231,7 +231,7 @@ Reverse Provides: 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.</para> - <para>Note that a package which APT knows of is not nessasarily available to download, + <para>Note that a package which APT knows of is not necessarily available to download, installable or installed, e.g. virtual packages are also listed in the generated list. </para></listitem> </varlistentry> -- cgit v1.2.3 From 7fa2e810e2cec43564c23bd17d5100b355e84593 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sat, 26 Sep 2009 19:27:19 +0200 Subject: Fix typo --- debian/changelog | 1 + doc/apt-get.8.xml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 98b9981d1..9d3a0a868 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,7 @@ apt (0.7.25) UNRELEASED; urgency=low Thanks to Dann Frazier for the patch. Closes: #273100 * po/LINGUAS. Re-disable Hebrew. Closes: #534992 * Fix typo in apt-cache.8.xml: nessasarily + * Fix "with with" in apt-get.8.xml -- Christian Perrier <bubulle@debian.org> Sat, 26 Sep 2009 11:17:25 +0200 diff --git a/doc/apt-get.8.xml b/doc/apt-get.8.xml index ec773edeb..4735dcd34 100644 --- a/doc/apt-get.8.xml +++ b/doc/apt-get.8.xml @@ -253,7 +253,7 @@ fetch. It will then find and download into the current directory the newest available version of that source package while respect the default release, set with the option <literal>APT::Default-Release</literal>, - the <option>-t</option> option or per package with with the + the <option>-t</option> option or per package with the <literal>pkg/release</literal> syntax, if possible.</para> <para>Source packages are tracked separately -- cgit v1.2.3 From c2205b51fef287dd03f221bf069514c95b2c6c17 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sat, 26 Sep 2009 19:27:53 +0200 Subject: French translation update --- doc/po/fr.po | 201 +++++++++++++++++++++++++++++------------------------------ 1 file changed, 100 insertions(+), 101 deletions(-) diff --git a/doc/po/fr.po b/doc/po/fr.po index 541fd369f..b95576e34 100644 --- a/doc/po/fr.po +++ b/doc/po/fr.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2009-09-26 11:35+0300\n" -"PO-Revision-Date: 2009-09-14 20:15+0200\n" +"PO-Revision-Date: 2009-09-26 19:25+0200\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: ENCODING\n" +"Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -566,16 +566,7 @@ msgstr "" #. type: Plain text #: apt.ent:168 -#, 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" @@ -593,9 +584,12 @@ 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 octobre 2008</date>\n" +" <date>28 Octobre 2008</date>\n" " <productname>Linux</productname>\n" #. type: Plain text @@ -626,14 +620,7 @@ msgstr "" #. type: Plain text #: apt.ent:185 -#, 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" @@ -647,19 +634,13 @@ msgstr "" " <author>\n" " <firstname>Jason</firstname>\n" " <surname>Gunthorpe</surname>\n" +" <contrib></contrib>\n" " </author>\n" "\">\n" #. type: Plain text #: apt.ent:193 -#, 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" @@ -673,18 +654,13 @@ msgstr "" " <author>\n" " <firstname>Mike</firstname>\n" " <surname>O'Connor</surname>\n" +" <contrib></contrib>\n" " </author>\n" "\">\n" #. type: Plain text #: apt.ent:200 -#, 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" @@ -923,6 +899,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>Fichier de configuration d'APT.\n" +" Élément de configuration : <literal>Dir::Etc::Main</literal>.</para></listitem>\n" +" </varlistentry>\n" #. type: Plain text #: apt.ent:303 @@ -934,6 +915,11 @@ msgid "" " </varlistentry>\n" "\">\n" msgstr "" +" <varlistentry><term><filename>/etc/apt/apt.conf.D/</filename></term>\n" +" <listitem><para>Fragments du fichier de configuration d'APT.\n" +" Élément de configuration : <literal>Dir::Etc::Partsn</literal>.</para></listitem>\n" +" </varlistentry>\n" +"\">\n" #. type: Plain text #: apt.ent:309 @@ -945,23 +931,31 @@ 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>Zone de stockage des fichiers récupérés.\n" +" Élément de configuration : <literal>Dir::Cache::Archives</literal>.</para></listitem>\n" +" </varlistentry>\n" #. type: Plain text #: apt.ent:315 -#, 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 "Zone de stockage pour les paquets en transit. Élément de configuration : <literal>Dir::Cache::Archives</literal> (implicitement, partial)." +msgstr "" +"Z <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" +"\">\n" #. type: Plain text #: apt.ent:325 -#, 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" @@ -972,7 +966,13 @@ msgid "" " or from a different version of a distribution.\n" " Configuration Item: <literal>Dir::Etc::Preferences</literal>.</para></listitem>\n" " </varlistentry>\n" -msgstr "Fichier des préférences. C'est dans ce fichier qu'on peut faire de l'étiquetage (pinning) c'est-à-dire, choisir d'obtenir des paquets d'une source distincte ou d'une distribution différente. Élément de configuration : <literal>Dir::Etc::Preferences</literal>." +msgstr "" +"<!ENTITY file-preferences \"\n" +" <varlistentry><term><filename>/etc/apt/preferences</filename></term>\n" +" <listitem><para>Fichier des préférences.\n" +" C'est dans ce fichier qu'on peut faire de l'étiquetage (pinning) c'est-à-dire, choisir d'obtenir des paquets d'une source distincte ou d'une distribution différente.\n" +" Élément de configuration : <literal>Dir::Etc::Preferences</literal>.</para></listitem>\n" +" </varlistentry>\n" #. type: Plain text #: apt.ent:331 @@ -984,6 +984,11 @@ msgid "" " </varlistentry>\n" "\">\n" msgstr "" +" <varlistentry><term><filename>/etc/apt/preferences.d/</filename></term>\n" +" <listitem><para>Fragments de fichiers pour la préférence des versions.\n" +" Élémet de configuration: <literal>Dir::Etc::PreferencesParts</literal>.</para></listitem>\n" +" </varlistentry>\n" +"\">\n" #. type: Plain text #: apt.ent:337 @@ -995,6 +1000,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>Emplacement pour la récupération des paquets.\n" +" Élément de configuration: <literal>Dir::Etc::SourceList</literal>.</para></listitem>\n" +" </varlistentry>\n" #. type: Plain text #: apt.ent:343 @@ -1006,10 +1016,14 @@ msgid "" " </varlistentry>\n" "\">\n" msgstr "" +" <varlistentry><term><filename>/etc/apt/sources.list.d/</filename></term>\n" +" <listitem><para>Fragments de fichiers définissant les emplacements de récupération de paquets.\n" +" Élément de configuration : <literal>Dir::Etc::SourceParts</literal>.</para></listitem>\n" +" </varlistentry>\n" +"\">\n" #. type: Plain text -#: apt.ent:350 -#, fuzzy, no-wrap +#: apt.ent:350, no-wrap #| msgid "Storage area for state information for each package resource specified in &sources-list; Configuration Item: <literal>Dir::State::Lists</literal>." msgid "" "<!ENTITY file-statelists \"\n" @@ -1018,11 +1032,15 @@ msgid "" " &sources-list;\n" " Configuration Item: <literal>Dir::State::Lists</literal>.</para></listitem>\n" " </varlistentry>\n" -msgstr "Zone de stockage pour les informations qui concernent chaque ressource de paquet spécifiée dans &sources-list; Élément de configuration : <literal>Dir::State::Lists</literal>." +msgstr "" +"<!ENTITY file-statelists \"\n" +" <varlistentry><term><filename>&statedir;/lists/</filename></term>\n" +" <listitem><para>Zone de stockage pour les informations qui concernent chaque ressource de paquet spécifiée dans &sources-list;\n" +" Élément de configuration: <literal>Dir::State::Lists</literal>.</para></listitem>\n" +" </varlistentry>\n" #. type: Plain text -#: apt.ent:355 -#, fuzzy, no-wrap +#: apt.ent:355, no-wrap #| msgid "Storage area for state information in transit. Configuration Item: <literal>Dir::State::Lists</literal> (implicit partial)." msgid "" " <varlistentry><term><filename>&statedir;/lists/partial/</filename></term>\n" @@ -1030,9 +1048,14 @@ msgid "" " Configuration Item: <literal>Dir::State::Lists</literal> (implicit partial).</para></listitem>\n" " </varlistentry>\n" "\">\n" -msgstr "Zone de stockage pour les informations en transit. Élément de configuration : <literal>Dir::State::Lists</literal> (partial est implicite)." +msgstr "" +" <varlistentry><term><filename>&statedir;/lists/partial/</filename></term>\n" +" <listitem><para>Zone de stockage pour les informations en transit.\n" +" Élément de configuration : <literal>Dir::State::Lists</literal> (implicit partial).</para></listitem>\n" +" </varlistentry>\n" +"\">\n" -#. The last update date +#. The last update date #. type: Content of: <refentry><refentryinfo> #: apt-cache.8.xml:13 apt-config.8.xml:13 apt-extracttemplates.1.xml:13 #: apt-ftparchive.1.xml:13 apt-sortpkgs.1.xml:13 sources.list.5.xml:13 @@ -1061,7 +1084,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> #: apt-cache.8.xml:30 @@ -1515,7 +1538,6 @@ msgstr "pkgnames <replaceable>[ préfixe ]</replaceable>" #. 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 " @@ -1529,7 +1551,7 @@ msgid "" "extremely quickly. This command is best used with the <option>--generate</" "option> option." msgstr "" -"Cette commande affiche le nom de chaque paquet du système. Un préfixe pour " +"Cette commande affiche le nom de chaque paquet connu par APT. Un préfixe pour " "filtrer la liste des noms peut être donné en paramètre. La sortie est " "adaptée à une utilisation au sein d'une fonction complète de shell ; elle " "est produite très rapidement. On utilise au mieux cette commande avec " @@ -1541,7 +1563,7 @@ msgid "" "Note that a package which APT knows of is not nessasarily available to " "download, installable or installed, e.g. virtual packages are also listed in " "the generated list." -msgstr "" +msgstr "Veuillez noter qu'un paquet connu par APT n'est pas forcément disponible, installable ou installé. Par exemple, les paquets virtuels sont également affichés dans la liste." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:239 @@ -1906,7 +1928,7 @@ msgstr "Fichiers" #. type: Content of: <refentry><refsect1><variablelist> #: apt-cache.8.xml:363 msgid "&file-sourceslist; &file-statelists;" -msgstr "" +msgstr "&file-sourceslist; &file-statelists;" #. type: Content of: <refentry><refsect1><title> #: apt-cache.8.xml:368 apt-cdrom.8.xml:155 apt-config.8.xml:103 @@ -2424,7 +2446,6 @@ msgstr "Outil de création de fichiers d'index" #. 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> " @@ -2466,7 +2487,7 @@ 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>option de configuration</replaceable></" +"arg> <arg><option>-o <replaceable>option de configuration</replaceable>=<replaceable>chaîne</replaceable></" "option></arg> <arg><option>-c=<replaceable>fichier</replaceable></option></" "arg> <group choice=\"req\"> <arg>packages<arg choice=\"plain\" rep=\"repeat" "\"><replaceable>chemin</replaceable></arg><arg><replaceable>override</" @@ -2545,8 +2566,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:82 apt-ftparchive.1.xml:106 -msgid "" -"The option <option>--db</option> can be used to specify a binary caching DB." +msgid "The option <option>--db</option> can be used to specify a binary caching DB." msgstr "" "On peut se servir de l'option <option>--db</option> pour demander un cache " "binaire." @@ -2701,10 +2721,8 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:155 -msgid "" -"The generate configuration has 4 separate sections, each described below." -msgstr "" -"Ce fichier de configuration possède quatre sections, décrites ci-dessous." +msgid "The generate configuration has 4 separate sections, each described below." +msgstr "Ce fichier de configuration possède quatre sections, décrites ci-dessous." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt-ftparchive.1.xml:157 @@ -3547,7 +3565,7 @@ msgstr "" "<command>apt-ftparchive</command> retourne zéro si tout se passe bien, le " "nombre 100 en cas d'erreur." -#. The last update date +#. The last update date #. type: Content of: <refentry><refentryinfo> #: apt-get.8.xml:13 msgid "" @@ -3571,7 +3589,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> " @@ -3945,7 +3962,6 @@ msgstr "source" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:251 -#, fuzzy #| msgid "" #| "<literal>source</literal> causes <command>apt-get</command> to fetch " #| "source packages. APT will examine the available packages to decide which " @@ -3970,14 +3986,8 @@ msgstr "" "Avec la commande <literal>source</literal>, <command>apt-get</command> " "récupère des paquets sources. APT examine les paquets disponibles pour " "choisir le paquet source à récupérer. Il trouve ensuite et récupère dans le " -"répertoire courant leur version la plus récente. Les paquets source sont " -"suivis séparément des paquets binaires en utilisant les lignes de type " -"<literal>deb-src</literal> dans le fichier &sources-list;. Cela signifie " -"qu'il n'est pas garanti que vous récupérerez le paquet source correspondant " -"à un paquet binaire présent sur le système. Si l'option --compile est " -"utilisée, e paquet sera compilé en paquet(s) .deb binaire(s) avec dpkg-" -"buildpackage. Si l'option --download-only est utilisée, le paquet source " -"sera seulement récupéré et pas décompressé." +"répertoire courant leur version la plus récente par rapport à la version cible par défaut établie avec l'option <literal>APT::Default-Release</" +"literal>, l'option <option>-t</option> ou par paquet avec la syntaxe <literal>paquet/version</literal>, si possible." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:259 @@ -4910,8 +4920,7 @@ msgstr "<filename>/etc/apt/trusted.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:141 msgid "Keyring of local trusted keys, new keys will be added here." -msgstr "" -"Trousseau de clés locales fiables : les nouvelles clés y seront ajoutées." +msgstr "Trousseau de clés locales fiables : les nouvelles clés y seront ajoutées." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:144 @@ -4935,10 +4944,8 @@ msgstr "Trousseau des clés fiables de l'archive Debian." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:152 -msgid "" -"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" -msgstr "" -"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" +msgid "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" +msgstr "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:153 @@ -4950,7 +4957,7 @@ msgstr "Trousseau des clés fiables supprimées de l'archive Debian." msgid "&apt-get;, &apt-secure;" msgstr "&apt-get;, &apt-secure;" -#. The last update date +#. The last update date #. type: Content of: <refentry><refentryinfo> #: apt-mark.8.xml:13 #, fuzzy @@ -5081,8 +5088,7 @@ msgstr "" #: apt-mark.8.xml:93 #, fuzzy #| msgid "<option>-f=<filename>FILENAME</filename></option>" -msgid "" -"<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>" +msgid "<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>" msgstr "<option>-f=<filename>FICHIER</filename></option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -5550,7 +5556,7 @@ msgstr "" "<command>apt-sortpkgs</command> retourne zéro si tout se passe bien ou 100 " "en cas d'erreur." -#. The last update date +#. The last update date #. type: Content of: <refentry><refentryinfo> #: apt.conf.5.xml:13 #, fuzzy @@ -6993,7 +6999,7 @@ msgstr "" #. TODO: provide a #. motivating example, except I haven't a clue why you'd want -#. to do this. +#. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.conf.5.xml:626 msgid "" @@ -7015,8 +7021,7 @@ msgstr "<literal>Debug::Acquire::cdrom</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:645 -msgid "" -"Print information related to accessing <literal>cdrom://</literal> sources." +msgid "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" "Affiche les informations concernant les sources de type <literal>cdrom://</" "literal>" @@ -7029,8 +7034,7 @@ msgstr "<literal>Debug::Acquire::ftp</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:656 msgid "Print information related to downloading packages using FTP." -msgstr "" -"Affiche les informations concernant le téléchargement de paquets par FTP." +msgstr "Affiche les informations concernant le téléchargement de paquets par FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:663 @@ -7040,8 +7044,7 @@ msgstr "<literal>Debug::Acquire::http</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:667 msgid "Print information related to downloading packages using HTTP." -msgstr "" -"Affiche les informations concernant le téléchargement de paquets par HTTP." +msgstr "Affiche les informations concernant le téléchargement de paquets par HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:674 @@ -7202,8 +7205,7 @@ msgstr "<literal>Debug::pkgAcquire::Worker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:796 -msgid "" -"Log all interactions with the sub-processes that actually perform downloads." +msgid "Log all interactions with the sub-processes that actually perform downloads." msgstr "" "Affiche toutes les interactions avec les processus enfants qui se chargent " "effectivement des téléchargements." @@ -7344,8 +7346,7 @@ msgstr "<literal>Debug::pkgPackageManager</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:897 -msgid "" -"Output status messages tracing the steps performed when invoking &dpkg;." +msgid "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "Affiche le détail des opérations liées à l'invocation de &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -7418,13 +7419,13 @@ msgstr "" msgid "&file-aptconf;" msgstr "&apt-conf;" -#. ? reading apt.conf +#. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:975 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." -#. The last update date +#. The last update date #. type: Content of: <refentry><refentryinfo> #: apt_preferences.5.xml:13 msgid "&apt-author.team; &apt-email; &apt-product; <date>04 May 2009</date>" @@ -7566,8 +7567,7 @@ msgstr "une priorité égale à 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:94 -msgid "" -"to the versions that are not installed and belong to the target release." +msgid "to the versions that are not installed and belong to the target release." msgstr "" "est affectée aux versions qui ne sont pas installées et qui appartiennent à " "la distribution par défaut." @@ -8052,8 +8052,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:306 msgid "Determination of Package Version and Distribution Properties" -msgstr "" -"Détermination de la version des paquets et des propriétés des distributions" +msgstr "Détermination de la version des paquets et des propriétés des distributions" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:308 -- cgit v1.2.3 From cdd5a135d9232123dc3650ed1c1cb31d1e24de0b Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sat, 26 Sep 2009 19:45:15 +0200 Subject: Fix some typos from #479997 --- cmdline/apt-cdrom.cc | 2 +- debian/changelog | 2 ++ dselect/install | 4 ++-- methods/connect.cc | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/cmdline/apt-cdrom.cc b/cmdline/apt-cdrom.cc index 342b6314a..d804c55e5 100644 --- a/cmdline/apt-cdrom.cc +++ b/cmdline/apt-cdrom.cc @@ -74,7 +74,7 @@ string pkgCdromTextStatus::PromptLine(const char *Text) bool pkgCdromTextStatus::AskCdromName(string &name) { - cout << _("Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'") << flush; + cout << _("Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'") << flush; name = PromptLine(""); return true; diff --git a/debian/changelog b/debian/changelog index 9d3a0a868..60986ffa1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,8 @@ apt (0.7.25) UNRELEASED; urgency=low * po/LINGUAS. Re-disable Hebrew. Closes: #534992 * Fix typo in apt-cache.8.xml: nessasarily * Fix "with with" in apt-get.8.xml + * Fix some of the typos mentioned by the german team + Closes: #479997 -- Christian Perrier <bubulle@debian.org> Sat, 26 Sep 2009 11:17:25 +0200 diff --git a/dselect/install b/dselect/install index 61d13208e..6779698e0 100755 --- a/dselect/install +++ b/dselect/install @@ -98,8 +98,8 @@ if [ $RES -eq 0 ]; then ;; esac else - echo $"Some errors occurred while unpacking. I'm going to configure the" - echo $"packages that were installed. This may result in duplicate errors" + echo $"Some errors occurred while unpacking. Packages that were installed" + echo $"will be configured. This may result in duplicate errors" echo $"or errors caused by missing dependencies. This is OK, only the errors" echo $"above this message are important. Please fix them and run [I]nstall again" echo $"Press enter to continue." diff --git a/methods/connect.cc b/methods/connect.cc index 355bd5c4d..b5f48907e 100644 --- a/methods/connect.cc +++ b/methods/connect.cc @@ -237,6 +237,6 @@ bool Connect(string Host,int Port,const char *Service,int DefPort,int &Fd, if (_error->PendingError() == true) return false; - return _error->Error(_("Unable to connect to %s %s:"),Host.c_str(),ServStr); + return _error->Error(_("Unable to connect to %s:%s:"),Host.c_str(),ServStr); } /*}}}*/ -- cgit v1.2.3 From 7eade8e91b3df4c3044049bbb178168a9cefa49b Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sat, 26 Sep 2009 20:28:17 +0200 Subject: Enable Asturian translations --- debian/changelog | 1 + po/LINGUAS | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 60986ffa1..3f2e3e67b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,7 @@ apt (0.7.25) UNRELEASED; urgency=low * Fix apt-ftparchive(1) wrt description of the "-o" option. Thanks to Dann Frazier for the patch. Closes: #273100 * po/LINGUAS. Re-disable Hebrew. Closes: #534992 + * po/LINGUAS. Enable Asturian * Fix typo in apt-cache.8.xml: nessasarily * Fix "with with" in apt-get.8.xml * Fix some of the typos mentioned by the german team diff --git a/po/LINGUAS b/po/LINGUAS index 2807a7cb6..59e50ca24 100644 --- a/po/LINGUAS +++ b/po/LINGUAS @@ -1 +1 @@ -ar bg bs ca cs cy da de dz el en_GB es eu fi fr gl hu it ja km ko ku mr nb ne nl nn pl pt pt_BR ro ru sk sl sv th tl uk vi zh_CN zh_TW +ar ast bg bs ca cs cy da de dz el en_GB es eu fi fr gl hu it ja km ko ku mr nb ne nl nn pl pt pt_BR ro ru sk sl sv th tl uk vi zh_CN zh_TW -- cgit v1.2.3 From a9a8bf9b6dcdb24bb3a6158d84bd52a56a6e1cf9 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sat, 26 Sep 2009 20:32:58 +0200 Subject: Enable Lithuanian translations --- debian/changelog | 2 +- po/LINGUAS | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 3f2e3e67b..2dfffac69 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,7 +3,7 @@ apt (0.7.25) UNRELEASED; urgency=low * Fix apt-ftparchive(1) wrt description of the "-o" option. Thanks to Dann Frazier for the patch. Closes: #273100 * po/LINGUAS. Re-disable Hebrew. Closes: #534992 - * po/LINGUAS. Enable Asturian + * po/LINGUAS. Enable Asturian and Lithuanian * Fix typo in apt-cache.8.xml: nessasarily * Fix "with with" in apt-get.8.xml * Fix some of the typos mentioned by the german team diff --git a/po/LINGUAS b/po/LINGUAS index 59e50ca24..4cf9be5be 100644 --- a/po/LINGUAS +++ b/po/LINGUAS @@ -1 +1 @@ -ar ast bg bs ca cs cy da de dz el en_GB es eu fi fr gl hu it ja km ko ku mr nb ne nl nn pl pt pt_BR ro ru sk sl sv th tl uk vi zh_CN zh_TW +ar ast bg bs ca cs cy da de dz el en_GB es eu fi fr gl hu it ja km ko ku lt mr nb ne nl nn pl pt pt_BR ro ru sk sl sv th tl uk vi zh_CN zh_TW -- cgit v1.2.3 From 6fa6af91e771ffc605108e1bea51c11d4feedaeb Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sun, 27 Sep 2009 17:31:25 +0200 Subject: Polish translation update --- debian/changelog | 2 ++ po/pl.po | 83 ++++++++++++++++++++++++++++++++------------------------ 2 files changed, 49 insertions(+), 36 deletions(-) diff --git a/debian/changelog b/debian/changelog index 2dfffac69..8808a4e82 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,8 @@ apt (0.7.25) UNRELEASED; urgency=low * Fix "with with" in apt-get.8.xml * Fix some of the typos mentioned by the german team Closes: #479997 + * Polish translation update by Wiktor Wandachowicz + Closes: #548571 -- Christian Perrier <bubulle@debian.org> Sat, 26 Sep 2009 11:17:25 +0200 diff --git a/po/pl.po b/po/pl.po index 07c046e51..4a1eb7adc 100644 --- a/po/pl.po +++ b/po/pl.po @@ -2,16 +2,16 @@ # Polish translation by: # Marcin Owsiany <porridge@debian.org>, 2002, 2003, 2004. # Bartosz Fenski <fenio@debian.org>, 2005, 2006 -# Wiktor Wandachowicz <siryes@gmail.com>, 2008 +# Wiktor Wandachowicz <siryes@gmail.com>, 2008, 2009 # # Nazewnictwo i spójność tłumaczeń programów apt, aptitude, synaptic i innych: # http://wiki.debian.org/PolishL10N/PackageInstallers msgid "" msgstr "" -"Project-Id-Version: apt 0.7.14\n" +"Project-Id-Version: apt 0.7.23.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" -"PO-Revision-Date: 2008-11-13 17:10+0100\n" +"POT-Creation-Date: 2009-09-26 13:54+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" "MIME-Version: 1.0\n" @@ -1000,7 +1000,7 @@ msgstr "Wybrano wersję %s (%s) dla %s\n" #: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" -msgstr "" +msgstr "Brak pakietu źródłowego \"%s\", wybieranie \"%s\" zamiast niego\n" #: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" @@ -1023,11 +1023,11 @@ msgstr "" "wymagane:" #: cmdline/apt-get.cc:1505 -#, fuzzy, c-format +#, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" -"Następujące pakiety zostały zainstalowane automatycznie i nie są już więcej " -"wymagane:" +"%lu pakiety(ów) zostały zainstalowane automatycznie i nie są już więcej " +"wymagane.\n" #: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." @@ -1207,18 +1207,17 @@ msgstr "Proces potomny zawiódł" 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 na czas budowania" +"zależności dla budowania" #: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" -msgstr "" -"Nie udało się pobrać informacji o zależnościach na czas budowania dla %s" +msgstr "Nie udało się pobrać informacji o zależnościach dla budowania %s" #: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" -msgstr "%s nie ma zależności czasu budowania.\n" +msgstr "%s nie ma zależności dla budowania.\n" #: cmdline/apt-get.cc:2487 #, c-format @@ -1253,18 +1252,17 @@ msgstr "Nie udało się spełnić zależności %s od %s: %s" #: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." -msgstr "Nie udało się spełnić zależności na czas budowania od %s." +msgstr "Nie udało się spełnić zależności dla budowania %s." #: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" -msgstr "Nie udało się przetworzyć zależności na czas budowania" +msgstr "Nie udało się przetworzyć zależności dla budowania" #: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Obsługiwane moduły:" #: cmdline/apt-get.cc:2697 -#, fuzzy msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1322,8 +1320,7 @@ msgstr "" " autoremove - Usuwa automatycznie wszystkie nieużywane pakiety\n" " purge - Usuwa i czyści pakiety\n" " source - Pobiera archiwa źródłowe\n" -" build-dep - Konfiguruje zależności na czas budowania dla pakietów " -"źródłowych\n" +" build-dep - Konfiguruje zależności dla budowania pakietów źródłowych\n" " dist-upgrade - Aktualizacja dystrybucji, patrz apt-get(8)\n" " dselect-upgrade - Instaluje według wyborów dselect\n" " clean - Usuwa pobrane pliki archiwów\n" @@ -1344,7 +1341,7 @@ msgstr "" " -b Buduje pakiet po pobraniu archiwum źródłowego\n" " -V Pokazuje pełną informację na temat wersji\n" " -c=? Czyta wskazany plik konfiguracyjny.\n" -" -o=? Ustawie dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" +" -o=? Ustawia dowolną opcję konfiguracji, np. -o dir::cache=/tmp\n" "Więcej informacji i opcji można znaleźć na stronach podręcznika\n" "apt-get(8), sources.list(5) i apt.conf(5).\n" " Ten APT ma moce Super Krowy.\n" @@ -1356,6 +1353,10 @@ msgid "" " Keep also in mind that locking is deactivated,\n" " so don't depend on the relevance to the real current situation!" msgstr "" +"UWAGA: To jest tylko symulacja!\n" +" apt-get wymaga normalnie praw administracyjnych dla działania.\n" +" Aktualnie blokowanie jest wyłączone, więc nie należy polegać\n" +" na związku z rzeczywistą sytuacją!" #: cmdline/acqprogress.cc:55 msgid "Hit " @@ -1491,6 +1492,7 @@ msgstr "Błąd przy czytaniu nagłówka składnika archiwum" #: apt-inst/contrib/arfile.cc:90 #, fuzzy, c-format +#| msgid "Invalid archive member header" msgid "Invalid archive member header %s" msgstr "Nieprawidłowy nagłówek składnika archiwum" @@ -2131,30 +2133,32 @@ msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " "Current value: %lu. (man 5 apt.conf)" msgstr "" +"Brak miejsca dla dynamicznego MMap. Proszę zwiększyć rozmiar APT::Cache-" +"Limit. Aktualna wartość: %lu. (man 5 apt.conf)" #. d means days, h means hours, min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" -msgstr "" +msgstr "%lidni %lih %limin %lis" #. h means hours, min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" -msgstr "" +msgstr "%lih %limin %lis" #. min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" -msgstr "" +msgstr "%limin %lis" #. s means seconds #: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" -msgstr "" +msgstr "%lis" #: apt-pkg/contrib/strutl.cc:1040 #, c-format @@ -2314,9 +2318,9 @@ msgid "Sub-process %s received a segmentation fault." msgstr "Podproces %s spowodował naruszenie segmentacji." #: apt-pkg/contrib/fileutl.cc:458 -#, fuzzy, c-format +#, c-format msgid "Sub-process %s received signal %u." -msgstr "Podproces %s spowodował naruszenie segmentacji." +msgstr "Podproces %s dostał sygnał %u." #: apt-pkg/contrib/fileutl.cc:462 #, c-format @@ -2410,7 +2414,7 @@ msgstr "Psuje" #: apt-pkg/pkgcache.cc:227 msgid "Enhances" -msgstr "" +msgstr "Rozszerza" #: apt-pkg/pkgcache.cc:238 msgid "important" @@ -2626,9 +2630,9 @@ 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:347 -#, fuzzy, c-format +#, c-format msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Nieprawidłowe informacje w pliku ustawień, brak nagłówka Package" +msgstr "Nieprawidłowe informacje w pliku ustawień %s, brak nagłówka Package" #: apt-pkg/policy.cc:369 #, c-format @@ -2782,19 +2786,19 @@ msgid "Size mismatch" msgstr "Błędny rozmiar" #: apt-pkg/indexrecords.cc:40 -#, fuzzy, c-format +#, c-format msgid "Unable to parse Release file %s" -msgstr "Nie udało się zanalizować pliku pakietu %s (1)" +msgstr "Nie udało się zanalizować pliku Release %s" #: apt-pkg/indexrecords.cc:47 -#, fuzzy, c-format +#, c-format msgid "No sections in Release file %s" -msgstr "Uwaga, wybieranie %s zamiast %s\n" +msgstr "Brak sekcji w pliku Release %s" #: apt-pkg/indexrecords.cc:81 #, c-format msgid "No Hash entry in Release file %s" -msgstr "" +msgstr "Brak wpisu Hash w pliku Release %s" #: apt-pkg/vendorlist.cc:66 #, c-format @@ -2859,6 +2863,8 @@ msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" +"Nie można odnaleźć żadnych plików pakietów, być może nie jest to dysk " +"Debiana lub inna architektura?" #: apt-pkg/cdrom.cc:710 #, c-format @@ -2983,7 +2989,7 @@ msgstr "" #: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" -msgstr "" +msgstr "Uruchamianie dpkg" #: apt-pkg/deb/debsystem.cc:70 #, c-format @@ -2991,21 +2997,26 @@ msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" +"Nie udało się zablokować katalogu administracyjnego (%s), czy inny proces go " +"używa?" #: apt-pkg/deb/debsystem.cc:73 -#, fuzzy, c-format +#, c-format msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Nie udało się zablokować katalogu list" +msgstr "" +"Nie udało się zablokować katalogu administracyjnego (%s), czy jesteś rootem?" #: apt-pkg/deb/debsystem.cc:82 msgid "" "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct " "the problem. " msgstr "" +"dpkg został przerwany, należy ręcznie uruchomić \"dpkg --configure -a\" aby " +"naprawić problem." #: apt-pkg/deb/debsystem.cc:100 msgid "Not locked" -msgstr "" +msgstr "Nie zablokowany" #: methods/rred.cc:219 msgid "Could not patch file" -- cgit v1.2.3 From 3483c747ff982cbc959d88aac0671e064022805a Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sun, 27 Sep 2009 18:01:29 +0200 Subject: Update PO files --- configure.in | 2 +- po/ChangeLog | 4 + po/apt-all.pot | 10 +- po/ar.po | 15 +- po/ast.po | 612 +++++++++++++++++++++++++++++---------------------------- po/bg.po | 15 +- po/bs.po | 12 +- po/ca.po | 15 +- po/cs.po | 15 +- po/cy.po | 14 +- po/da.po | 15 +- po/de.po | 15 +- po/dz.po | 15 +- po/el.po | 15 +- po/en_GB.po | 15 +- po/es.po | 15 +- po/eu.po | 15 +- po/fi.po | 15 +- po/fr.po | 16 +- po/gl.po | 15 +- po/hu.po | 15 +- po/it.po | 15 +- po/ja.po | 15 +- po/km.po | 15 +- po/ko.po | 15 +- po/ku.po | 13 +- po/lt.po | 608 ++++++++++++++++++++++++++++---------------------------- po/mr.po | 15 +- po/nb.po | 15 +- po/ne.po | 15 +- po/nl.po | 15 +- po/nn.po | 14 +- po/pl.po | 16 +- po/pt.po | 15 +- po/pt_BR.po | 15 +- po/ro.po | 15 +- po/ru.po | 15 +- po/sk.po | 15 +- po/sl.po | 14 +- po/sv.po | 15 +- po/th.po | 15 +- po/tl.po | 15 +- po/uk.po | 15 +- po/vi.po | 15 +- po/zh_CN.po | 15 +- po/zh_TW.po | 15 +- 46 files changed, 995 insertions(+), 850 deletions(-) diff --git a/configure.in b/configure.in index 01a98c2cb..9d6589e55 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.7.23.1") +AC_DEFINE_UNQUOTED(VERSION,"0.7.25") PACKAGE="apt" AC_DEFINE_UNQUOTED(PACKAGE,"$PACKAGE") AC_SUBST(PACKAGE) diff --git a/po/ChangeLog b/po/ChangeLog index 8d5515e9d..373ef4ca6 100644 --- a/po/ChangeLog +++ b/po/ChangeLog @@ -1,3 +1,7 @@ +2009-09-26 Christian Perrier <bubulle@debian.org> + + * LINGUAS: re-disabled Hebrew translation on translator's request. + 2009-06-05 Jordi Mallach <jordi@debian.org> * ca.po: Updated to 539t diff --git a/po/apt-all.pot b/po/apt-all.pot index 1dff93356..a30ce26a7 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: 2009-09-26 13:54+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -196,7 +196,7 @@ msgid "" msgstr "" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" #: cmdline/apt-cdrom.cc:92 @@ -1237,11 +1237,11 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +msgid "will be configured. This may result in duplicate errors" msgstr "" #: dselect/install:103 @@ -1769,7 +1769,7 @@ msgstr "" #: methods/connect.cc:240 #, c-format -msgid "Unable to connect to %s %s:" +msgid "Unable to connect to %s:%s:" msgstr "" #: methods/gpgv.cc:71 diff --git a/po/ar.po b/po/ar.po index 2d6a75fd8..76da797f5 100644 --- a/po/ar.po +++ b/po/ar.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -201,7 +201,8 @@ msgid "" msgstr "" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "الرجاء كتابة اسم لهذا القرص، مثال 'Debian 2.1r1 Disk 1'" #: cmdline/apt-cdrom.cc:92 @@ -1255,11 +1256,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "حدثت بعض الأخطاء أثناء فك الحزمة. سأقوم بتهيئة " #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "الحزم التي تم تثبيتها. قد يتسبب هذا بظهر أخطاء متكررة" #: dselect/install:103 @@ -1790,8 +1793,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "تعذر الاتصال بـ%s %s:" #: methods/gpgv.cc:71 diff --git a/po/ast.po b/po/ast.po index 0b54122bf..74f9a0c3b 100644 --- a/po/ast.po +++ b/po/ast.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+0200\n" "PO-Revision-Date: 2009-07-01 18:09+0100\n" "Last-Translator: Marcos Alvarez Costales <marcos.alvarez.costales@gmail." "com>\n" @@ -17,7 +17,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "El paquete %s versin %s nun cumple una dependencia:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -87,7 +87,7 @@ msgstr "Espaciu ociosu en total: " msgid "Total space accounted for: " msgstr "Informe del total d'espaciu: " -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "El ficheru de paquetes %s nun ta sincronizu." @@ -146,14 +146,14 @@ msgstr " Tabla de versiones:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "%s %s pa %s compilu en %s %s\n" -#: cmdline/apt-cache.cc:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -229,15 +229,16 @@ msgstr "" "tmp\n" "Ver les pxines del manual apt-cache(8) y apt.conf(5) pa ms informacin.\n" -#: cmdline/apt-cdrom.cc:78 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#: cmdline/apt-cdrom.cc:77 +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Da-y un nome a esti discu, como 'Debian 2.1r1 Discu 1'" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Inxerta un discu nel presu y calca intro" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Repite'l procesu colos dems CDs del conxuntu." @@ -303,7 +304,7 @@ msgstr "" "-o=? Afita una opcin de configuracin arbitraria, p. ej. -o dir::cache=/" "tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Nun se pue escribir en %s" @@ -647,7 +648,7 @@ msgstr "Nun pudo renomase %s como %s" msgid "Y" msgstr "S" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "Error de compilacin d'espresin regular - %s" @@ -748,118 +749,118 @@ msgstr "%lu para desaniciar y %lu nun actualizaos.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu nun instalaos dafechu o desaniciaos.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Iguando dependencies..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " fall." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Nun pudieron iguase les dependencies" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" msgstr "Nun pue amenorgase'l conxuntu d'actualizacin" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Fecho" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." msgstr "Habres d'executar `apt-get -f install' para igualo." -#: cmdline/apt-get.cc:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Dependencies incumples. Tntalo usando -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "AVISU: Nun pudieron autenticase los siguientes paquetes!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "Avisu d'autenticacin saltu.\n" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Instalar esos paquetes ensin verificacin [s/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Dellos paquetes nun pudieron autenticase" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 msgid "There are problems and -y was used without --force-yes" msgstr "Hai problemes y utilizose -y ensin --force-yes" -#: cmdline/apt-get.cc:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "Error internu, InstallPackages llamose con paquetes fraaos!" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "Fai falta desaniciar los paquetes pero desaniciar ta torgu." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "Error internu, ordenar nun fin" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Nun pue bloquiase'l direutoriu de descarga" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Nun pudo lleese la llista de fontes." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" msgstr "Que raro.. Los tamaos nun concasen, escribe a apt@packages.debian.org" -#: cmdline/apt-get.cc:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Hai que descargar %sB/%sB d'archivos.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Hai que descargar %sB d'archivos.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, c-format msgid "After this operation, %sB of additional disk space will be used.\n" msgstr "Tres d'esta operacin, van usase %sB d'espaciu de discu adicional.\n" -#: cmdline/apt-get.cc:853 +#: cmdline/apt-get.cc:852 #, c-format msgid "After this operation, %sB disk space will be freed.\n" msgstr "Tres d'esta operacin, van lliberase %sB d'espaciu de discu.\n" -#: cmdline/apt-get.cc:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nun pue determinase l'espaciu llibre de %s" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "Nun tienes espaciu libre bastante en %s." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "Conseose Trivial Only pero sta nun ye una operacin trivial." -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "S, facer lo que digo!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -870,28 +871,28 @@ msgstr "" "Pa continuar escribe la frase '%s'\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Encaboxar." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Quies continuar [S/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Fall algamar %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Dellos ficheros nun pudieron descargase" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Descarga completa y en mou de slo descarga" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -899,47 +900,47 @@ msgstr "" "Nun pudieron algamase dellos archivos, seique executando apt-get update o " "tentando --fix-missing?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing y cambu de mediu nun ta sofitao actualmente" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Nun pudieron iguase los paquetes que falten." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Encaboxando la instalacin." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Nota, escoyendo %s nel llugar de %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "Saltando %s, ya ta instalau y la actualizacin nun ta activada.\n" -#: cmdline/apt-get.cc:1084 +#: cmdline/apt-get.cc:1111 #, 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:1095 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "El paquete %s ye un paquete virtual ufru por:\n" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Instalu]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Has d'escoyer esplcitamente unu pa instalar." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -950,58 +951,58 @@ msgstr "" "Esto puede significar que falta el paquete, ta arrumbu, o slo\n" "ta disponible dende otra fonte\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Sicas, los siguientes paquetes reemplacenlu:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "El paquete %s nun tien candidatu pa instalacin" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1186 #, c-format msgid "Reinstallation of %s is not possible, it cannot be downloaded.\n" msgstr "La reinstalacin de %s nun ye dable, nun pue descargase.\n" -#: cmdline/apt-get.cc:1167 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s y ta na versin ms nueva.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Nun s'alcontr la distribucin '%s' pa '%s'" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Nun s'alcontr la versin '%s' pa '%s'" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Escoyida la versin %s (%s) pa %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "Nenguna fonte de paquetes'% s' esbillada '% s' eh\n" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "La orde update nun lleva argumentos" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Nun pudo bloquiase'l direutoriu de llista" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1454 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:1445 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" @@ -1009,11 +1010,18 @@ msgstr "" "Los siguientes paquetes instalaronse de manera automtica y ya nun se " "necesiten:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1505 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "" +"Los siguientes paquetes instalaronse de manera automtica y ya nun se " +"necesiten:" + +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Usa 'apt-get autoremove' pa desinstalalos." -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1031,43 +1039,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" msgstr "La siguiente informacin pue aidar a resolver la situacin:" -#: cmdline/apt-get.cc:1459 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "Error internu, AutoRemover rompi coses" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "Error internu, AllUpgrade rompi coses" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Nun pudo alcontrase la tarea %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Nun pudo alcontrase'l paquete %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Nota, escoyendo %s pa la espresin regular '%s'\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s axustu como instalu manualmente.\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1774 msgid "You might want to run `apt-get -f install' to correct these:" msgstr "Habres d'executar `apt-get -f install' para iguar estos:" -#: cmdline/apt-get.cc:1718 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1075,7 +1083,7 @@ msgstr "" "Dependencies ensin cubrir. Tenta 'apt-get -f install' ensin paquetes (o " "consea una solucin)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1789 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" @@ -1087,117 +1095,117 @@ msgstr "" "inestable, que dellos paquetes necesarios nun se crearon o que\n" "s'allugaron fuera d'Incoming." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Paquetes fraaos" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Instalarnse los siguientes paquetes extra:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Paquetes afalaos:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Paquetes encamentaos" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Calculando l'autualizacin... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Fall" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Fecho" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Error internu, l'iguador de problemes fra coses" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" msgstr "Has de consear polo menos un paquete p'algamar so fonte" -#: cmdline/apt-get.cc:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Nun pudo alcontrase un paquete fonte pa %s" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Saltando'l ficheru y descargu '%s'\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "Nun hai espaciu llibre bastante en %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2254 #, 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:2195 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Hai falta descargar %sB d'archivos fonte.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Fonte descargada %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Fall la descarga de dellos archivos." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" msgstr "Saltando'l desempaquetu de la fonte y desempaquetada en %s\n" -#: cmdline/apt-get.cc:2272 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Fall la orde de desempaquetu '%s'.\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Comprueba qu'el paquete 'dpkg-dev' ta instalu.\n" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Fall la orde build '%s'.\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Fall el procesu fu" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" msgstr "" "Hai que consear polo menos un paquete pa verificar les dependencies de " "construccin" -#: cmdline/apt-get.cc:2353 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nun pudo algamase informacin de dependencies de construccin pa %s" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "%s nun tien dependencies de construccin.\n" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1206,7 +1214,7 @@ msgstr "" "La dependencia %s en %s nun puede satisfacese porque nun se puede atopar el " "paquete %s" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1215,32 +1223,32 @@ msgstr "" "La dependencia %s en %s nun puede satisfacese porque denguna versin " "disponible del paquete %s satisfaz los requisitos de versin" -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2576 #, 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 instalu %s ye " "demasiao nuevu" -#: cmdline/apt-get.cc:2541 +#: cmdline/apt-get.cc:2603 #, 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:2555 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "Les dependencies de construccin de %s nun pudieron satisfacese." -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "Fallu al procesar les dependencies de construccin" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Mdulos sofitaos:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2697 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1326,7 +1334,7 @@ msgstr "" "pa ms informacin y opciones.\n" " Esti APT tien Poderes de Super Vaca.\n" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1419,11 +1427,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Quies desaniciar los ficheros .deb descargaos previamente?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Ocurrieron dellos errores al desempaquetar. Va configurarse'l" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "paquetes que s'instalaron. Esto pue causar errores duplicaos" #: dselect/install:103 @@ -1471,7 +1481,12 @@ msgstr "Robla del ficheru inv msgid "Error reading archive member header" msgstr "Fallu al lleer la testera de miembru del ficheru" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, fuzzy, c-format +msgid "Invalid archive member header %s" +msgstr "Testera de miembur del ficheru invlida" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "Testera de miembur del ficheru invlida" @@ -1571,9 +1586,13 @@ msgstr "Sobreescribiendo concordancia del paquete ensin versi msgid "File %s/%s overwrites the one in the package %s" msgstr "El ficheru %s/%s sobreescribe al que ta nel paquete %s" -#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#. 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/configuration.cc:843 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Nun ye a lleer %s" @@ -1604,9 +1623,9 @@ msgstr "" "Los direutorios info y temp tienen de tar nel mesmu sistema de ficheros" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Lleendo llista de paquetes" @@ -1709,12 +1728,12 @@ msgstr "Nun fui a atopar un ficheru de control v msgid "Unparsable control file" msgstr "Ficheru de control inanalizable" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Nun se pudo lleer la base datos %s del CD-ROM" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" @@ -1722,20 +1741,20 @@ msgstr "" "Por favor usa apt-cdrom pa facer qu'APT reconoza esti CD. apt-get update nun " "se puede usar p'amestar CDs nuevos" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "CD-ROM malu" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Nun se pudo desmontar el CD-ROM de %s; puede que se tea usando ent." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Nun s'atopa'l discu." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Nun s'atopa'l ficheru." @@ -1753,34 +1772,34 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "URI malu, los URIS llocales nun pueden entamar por //" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Entrando" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "Nun se pudo determinar el nome del par" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "Nun se pudo determinar el nome llocal" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "El sirvidor refug la conexn, y dixo: %s" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "L'usuariu (USER) fall; el sirvidor dixo: %s" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "La contrasea (PASS) fall; el sirvidor dixo: %s" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." @@ -1788,114 +1807,114 @@ msgstr "" "Especificse un sirvidor proxy pero non un script d'entrada, Acquire::ftp::" "ProxyLogin ta baleru." -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "Fall la orde '%s' del guin d'entrada; el sirvidor dixo: %s" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "La triba (TYPE) fall; el sirvidor dixo: %s" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Gandi'l tiempu de conexn" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "El sirvidor zarr la conexn" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Fallu de llectura" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "Una rempuesta revirti'l buffer." -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "Corrupcin del protocolu" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Fallu d'escritura" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "Nun se pudo crear un socket" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "Nun se pudo coneutar el zcalu de datos; gandi'l tiempu de conexn" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "Nun se pudo coneutar un socket pasivu." -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "getaddrinfo nun pudo obtener un zcalu oyente" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "Nun se pudo enllazar con un socket" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "Nun se pudo escuchar nel socket" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "Nun se pudo determinar el nome del socket" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "Nun se pudo mandar la orde PORT" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "Direicin de familia %u desconocida (AF_*)" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "EPRT fall; el sirvidor dixo: %s" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "Gandi'l tiempu de conexn col zcalu de datos" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "Nun se pudo aceptar la conexn" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "Hebo un problema al xenerar el hash del ficheru" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Nun se pudo descargar el ficheru; el sirvidor dixo '%s'" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "Gandi'l tiempu del zcalu de datos" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "Fall la tresferencia de datos; el sirvidor dixo '%s'" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Consulta" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "Nun se pudo invocar " @@ -1952,8 +1971,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Daqu raru pas resolviendo '%s:%s' (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Nun se pudo coneutar a %s %s:" #: methods/gpgv.cc:71 @@ -2007,93 +2026,93 @@ msgstr "Nun se pudo abrir una tuber msgid "Read error from %s process" msgstr "Fallu de llectura dende'l procesu %s" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Esperando les testeres" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "Obtvose una sola llinia de testera penriba de %u carauteres" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "Fallu na llinia testera" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "El sirvidor HTTP mand una testera incorreuta de rempuesta" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "El sirvidor HTTP mand una testera incorreuta de Content-Length" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "El sirvidor HTTP mand una testera incorreuta de Content-Range" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "Esti sirvidor HTTP tien rotu'l soporte d'alcance" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "Formatu de data desconocu" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "Fall la escoyeta" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Gandi'l tiempu de conexn" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "Fallu al escribir nel ficheru de salida" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Fallu al escribir nel ficheru" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "Fallu al escribir nel ficheru" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "Fallu al lleer nel sirvidor. El llau remotu zarr la conexn." -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "Fallu al lleer nel sirvidor" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" msgstr "Fall al francer el ficheru" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "Datos de testera incorreutos" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Fallo la conexn" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Fallu internu" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "Nun se puede facer mmap d'un ficheru baleru" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "Nun se pudo facer mmap de %lu bytes" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2103,81 +2122,81 @@ msgstr "" "Limit. El valor actual ye : %lu. (man 5 apt.conf)" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "%lid %lih %limin %lis" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "%lih %limin %lis" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "%limin %lis" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "%lis" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "Escoyeta %s que nun s'atopa" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "Triba d'abreviatura que nun se reconoz: %c" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "Abriendo ficheros de configuracin %s" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "Fallu de sintaxis %s:%u: Nun hai un nome al entamu del bloque." -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "Fallu de sintaxis %s:%u: Marca mal formada" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "Fallu de sintaxis %s:%u: Puxarra extra dempus del valor" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" "Error de sintaxis %s:%u: Les directives pueden facese slo nel nivel cimeru" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "Fallu de sintaxis %s:%u: Demasiaes inclusiones aeraes" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "Fallu de sintaxis %s:%u: Incluyendo dende equ" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "Error de sintaxis %s:%u: La directiva '%s' nun ta sofitada" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "Fallu de sintaxis %s:%u: Puxarra extra al final del ficheru" @@ -2243,13 +2262,13 @@ msgstr "Operaci msgid "Unable to stat the mount point %s" msgstr "Nun puede algamase informacin del puntu de montaxe %s" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Nun se pudo cambiar a %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "Nun se pudo montar el CD-ROM" @@ -2278,51 +2297,50 @@ msgstr "Nun se pudo torgar %s" msgid "Waited for %s but it wasn't there" msgstr "Esperaba %s pero nun taba ell" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "El subprocesu %s recibi un fallu de segmentacin." -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "El subprocesu %s recibi un fallu de segmentacin." -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "El subprocesu %s devolvi un cdigu d'error (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "El subprocesu %s termin de manera inesperada" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Nun se pudo abrir el ficheru %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "lleos, ent tena de lleer %lu pero nun queda nada" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "escritos, ent tena d'escribir %lu pero nun pudo facerse" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Problemes zarrando'l ficheru" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "Hai problemes desvenceyando'l ficheru %s" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Hai problemes al sincronizar el ficheru" @@ -2415,16 +2433,16 @@ msgstr "Versiones candidates" msgid "Dependency generation" msgstr "Xeneracin de dependencies" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Lleendo informacin d'estu" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "Nun se pudo abrir el ficheru d'estu %s" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "Fall la escritura del ficheru temporal d'estu %s" @@ -2464,32 +2482,32 @@ msgstr "Llinia %lu mal formada na llista d'or msgid "Malformed line %lu in source list %s (dist parse)" msgstr "Llinia %lu mal formada na llista d'orxenes %s (anals de dist)" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Abriendo %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "Llinia %u demasiao llarga na llista d'orgenes %s." -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "Llinia %u mal formada na llista d'orxenes %s (triba)" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "Triba '%s' desconocida na llinia %u de la llista d'orxenes %s" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "Llinia %u mal formada na llista d'orxenes %s (id del proveedor)" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2512,7 +2530,7 @@ msgid "" msgstr "" "El paquete %s necesita reinstalase, pero nun s'alcuentra un archivu pa el." -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." @@ -2520,11 +2538,11 @@ msgstr "" "Error, pkgProblemResolver::Resolve xener fraaures, esto puede ser pola mor " "de paquetes retenos." -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "Nun pueden iguase los problemes; tienes paquetes fraaos retenidos." -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2544,12 +2562,12 @@ msgstr "Falt'l direutoriu d'archivos %spartial." #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Descargando ficheru %li de %li (falten %s)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Descargando ficheru %li de %li" @@ -2569,16 +2587,16 @@ msgstr "El m msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "Por favor, introduz el discu '%s' nel presu '%s' y calca Intro." -#: apt-pkg/init.cc:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "El sistema d'empaquetu '%s' nun ta sofitu" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "Nun pudo determinase una triba de sistema d'empaquetu afayadiza" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "Nun pudo lleese %s." @@ -2596,134 +2614,133 @@ 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:329 +#: apt-pkg/policy.cc:347 #, fuzzy, c-format -#| msgid "Invalid record in the preferences file, no Package header" msgid "Invalid record in the preferences file %s, no Package header" msgstr "" "Rexistru invlidu nel ficheru de preferencies, nun hai cabecera Paquete" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "Nun s'entiende'l tipu de pin %s" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "Nun hai priorid (o ye cero) conseada pa pin" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "La cach tien un sistema de versiones incompatible" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "Hebo un error al procesar %s (NewPackage)" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "Hebo un error al procesar %s (UsePackage1)" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "Hebo un error al procesar %s (NewFileDesc1)" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "Hebo un error al procesar %s (UsePackage2)" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "Hebo un error al procesar %s (NewFileVer1)" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "Hebo un error al procesar %s (NewVersion1)" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "Hebo un error al procesar %s (UsePackage3)" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "Hebo un error al procesar %s (NewVersion2)" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "Hebo un error al procesar %s (NewFileDesc2)" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" "Coime, perpasaste'l nmberu de nomes de paquete qu'esti APT ye a remanar." -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "Vaya, perpasaste'l nmberu de versiones coles que puede esti APT." -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "Coime, perpasaste'l nmberu de descripciones qu'esti APT ye a remanar." -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "Vaya, perpasaste'l nmberu de dependencies coles que puede esti APT." -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "Hebo un error al procesar %s (FindPkg)" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "Hebo un error al procesar %s (CollectFileProvides)" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "Al procesar dependencies de ficheros nun s'alcontr el paquete %s %s" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "Nun se puede lleer la llista de paquetes d'orxenes %s" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "Recoyendo ficheros qu'apurren" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "Fallu de E/S al grabar cach d'orxenes" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "fall'l cambiu de nome, %s (%s -> %s)." -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "La suma MD5 nun concasa" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "La suma hash nun concasa" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "Nun hai clave pblica denguna disponible pa les IDs de clave darru:\n" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, c-format msgid "" "I wasn't able to locate a file for the %s package. This might mean you need " @@ -2732,7 +2749,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:1290 +#: apt-pkg/acquire-item.cc:1275 #, c-format msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " @@ -2741,7 +2758,7 @@ msgstr "" "Nun pudo alcontrase un ficheru pal paquete %s. Esto puede significar que " "necesites iguar manualmente esti paquete" -#: apt-pkg/acquire-item.cc:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." @@ -2749,19 +2766,17 @@ msgstr "" "Los ficheros d'indiz de paquetes tan corrompos. Nun hai campu Filename: pal " "paquete %s." -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "El tamau nun concasa" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to parse package file %s (1)" msgid "Unable to parse Release file %s" msgstr "Nun se pudo tratar el ficheru de paquetes %s (1)" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Nota, escoyendo %s nel llugar de %s\n" @@ -2775,7 +2790,7 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "El bloque de proveedor %s nun contin una buelga dixital" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" @@ -2784,42 +2799,42 @@ msgstr "" "Usando el puntu de montaxe de CD-ROM %s\n" "Montando el CD-ROM\n" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Identificando.. " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "Etiqueta guardada: %s\n" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "Desmontando l CD-ROM...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Usando el puntu de montaxe de CD-ROM %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Desmontando'l CD-ROM\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Esperando'l discu...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Montando'l CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "Buscando nel discu ficheros d'ndices...\n" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" @@ -2828,22 +2843,22 @@ msgstr "" "Atopu %zu indices de paquete, %zu indices de fonte, %zu indices de torna y %" "zu firmes\n" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Atopse la etiqueta: '%s'\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "Esi nun ye un nome vlidu; intntalo otra vuelta.\n" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2852,34 +2867,34 @@ msgstr "" "Esti discu llmase: \n" "'%s'\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Copiando les llistes de paquetes..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Escribiendo llista nueva d'orxenes\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "Les entraes de la llista d'orxenes pa esti discu son:\n" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "%i rexistros escritos.\n" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, 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:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, 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:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -2891,12 +2906,12 @@ msgstr "" msgid "Installing %s" msgstr "Instalando %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Configurando %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Desinstalando %s" @@ -2906,58 +2921,58 @@ msgstr "Desinstalando %s" msgid "Running post-installation trigger %s" msgstr "Executando activador de post-instalacin de %s" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Falta'l direutoriu '%s'." -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Preparando %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Desempaquetando %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Preparndose pa configurar %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "%s instalu" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Preparndose pa desinstalar %s" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "%s desinstalu" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Preparndose pa desinstalar dafechu %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "Desinstalse dafechu %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" "Nun puede escribise nel rexistru, fall openpty() (/dev/pts nun ta " "montu?)\n" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" @@ -2970,7 +2985,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Nun pudo bloquiase'l direutoriu de llista" diff --git a/po/bg.po b/po/bg.po index 5aa3fe4c3..bc905ac74 100644 --- a/po/bg.po +++ b/po/bg.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+0200\n" "PO-Revision-Date: 2009-01-27 12:41+0200\n" "Last-Translator: Damyan Ivanov <dmn@debian.org>\n" "Language-Team: Bulgarian <dict@fsa-bg.org>\n" @@ -237,7 +237,8 @@ msgstr "" "Вижте „man“ страниците apt-cache(8) и apt.conf(5) за повече информация.\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Задайте име за този диск, като „Debian 2.1r1 Disk1“" #: cmdline/apt-cdrom.cc:92 @@ -1441,11 +1442,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Желаете ли да изтриете изтеглените пакетни файлове?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Възникнаха някои грешки при разпакетирането. Ще се конфигурират" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "инсталираните пакети. Това може да доведе до дублирани грешки или" #: dselect/install:103 @@ -1983,8 +1986,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Нещо лошо се случи при намирането на IP адреса на „%s:%s“ (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Неуспех при свързването с %s %s:" #: methods/gpgv.cc:71 diff --git a/po/bs.po b/po/bs.po index 6fa343cce..16964875d 100644 --- a/po/bs.po +++ b/po/bs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -197,7 +197,7 @@ msgid "" msgstr "" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" #: cmdline/apt-cdrom.cc:92 @@ -1255,11 +1255,11 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +msgid "will be configured. This may result in duplicate errors" msgstr "" #: dselect/install:103 @@ -1789,8 +1789,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Ne mogu se povezati sa %s %s:" #: methods/gpgv.cc:71 diff --git a/po/ca.po b/po/ca.po index 11a9aebca..7a3414f49 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.22\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+0200\n" "PO-Revision-Date: 2009-06-06 02:17+0200\n" "Last-Translator: Jordi Mallach <jordi@debian.org>\n" "Language-Team: Catalan <debian-l10n-catalan@lists.debian.org>\n" @@ -234,7 +234,8 @@ msgstr "" "informació.\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, 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»" #: cmdline/apt-cdrom.cc:92 @@ -1432,11 +1433,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Voleu suprimir els paquets .deb baixats prèviament?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "S'han produït alguns errors en desempaquetar. Es configuraran" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, 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" @@ -1978,8 +1981,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Ha passat alguna cosa estranya en resoldre «%s:%s» (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "No es pot connectar amb %s %s:" #: methods/gpgv.cc:71 diff --git a/po/cs.po b/po/cs.po index 9e595f54e..e705b42f0 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -231,7 +231,8 @@ msgstr "" "Více informací viz manuálové stránky apt-cache(8) a apt.conf(5).\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Zadejte prosím název tohoto média, např. „Debian 2.1r1 Disk 1“" #: cmdline/apt-cdrom.cc:92 @@ -1411,11 +1412,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Chcete smazat všechny dříve stažené .deb soubory?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Během rozbalování se vyskytly chyby. Zkusím teď nakonfigurovat" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "balíky, které se nainstalovaly. To může způsobit chybové hlášky" #: dselect/install:103 @@ -1949,8 +1952,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Něco hodně ošklivého se přihodilo při zjišťování „%s:%s“ (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Nemohu se připojit k %s %s:" #: methods/gpgv.cc:71 diff --git a/po/cy.po b/po/cy.po index cdfce5d09..bc6754300 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: APT\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -250,7 +250,7 @@ msgstr "" "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" #: cmdline/apt-cdrom.cc:92 @@ -1463,11 +1463,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Digwyddod rhau gwallau wrth dadbacio. Rydw i'n mynd i gyflunio'r" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "pecynnau a gafwyd eu sefydlu. Gall hyn achosi gwallau dyblyg neu" #: dselect/install:103 @@ -2027,8 +2029,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Digwyddodd rhywbweth hyll wrth ddatrys '%s:%s' (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Methwyd cysylltu i %s %s:" #: methods/gpgv.cc:71 diff --git a/po/da.po b/po/da.po index 7b3252a12..2ea472c4b 100644 --- a/po/da.po +++ b/po/da.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-da\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+0200\n" "PO-Revision-Date: 2007-09-06 21:40+0200\n" "Last-Translator: Claus Hindsgaul <claus.hindsgaul@gmail.com>\n" "Language-Team: Danish\n" @@ -238,7 +238,8 @@ msgstr "" "Se manualsiderne for apt-cache(8) og apt.conf(5) for flere oplysninger.\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, 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'" #: cmdline/apt-cdrom.cc:92 @@ -1424,11 +1425,13 @@ msgstr "" # 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 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Der opstod fejl under udpakningen. Jeg vil opstte de" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "pakker, der blev installeret. Det kan give gentagne fejl" #: dselect/install:103 @@ -1966,8 +1969,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Der skete noget underligt under navneomstning af '%s:%s' (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Kunne ikke forbinde til %s %s:" #: methods/gpgv.cc:71 diff --git a/po/de.po b/po/de.po index 994501994..f1a2cb8dc 100644 --- a/po/de.po +++ b/po/de.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+0200\n" "PO-Revision-Date: 2009-07-12 01:12+0200\n" "Last-Translator: Holger Wansing <linux@wansing-online.de>\n" "Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n" @@ -235,7 +235,8 @@ msgstr "" "Weitere Informationen finden Sie unter apt-cache(8) und apt.conf(5).\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" "Bitte geben Sie einen Namen für die CD an, wie zum Beispiel »Debian 2.1r1 " "Disk 1«" @@ -1458,12 +1459,14 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Möchten Sie alle bisher heruntergeladenen .deb-Dateien löschen?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" "Einige Fehler traten während des Entpackens auf. Ich werde die installierten" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "" "Pakete konfigurieren. Dies kann zu doppelten Fehlermeldungen oder Fehlern " "durch" @@ -2008,8 +2011,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Beim Auflösen von »%s:%s« ist etwas Schlimmes passiert (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Kann nicht mit %s %s verbinden:" #: methods/gpgv.cc:71 diff --git a/po/dz.po b/po/dz.po index 93898ca70..63041349a 100644 --- a/po/dz.po +++ b/po/dz.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po.pot\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -240,7 +240,8 @@ msgstr "" " ཧེང་བཀལ་བརྡ་དོན་གི་དོན་ལུ་ ཨེ་apt-cache(8)དང་apt.conf(5)ལག་ཐོག་ཤོག་ལེབ་ཚུ་བལྟ།.\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "ཌིསིཀ་འདི་གི་དོན་ལུ་མིང་ཅིག་བླིན་གནང་ དཔེར་ན་ 'Debian 2.1r1 Disk 1'བཟུམ།" #: cmdline/apt-cdrom.cc:92 @@ -1432,11 +1433,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "སྦུང་ཚན་བཟོ་བཤོལ་འབད་བའི་བར་ན་ འཛོལ་བ་དག་པ་ཅིག་བྱུང་ནུག་ ང་གི་" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "གཞི་བཙུགས་འབད་ཡོད་པའི་ཐུམ་སྒྲིལ་ཚུ་རིམ་སྒྲིག་འབད་ནི་ཨིན།་འ་ནི་འདི་གིས་ ངོ་བཤུས་རྫུན་མ་" #: dselect/install:103 @@ -1974,8 +1977,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "'%s:%s' (%i)་མོས་མཐུན་འབདཝ་ད་ངན་པ་ཅིག་བྱུང་ཡི།" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "%s %s:ལུ་མཐུད་མ་ཚུགས།" #: methods/gpgv.cc:71 diff --git a/po/el.po b/po/el.po index a9bb25404..bdf31ba1a 100644 --- a/po/el.po +++ b/po/el.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_el\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -246,7 +246,8 @@ msgstr "" "Δείτε τις σελίδες man του apt-cache(8) και apt.conf(5) για πληροφορίες.\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" "Παρακαλώ δώστε ένα όνομα για τον δίσκο αυτό, όπως 'Debian 2.1r1 Disk 1'" @@ -1448,11 +1449,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Επιθυμείτε τη διαγραφή ήδη μεταφορτωμένων αρχείων .deb;" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Προέκυψανσφάλματα κατά την αποσυμπίεση. Θα ρυθμίσω τα " #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "πακέτα που εγκαταστάθηκαν. Αυτό μπορεί να παράγει διπλά λάθη" #: dselect/install:103 @@ -1991,8 +1994,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Κάτι παράξενο συνέβη κατά την εύρεση του '%s:%s' (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Αδύνατη η σύνδεση στο %s %s:" #: methods/gpgv.cc:71 diff --git a/po/en_GB.po b/po/en_GB.po index 96b6c5219..b2711ba21 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+0200\n" "PO-Revision-Date: 2008-11-13 11:47+0000\n" "Last-Translator: Neil Williams <linux@codehelp.co.uk>\n" "Language-Team: en_GB <en_gb@li.org>\n" @@ -231,7 +231,8 @@ msgstr "" "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Please provide a name for this Disc, such as ‘Debian 2.1r1 Disk 1’" #: cmdline/apt-cdrom.cc:92 @@ -1416,11 +1417,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Do you want to erase any previously downloaded .deb files?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Some errors occurred while unpacking. I'm going to configure the" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "packages that were installed. This may result in duplicate errors" #: dselect/install:103 @@ -1955,8 +1958,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Something wicked happened resolving ‘%s:%s’ (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Unable to connect to %s %s:" #: methods/gpgv.cc:71 diff --git a/po/es.po b/po/es.po index 3116b8173..1e8164676 100644 --- a/po/es.po +++ b/po/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.18\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -238,7 +238,8 @@ msgstr "" "Vea las pginas del manual apt-cache(8) y apt.conf(5) para ms informacin.\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" "Por favor provea un nombre para este disco, como 'Debian 2.1r1 Disco 1'" @@ -1441,12 +1442,14 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Desea borrar los archivos .deb descargados con anterioridad?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" "Ocurrieron algunos errores mientras se desempaquetaba. Se va a configurar el" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "" "paquetes que fueron instalados. Esto puede dar lugar a errores duplicados" @@ -1986,8 +1989,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Algo raro pas resolviendo '%s:%s' (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "No pude conectarme a %s %s:" #: methods/gpgv.cc:71 diff --git a/po/eu.po b/po/eu.po index 524168711..db988ebed 100644 --- a/po/eu.po +++ b/po/eu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_eu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -234,7 +234,8 @@ msgstr "" "Informazio gehiago nahi izanez gero: ikus apt-cache(8) eta apt.conf(5).\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" "Mesedez idatzi izen bat diska honentzat, 'Debian 2.1r1 1 Diska' antzerakoan" @@ -1422,11 +1423,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Deskargaturiko .deb fitxategi guztiak ezabatu nahi al dituzu?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Errore batzuk gertatu dira deskonprimitzean. Konfiguratu egingo ditut" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "instalatutako paketeak. Horrek errore bikoiztuak eragin ditzake" #: dselect/install:103 @@ -1968,8 +1971,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Zerbait arraroa pasatu da '%s:%s' (%i) ebaztean" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Ezin da konektatu -> %s %s:" #: methods/gpgv.cc:71 diff --git a/po/fi.po b/po/fi.po index ca0d2e84d..a8b4ff6f8 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.26\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -232,7 +232,8 @@ msgstr "" "Lisätietoja apt-cache(8) ja apt.conf(5) käsikirjasivuilla.\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Kirjoita levylle nimi, kuten \"Debian 2.1r1 Levy 1\"" #: cmdline/apt-cdrom.cc:92 @@ -1421,11 +1422,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Haluatko poistaa aiemmin noudettuja .deb-tiedostoja?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Tapahtui virheitä purettaessa. Tehdään asennettujen" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "pakettien asetukset. Samat virheet voivat tulla toiseen kertaan" #: dselect/install:103 @@ -1964,8 +1967,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Jotain kenkkua tapahtui selvitettäessä \"%s: %s\" (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Ei ole mahdollista muodostaa yhteyttä %s %s:" #: methods/gpgv.cc:71 diff --git a/po/fr.po b/po/fr.po index 0bef42118..f7a912a4e 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+0200\n" "PO-Revision-Date: 2009-08-27 20:29+0200\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" @@ -237,7 +237,8 @@ msgstr "" "d'informations.\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" "Veuillez indiquer le nom de ce disque, par exemple « Debian 2.1r1 Disk 1 »" @@ -1457,13 +1458,15 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Voulez-vous effacer les fichiers .deb précédemment téléchargés ?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" "Quelques erreurs sont apparues lors du décompactage. Nous allons configurer " "les" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "paquets qui ont été installés. Il peut en résulter d'autres erreurs" #: dselect/install:103 @@ -1513,6 +1516,7 @@ msgid "Error reading archive member header" msgstr "Erreur de lecture de l'en-tête du membre d'archive" #: apt-inst/contrib/arfile.cc:90 +#, c-format msgid "Invalid archive member header %s" msgstr "En-tête du membre d'archive %s non valable" @@ -2010,8 +2014,8 @@ msgstr "" "s » (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Impossible de se connecter à %s %s :" #: methods/gpgv.cc:71 diff --git a/po/gl.po b/po/gl.po index a4bf2c042..75547f896 100644 --- a/po/gl.po +++ b/po/gl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_gl\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -238,7 +238,8 @@ msgstr "" "información.\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Forneza un nome para este disco, coma \"Debian 2.1r1 Disco 1\"" #: cmdline/apt-cdrom.cc:92 @@ -1440,11 +1441,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "¿Quere borrar os ficheiros .deb descargados anteriormente?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Houbo algúns erros ao desempaquetar. Vanse configurar os paquetes" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "que se instalaron. Isto pode producir erros duplicados ou erros" #: dselect/install:103 @@ -1981,8 +1984,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Algo estraño ocorreu ao resolver \"%s:%s\" (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Non se pode conectar a %s %s:" #: methods/gpgv.cc:71 diff --git a/po/hu.po b/po/hu.po index ae2127076..78a5f0298 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: hu\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -237,7 +237,8 @@ msgstr "" "Lásd az apt-cache(8) és apt.conf(5) kézikönyvlapokat további információért.\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Adj egy nevet e lemezhez, mint például 'Debian 2.1r1 Disk 1'" #: cmdline/apt-cdrom.cc:92 @@ -1422,11 +1423,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Törlöd a korábban letöltött .deb fájlokat?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Néhány hiba adódott kibontás közben. Nekilátok konfigurálni a" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "már telepített csomagokat. Ez a hibák duplázódását eredményezheti" #: dselect/install:103 @@ -1960,8 +1963,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Valami rossz történt '%s: %s' feloldásakor (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Sikertelen kapcsolódás ide: %s %s:" #: methods/gpgv.cc:71 diff --git a/po/it.po b/po/it.po index 7b67859a5..0673df460 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.20\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+0200\n" "PO-Revision-Date: 2009-06-04 13:23+0200\n" "Last-Translator: Milo Casagrande <milo@ubuntu.com>\n" "Language-Team: Italian <tp@lists.linux.it>\n" @@ -236,7 +236,8 @@ msgstr "" "apt.conf(5).\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Dare un nome a questo disco, tipo \"Debian 5.0 Disco 1\"" #: cmdline/apt-cdrom.cc:92 @@ -1447,13 +1448,15 @@ msgstr "Eliminare tutti i file .deb precedentemente scaricati?" # 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 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" "Si sono verificati alcuni errori nell'estrazione. Verrà tentato di " "configurare " #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "" "i pacchetti che sono stati installati. Questo potrebbe generare molteplici " @@ -1995,8 +1998,8 @@ msgstr "" "Si è verificato qualcosa di anormale nella risoluzione di \"%s:%s\" (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Impossibile connettersi a %s %s:" #: methods/gpgv.cc:71 diff --git a/po/ja.po b/po/ja.po index de0fe925e..2b96e7b96 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+0200\n" "PO-Revision-Date: 2008-11-13 09:26+0900\n" "Last-Translator: Kenshi Muto <kmuto@debian.org>\n" "Language-Team: Debian Japanese List <debian-japanese@lists.debian.org>\n" @@ -232,7 +232,8 @@ msgstr "" "詳細は、apt-cache(8) や apt.conf(5) のマニュアルページを参照してください。\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "このディスクに、'Debian 2.1r1 Disk 1' のような名前を付けてください" #: cmdline/apt-cdrom.cc:92 @@ -1433,11 +1434,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "過去にダウンロードした .deb ファイルを削除しますか?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "展開中にエラーが発生しました。インストールされたパッケージを" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "設定します。これにより、エラーが複数出るか、依存関係の欠如に" #: dselect/install:103 @@ -1974,8 +1977,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "'%s:%s' (%i) の解決中に問題が起こりました" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "%s %s へ接続できません:" #: methods/gpgv.cc:71 diff --git a/po/km.po b/po/km.po index 07ce9f909..57d27886d 100644 --- a/po/km.po +++ b/po/km.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po_km\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -238,7 +238,8 @@ msgstr "" "មើល​ apt-cache(8) និង​ apt.conf(5) សម្រាប់​ព័ត៌មាន​បន្ថែម​​មាន​ក្នុង​ទំព័រ​សៀវភៅដៃ​ ។\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "សូម​ផ្ដល់​ឈ្មោះ​ឲ្យ​ថាស​នេះ ឧទាហរណ៍​ដូចជា 'ដេបៀន 2.1r1 ថាស​ទី ១' ជាដើម" #: cmdline/apt-cdrom.cc:92 @@ -1413,11 +1414,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "កំហុ​ស​មួយ​ចំនួន​បាន​កើត​ឡើង​ខណៈពេល​ពន្លា​កញ្ចប់ ។ ខ្ញុំ​នឹង​កំណត់រចនាសម្ប័ន្ធ" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "កញ្ចប់​ដែល​បាន​ដំឡើង​ ។ នេះ​ប្រហែល​ជា​លទ្ធផល​កំហុស​ស្ទួន​" #: dselect/install:103 @@ -1949,8 +1952,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "ការ​ដោះស្រាយ​អ្វី​អាក្រក់ដែល​បាន​កើត​ឡើង​ '%s:%s' (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "មិន​អាច​តភ្ជាប់​ទៅកាន់​​ %s %s ៖" #: methods/gpgv.cc:71 diff --git a/po/ko.po b/po/ko.po index 51249589a..a693560c4 100644 --- a/po/ko.po +++ b/po/ko.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+0200\n" "PO-Revision-Date: 2008-11-13 07:14+0900\n" "Last-Translator: Changwoo Ryu <cwryu@debian.org>\n" "Language-Team: Korean <debian-l10n-korean@lists.debian.org>\n" @@ -229,7 +229,8 @@ msgstr "" "좀 더 자세한 정보는 apt-cache(8) 및 apt.conf(5) 매뉴얼 페이지를 보십시오.\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "이 디스크를 위해 'Debian 2.1r1 Disk 1'와 같은 이름을 지정하십시오" #: cmdline/apt-cdrom.cc:92 @@ -1420,11 +1421,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "이전에 다운로드 받았던 .deb 파일을 지우시겠습니까?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "압축을 푸는 데 몇몇 오류가 발생했습니다. 이미 설치된 패키지를" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "설정할 것입니다. 오류때문에 의존성을 만족하지 못해 설정하는 과정에서" #: dselect/install:103 @@ -1958,8 +1961,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "'%s:%s'의 주소를 알아내는 데 무언가 이상한 일이 발생했습니다 (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "%s %s에 연결할 수 없습니다:" #: methods/gpgv.cc:71 diff --git a/po/ku.po b/po/ku.po index c72e27f4a..c0db0e0db 100644 --- a/po/ku.po +++ b/po/ku.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-ku\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -201,7 +201,8 @@ msgid "" msgstr "" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Ji kerema xwe re navekî li vî Dîsketî bike, wekî 'Debian 2.1r1 Disk 1'" #: cmdline/apt-cdrom.cc:92 @@ -1255,11 +1256,11 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +msgid "will be configured. This may result in duplicate errors" msgstr "" #: dselect/install:103 @@ -1791,8 +1792,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Nikare bi %s re girêdan pêk bîne %s:" #: methods/gpgv.cc:71 diff --git a/po/lt.po b/po/lt.po index d3f58ff9b..98cd4f62d 100644 --- a/po/lt.po +++ b/po/lt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-07-21 15:49+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -23,7 +23,7 @@ msgid "Package %s version %s has an unmet dep:\n" msgstr "Paketas %s versijos numeriu %s turi netenkinamą priklausomybę:\n" #: cmdline/apt-cache.cc:181 cmdline/apt-cache.cc:550 cmdline/apt-cache.cc:644 -#: cmdline/apt-cache.cc:800 cmdline/apt-cache.cc:1022 +#: cmdline/apt-cache.cc:797 cmdline/apt-cache.cc:1021 #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" @@ -95,7 +95,7 @@ msgstr "" msgid "Total space accounted for: " msgstr "" -#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1222 +#: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." msgstr "" @@ -153,14 +153,14 @@ msgstr " Versijų lentelė:" msgid " %4i %s\n" msgstr " %4i %s\n" -#: cmdline/apt-cache.cc:1719 cmdline/apt-cdrom.cc:138 cmdline/apt-config.cc:70 +#: cmdline/apt-cache.cc:1718 cmdline/apt-cdrom.cc:134 cmdline/apt-config.cc:70 #: cmdline/apt-extracttemplates.cc:225 ftparchive/apt-ftparchive.cc:547 -#: cmdline/apt-get.cc:2586 cmdline/apt-sortpkgs.cc:144 +#: cmdline/apt-get.cc:2651 cmdline/apt-sortpkgs.cc:144 #, c-format msgid "%s %s for %s compiled on %s %s\n" msgstr "" -#: cmdline/apt-cache.cc:1726 +#: cmdline/apt-cache.cc:1725 msgid "" "Usage: apt-cache [options] command\n" " apt-cache [options] add file1 [file2 ...]\n" @@ -199,15 +199,15 @@ msgid "" "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" msgstr "" -#: cmdline/apt-cdrom.cc:78 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#: cmdline/apt-cdrom.cc:77 +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" -#: cmdline/apt-cdrom.cc:93 +#: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "Prašome įdėti diską į įrenginį ir paspausti Enter" -#: cmdline/apt-cdrom.cc:117 +#: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." msgstr "Pakartokite šitą procesą su kitais CD savo rinkinyje." @@ -273,7 +273,7 @@ msgstr "" " -c=? Nuskaityti šį konfigūracijų failą\n" " -o=? Nustatyti savarankiškas nuostatas, pvz.: -o dir::cache=/tmp\n" -#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:827 +#: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" msgstr "Nepavyko įrašyti į %s" @@ -622,7 +622,7 @@ msgstr "Nepavyko pervadinti %s į %s" msgid "Y" msgstr "T" -#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1661 +#: cmdline/apt-get.cc:149 cmdline/apt-get.cc:1720 #, c-format msgid "Regex compilation error - %s" msgstr "" @@ -723,119 +723,119 @@ msgstr "%lu bus pašalinta ir %lu neatnaujinta.\n" msgid "%lu not fully installed or removed.\n" msgstr "%lu nepilnai įdiegti ar pašalinti.\n" -#: cmdline/apt-get.cc:670 +#: cmdline/apt-get.cc:669 msgid "Correcting dependencies..." msgstr "Taisomos priklausomybės..." -#: cmdline/apt-get.cc:673 +#: cmdline/apt-get.cc:672 msgid " failed." msgstr " nepavyko." -#: cmdline/apt-get.cc:676 +#: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" msgstr "Nepavyko patenkinti priklausomybių" -#: cmdline/apt-get.cc:679 +#: cmdline/apt-get.cc:678 #, fuzzy msgid "Unable to minimize the upgrade set" msgstr "Nepavyko minimizuoti atnaujinimo rinkinio" -#: cmdline/apt-get.cc:681 +#: cmdline/apt-get.cc:680 msgid " Done" msgstr " Įvykdyta" -#: cmdline/apt-get.cc:685 +#: cmdline/apt-get.cc:684 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:688 +#: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." msgstr "Nepatenkintos priklausomybės. Bandykit naudoti -f." -#: cmdline/apt-get.cc:710 +#: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" msgstr "DĖMESIO: Šie paketai negali būti autentifikuoti!" -#: cmdline/apt-get.cc:714 +#: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" msgstr "" -#: cmdline/apt-get.cc:721 +#: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " msgstr "Įdiegti šiuos paketus be patvirtinimo [t/N]? " -#: cmdline/apt-get.cc:723 +#: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" msgstr "Nepavyko autentikuoti kai kurių paketų" -#: cmdline/apt-get.cc:732 cmdline/apt-get.cc:884 +#: cmdline/apt-get.cc:734 cmdline/apt-get.cc:886 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:776 +#: cmdline/apt-get.cc:775 msgid "Internal error, InstallPackages was called with broken packages!" msgstr "" -#: cmdline/apt-get.cc:785 +#: cmdline/apt-get.cc:784 msgid "Packages need to be removed but remove is disabled." msgstr "Reikia pašalinti paketus, tačiau šalinimas išjungtas." -#: cmdline/apt-get.cc:796 +#: cmdline/apt-get.cc:795 msgid "Internal error, Ordering didn't finish" msgstr "" -#: cmdline/apt-get.cc:812 cmdline/apt-get.cc:2003 cmdline/apt-get.cc:2036 +#: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" msgstr "Nepavyko užrakinti parsiuntimų aplanko" -#: cmdline/apt-get.cc:822 cmdline/apt-get.cc:2084 cmdline/apt-get.cc:2330 +#: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." msgstr "Nepavyko perskaityti šaltinių sąrašo." -#: cmdline/apt-get.cc:837 +#: cmdline/apt-get.cc:836 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:842 +#: cmdline/apt-get.cc:841 #, c-format msgid "Need to get %sB/%sB of archives.\n" msgstr "Reikia parsiųsti %sB/%sB archyvų.\n" -#: cmdline/apt-get.cc:845 +#: cmdline/apt-get.cc:844 #, c-format msgid "Need to get %sB of archives.\n" msgstr "Reikia parsiųsti %sB archyvų.\n" -#: cmdline/apt-get.cc:850 +#: cmdline/apt-get.cc:849 #, 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:853 +#: cmdline/apt-get.cc:852 #, 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:867 cmdline/apt-get.cc:2179 +#: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" msgstr "Nepavyko nustatyti %s laisvos vietos" -#: cmdline/apt-get.cc:874 +#: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." msgstr "%s nėra pakankamai laisvos vietos." -#: cmdline/apt-get.cc:890 cmdline/apt-get.cc:910 +#: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." msgstr "" -#: cmdline/apt-get.cc:892 +#: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" msgstr "Taip, daryk kaip liepiu!" -#: cmdline/apt-get.cc:894 +#: cmdline/apt-get.cc:896 #, c-format msgid "" "You are about to do something potentially harmful.\n" @@ -846,28 +846,28 @@ msgstr "" "Jei norite tęsti, įveskite frazę „%s“\n" " ?] " -#: cmdline/apt-get.cc:900 cmdline/apt-get.cc:919 +#: cmdline/apt-get.cc:902 cmdline/apt-get.cc:921 msgid "Abort." msgstr "Nutraukti." -#: cmdline/apt-get.cc:915 +#: cmdline/apt-get.cc:917 msgid "Do you want to continue [Y/n]? " msgstr "Ar norite tęsti [T/n]? " -#: cmdline/apt-get.cc:987 cmdline/apt-get.cc:2227 apt-pkg/algorithms.cc:1407 +#: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" msgstr "Nepavyko parsiųsti %s %s\n" -#: cmdline/apt-get.cc:1005 +#: cmdline/apt-get.cc:1007 msgid "Some files failed to download" msgstr "Nepavyko parsiųsti kai kurių failų" -#: cmdline/apt-get.cc:1006 cmdline/apt-get.cc:2236 +#: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" msgstr "Pavyko parsiųsti tik parsiuntimo režime" -#: cmdline/apt-get.cc:1012 +#: cmdline/apt-get.cc:1014 msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" @@ -875,48 +875,48 @@ msgstr "" "Nepavyko parsiųsti kai kurių archyvų, pabandykite paleisti „apt-get update“ " "arba pabandykite su parametru --fix-missing?" -#: cmdline/apt-get.cc:1016 +#: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" msgstr "--fix-missing bei laikmenų apkeitimas nepalaikomas" -#: cmdline/apt-get.cc:1021 +#: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." msgstr "Nepavyko pataisyti dingusių paketų." -#: cmdline/apt-get.cc:1022 +#: cmdline/apt-get.cc:1024 msgid "Aborting install." msgstr "Diegimas nutraukiamas." -#: cmdline/apt-get.cc:1056 +#: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" msgstr "Pastaba: pažymimas %s vietoje %s\n" -#: cmdline/apt-get.cc:1066 +#: cmdline/apt-get.cc:1093 #, 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:1084 +#: cmdline/apt-get.cc:1111 #, 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:1095 +#: cmdline/apt-get.cc:1122 #, c-format msgid "Package %s is a virtual package provided by:\n" msgstr "Paketas %s yra virtualus, pateiktas:\n" -#: cmdline/apt-get.cc:1107 +#: cmdline/apt-get.cc:1134 msgid " [Installed]" msgstr " [Įdiegtas]" -#: cmdline/apt-get.cc:1112 +#: cmdline/apt-get.cc:1139 msgid "You should explicitly select one to install." msgstr "Reikia pažymėti įdiegimui bent vieną." -#: cmdline/apt-get.cc:1117 +#: cmdline/apt-get.cc:1144 #, c-format msgid "" "Package %s is not available, but is referred to by another package.\n" @@ -927,68 +927,73 @@ msgstr "" "Tai gali reikšti, kad paketas dingęs, nebenaudojamas \n" "arba prieinamas tik iš kitų šaltinių.\n" -#: cmdline/apt-get.cc:1136 +#: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" msgstr "Tačiau šie paketai jį pakeičia:" -#: cmdline/apt-get.cc:1139 +#: cmdline/apt-get.cc:1166 #, c-format msgid "Package %s has no installation candidate" msgstr "Paketas %s neturi diegimo kandidatų" -#: cmdline/apt-get.cc:1159 +#: cmdline/apt-get.cc:1186 #, 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:1167 +#: cmdline/apt-get.cc:1194 #, c-format msgid "%s is already the newest version.\n" msgstr "%s ir taip jau yra naujausias.\n" -#: cmdline/apt-get.cc:1196 +#: cmdline/apt-get.cc:1223 #, c-format msgid "Release '%s' for '%s' was not found" msgstr "Nebuvo rastas „%s“ leidimas paketui „%s“" -#: cmdline/apt-get.cc:1198 +#: cmdline/apt-get.cc:1225 #, c-format msgid "Version '%s' for '%s' was not found" msgstr "Nebuvo rasta „%s“ versija paketui „%s“" -#: cmdline/apt-get.cc:1204 +#: cmdline/apt-get.cc:1231 #, c-format msgid "Selected version %s (%s) for %s\n" msgstr "Pažymėta versija %s (%s) paketui %s\n" -#: cmdline/apt-get.cc:1310 +#: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" msgstr "" -#: cmdline/apt-get.cc:1348 +#: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" msgstr "Atnaujinimo komandai argumentų nereikia" -#: cmdline/apt-get.cc:1361 +#: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" msgstr "Nepavyko užrakinti sąrašo aplanko" -#: cmdline/apt-get.cc:1413 +#: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" msgstr "" -#: cmdline/apt-get.cc:1445 +#: cmdline/apt-get.cc:1503 msgid "" "The following packages were automatically installed and are no longer " "required:" msgstr "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:" -#: cmdline/apt-get.cc:1447 +#: cmdline/apt-get.cc:1505 +#, fuzzy, c-format +msgid "%lu packages were automatically installed and are no longer required.\n" +msgstr "Šie paketai buvo automatiškai įdiegti ir daugiau nebėra reikalingi:" + +#: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." msgstr "Norėdami juos pašalinti, paleiskite „apt-get autoremove“" -#: cmdline/apt-get.cc:1452 +#: cmdline/apt-get.cc:1511 msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." @@ -1004,43 +1009,43 @@ msgstr "" #. "that package should be filed.") << endl; #. } #. -#: cmdline/apt-get.cc:1455 cmdline/apt-get.cc:1745 +#: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 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:1459 +#: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" msgstr "" -#: cmdline/apt-get.cc:1478 +#: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" msgstr "" -#: cmdline/apt-get.cc:1533 +#: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" msgstr "Nepavyko rasti užduoties %s" -#: cmdline/apt-get.cc:1648 cmdline/apt-get.cc:1684 +#: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" msgstr "Nepavyko rasti paketo %s" -#: cmdline/apt-get.cc:1671 +#: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" msgstr "Pastaba, žymima %s regex atitikimų formoje '%s'\n" -#: cmdline/apt-get.cc:1702 +#: cmdline/apt-get.cc:1761 #, c-format msgid "%s set to manually installed.\n" msgstr "%s nustatytas kaip įdiegtas rankiniu būdu\n" -#: cmdline/apt-get.cc:1715 +#: cmdline/apt-get.cc:1774 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:1718 +#: cmdline/apt-get.cc:1777 msgid "" "Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a " "solution)." @@ -1048,7 +1053,7 @@ msgstr "" "Nepatenkintos priklausomybės. Pabandykite įvykdyti 'apt-get -f install' be " "nurodytų paketų (arba nurodykite išeitį)." -#: cmdline/apt-get.cc:1730 +#: cmdline/apt-get.cc:1789 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" @@ -1060,115 +1065,115 @@ msgstr "" "leidimą, kuomet kai kurie paketai dar nebuvo sukurti arba buvo\n" "pašalinti iš \"Incoming\" aplanko." -#: cmdline/apt-get.cc:1748 +#: cmdline/apt-get.cc:1807 msgid "Broken packages" msgstr "Sugadinti paketai" -#: cmdline/apt-get.cc:1777 +#: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" msgstr "Bus įdiegti šie papildomi paketai:" -#: cmdline/apt-get.cc:1866 +#: cmdline/apt-get.cc:1925 msgid "Suggested packages:" msgstr "Siūlomi paketai:" -#: cmdline/apt-get.cc:1867 +#: cmdline/apt-get.cc:1926 msgid "Recommended packages:" msgstr "Rekomenduojami paketai:" -#: cmdline/apt-get.cc:1896 +#: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " msgstr "Skaičiuojami atnaujinimai... " -#: cmdline/apt-get.cc:1899 methods/ftp.cc:702 methods/connect.cc:112 +#: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" msgstr "Nepavyko" -#: cmdline/apt-get.cc:1904 +#: cmdline/apt-get.cc:1963 msgid "Done" msgstr "Įvykdyta" -#: cmdline/apt-get.cc:1971 cmdline/apt-get.cc:1979 +#: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" msgstr "Vidinė klaida, problemos sprendimas kažką sugadino" -#: cmdline/apt-get.cc:2079 +#: cmdline/apt-get.cc:2138 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:2109 cmdline/apt-get.cc:2348 +#: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" msgstr "Nepavyko surasti išeities teksto paketo, skirto %s" -#: cmdline/apt-get.cc:2158 +#: cmdline/apt-get.cc:2217 #, c-format msgid "Skipping already downloaded file '%s'\n" msgstr "Praleidžiama jau parsiųsta byla „%s“\n" -#: cmdline/apt-get.cc:2186 +#: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" msgstr "Neturite pakankamai laisvos vietos %s" -#: cmdline/apt-get.cc:2192 +#: cmdline/apt-get.cc:2254 #, 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:2195 +#: cmdline/apt-get.cc:2257 #, c-format msgid "Need to get %sB of source archives.\n" msgstr "Reikia parsiųsti %sB išeities archyvų.\n" -#: cmdline/apt-get.cc:2201 +#: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" msgstr "Parsiunčiamas archyvas %s\n" -#: cmdline/apt-get.cc:2232 +#: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." msgstr "Nepavyko gauti kai kurių arhcyvų." -#: cmdline/apt-get.cc:2260 +#: cmdline/apt-get.cc:2322 #, 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:2272 +#: cmdline/apt-get.cc:2334 #, c-format msgid "Unpack command '%s' failed.\n" msgstr "Nepavyko įvykdyti išpakavimo komandos „%s“\n" -#: cmdline/apt-get.cc:2273 +#: cmdline/apt-get.cc:2335 #, c-format msgid "Check if the 'dpkg-dev' package is installed.\n" msgstr "Patikrinkite, ar įdiegtas „dpkg-dev“ paketas.\n" -#: cmdline/apt-get.cc:2290 +#: cmdline/apt-get.cc:2352 #, c-format msgid "Build command '%s' failed.\n" msgstr "Nepavyko įvykdyti paketo kompiliavimo komandos „%s“\n" -#: cmdline/apt-get.cc:2309 +#: cmdline/apt-get.cc:2371 msgid "Child process failed" msgstr "Klaida procese-palikuonyje" -#: cmdline/apt-get.cc:2325 +#: cmdline/apt-get.cc:2387 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:2353 +#: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" msgstr "Nepavyko gauti kūrimo-priklausomybių informacijos paketui %s" -#: cmdline/apt-get.cc:2373 +#: cmdline/apt-get.cc:2435 #, c-format msgid "%s has no build depends.\n" msgstr "" -#: cmdline/apt-get.cc:2425 +#: cmdline/apt-get.cc:2487 #, c-format msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " @@ -1176,7 +1181,7 @@ msgid "" msgstr "" "%s priklausomybė %s paketui negali būti patenkinama, nes paketas %s nerastas" -#: cmdline/apt-get.cc:2478 +#: cmdline/apt-get.cc:2540 #, c-format msgid "" "%s dependency for %s cannot be satisfied because no available versions of " @@ -1185,32 +1190,32 @@ msgstr "" "%s priklausomybė %s paketui negali būti patenkinama, nes nėra tinkamos " "versijos %s paketo" -#: cmdline/apt-get.cc:2514 +#: cmdline/apt-get.cc:2576 #, 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:2541 +#: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" msgstr "Nepavyko patenkinti %s priklausomybės %s: %s" -#: cmdline/apt-get.cc:2555 +#: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." msgstr "" -#: cmdline/apt-get.cc:2559 +#: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" msgstr "" -#: cmdline/apt-get.cc:2591 +#: cmdline/apt-get.cc:2656 msgid "Supported modules:" msgstr "Palaikomi moduliai:" -#: cmdline/apt-get.cc:2632 +#: cmdline/apt-get.cc:2697 msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1254,7 +1259,7 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" -#: cmdline/apt-get.cc:2799 +#: cmdline/apt-get.cc:2864 msgid "" "NOTE: This is only a simulation!\n" " apt-get needs root privileges for real execution.\n" @@ -1342,11 +1347,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Išpakuojant įvyko klaidų. Bandysiu konfigūruoti" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "paketus, kurie buvo įdiegti. Tai gali sukelti pasikartojančias klaidas" #: dselect/install:103 @@ -1395,7 +1402,12 @@ msgstr "" msgid "Error reading archive member header" msgstr "" -#: apt-inst/contrib/arfile.cc:90 apt-inst/contrib/arfile.cc:102 +#: apt-inst/contrib/arfile.cc:90 +#, c-format +msgid "Invalid archive member header %s" +msgstr "" + +#: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" msgstr "" @@ -1495,9 +1507,13 @@ msgstr "" msgid "File %s/%s overwrites the one in the package %s" msgstr "" -#: apt-inst/extract.cc:464 apt-pkg/contrib/configuration.cc:822 -#: apt-pkg/contrib/cdromutl.cc:150 apt-pkg/sourcelist.cc:320 -#: apt-pkg/acquire.cc:419 apt-pkg/clean.cc:34 apt-pkg/policy.cc:268 +#. 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/configuration.cc:843 +#: apt-pkg/contrib/cdromutl.cc:157 apt-pkg/sourcelist.cc:166 +#: apt-pkg/sourcelist.cc:172 apt-pkg/sourcelist.cc:327 apt-pkg/acquire.cc:419 +#: apt-pkg/init.cc:89 apt-pkg/init.cc:97 apt-pkg/clean.cc:33 +#: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" msgstr "Nepavyko perskaityti %s" @@ -1527,9 +1543,9 @@ msgid "The info and temp directories need to be on the same filesystem" msgstr "" #. Build the status cache -#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:760 -#: apt-pkg/pkgcachegen.cc:829 apt-pkg/pkgcachegen.cc:834 -#: apt-pkg/pkgcachegen.cc:957 +#: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 +#: apt-pkg/pkgcachegen.cc:832 apt-pkg/pkgcachegen.cc:837 +#: apt-pkg/pkgcachegen.cc:961 msgid "Reading package lists" msgstr "Skaitomi paketų sąrašai" @@ -1629,31 +1645,31 @@ msgstr "" msgid "Unparsable control file" msgstr "" -#: methods/cdrom.cc:114 +#: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" msgstr "Nepavyko perskaityti cdrom duomenų bazės %s" -#: methods/cdrom.cc:123 +#: methods/cdrom.cc:209 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 "" -#: methods/cdrom.cc:131 +#: methods/cdrom.cc:219 msgid "Wrong CD-ROM" msgstr "Klaidingas CD-ROM" -#: methods/cdrom.cc:166 +#: methods/cdrom.cc:245 #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "Nepavyko atjungti CD-ROM įrenginyje %s, galbūt jis vis dar naudojamas." -#: methods/cdrom.cc:171 +#: methods/cdrom.cc:250 msgid "Disk not found." msgstr "Diskas nerastas." -#: methods/cdrom.cc:179 methods/file.cc:79 methods/rsh.cc:264 +#: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" msgstr "Failas nerastas" @@ -1671,147 +1687,147 @@ msgid "Invalid URI, local URIS must not start with //" msgstr "" #. Login must be before getpeername otherwise dante won't work. -#: methods/ftp.cc:162 +#: methods/ftp.cc:167 msgid "Logging in" msgstr "Jungiamasi" -#: methods/ftp.cc:168 +#: methods/ftp.cc:173 msgid "Unable to determine the peer name" msgstr "" -#: methods/ftp.cc:173 +#: methods/ftp.cc:178 msgid "Unable to determine the local name" msgstr "" -#: methods/ftp.cc:204 methods/ftp.cc:232 +#: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" msgstr "" -#: methods/ftp.cc:210 +#: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" msgstr "" -#: methods/ftp.cc:217 +#: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" msgstr "" -#: methods/ftp.cc:237 +#: methods/ftp.cc:242 msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." msgstr "" -#: methods/ftp.cc:265 +#: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" msgstr "" -#: methods/ftp.cc:291 +#: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" msgstr "" -#: methods/ftp.cc:329 methods/ftp.cc:440 methods/rsh.cc:183 methods/rsh.cc:226 +#: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" msgstr "Jungiamasi per ilgai" -#: methods/ftp.cc:335 +#: methods/ftp.cc:340 msgid "Server closed the connection" msgstr "" -#: methods/ftp.cc:338 apt-pkg/contrib/fileutl.cc:541 methods/rsh.cc:190 +#: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" msgstr "Skaitymo klaida" -#: methods/ftp.cc:345 methods/rsh.cc:197 +#: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." msgstr "" -#: methods/ftp.cc:362 methods/ftp.cc:374 +#: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" msgstr "" -#: methods/ftp.cc:446 apt-pkg/contrib/fileutl.cc:580 methods/rsh.cc:232 +#: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" msgstr "Rašymo klaida" -#: methods/ftp.cc:687 methods/ftp.cc:693 methods/ftp.cc:729 +#: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" msgstr "" -#: methods/ftp.cc:698 +#: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" msgstr "" -#: methods/ftp.cc:704 +#: methods/ftp.cc:709 msgid "Could not connect passive socket." msgstr "" -#: methods/ftp.cc:722 +#: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" msgstr "" -#: methods/ftp.cc:736 +#: methods/ftp.cc:741 msgid "Could not bind a socket" msgstr "" -#: methods/ftp.cc:740 +#: methods/ftp.cc:745 msgid "Could not listen on the socket" msgstr "" -#: methods/ftp.cc:747 +#: methods/ftp.cc:752 msgid "Could not determine the socket's name" msgstr "" -#: methods/ftp.cc:779 +#: methods/ftp.cc:784 msgid "Unable to send PORT command" msgstr "" -#: methods/ftp.cc:789 +#: methods/ftp.cc:794 #, c-format msgid "Unknown address family %u (AF_*)" msgstr "" -#: methods/ftp.cc:798 +#: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" msgstr "" -#: methods/ftp.cc:818 +#: methods/ftp.cc:823 msgid "Data socket connect timed out" msgstr "" -#: methods/ftp.cc:825 +#: methods/ftp.cc:830 msgid "Unable to accept connection" msgstr "" -#: methods/ftp.cc:864 methods/http.cc:991 methods/rsh.cc:303 +#: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" msgstr "" -#: methods/ftp.cc:877 +#: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" msgstr "Nepavyko atsiųsti failo, serveris atsakė „%s“" -#: methods/ftp.cc:892 methods/rsh.cc:322 +#: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" msgstr "" -#: methods/ftp.cc:922 +#: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" msgstr "" #. Get the files information -#: methods/ftp.cc:997 +#: methods/ftp.cc:1002 msgid "Query" msgstr "Užklausti" -#: methods/ftp.cc:1109 +#: methods/ftp.cc:1114 msgid "Unable to invoke " msgstr "" @@ -1868,8 +1884,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Nepavyko prisijungti prie %s %s:" #: methods/gpgv.cc:71 @@ -1919,94 +1935,94 @@ msgstr "" msgid "Read error from %s process" msgstr "" -#: methods/http.cc:379 +#: methods/http.cc:384 msgid "Waiting for headers" msgstr "Laukiama antraščių" -#: methods/http.cc:525 +#: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" msgstr "" -#: methods/http.cc:533 +#: methods/http.cc:538 msgid "Bad header line" msgstr "" -#: methods/http.cc:552 methods/http.cc:559 +#: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" msgstr "" -#: methods/http.cc:588 +#: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" msgstr "" -#: methods/http.cc:603 +#: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" msgstr "" -#: methods/http.cc:605 +#: methods/http.cc:610 msgid "This HTTP server has broken range support" msgstr "" -#: methods/http.cc:629 +#: methods/http.cc:634 msgid "Unknown date format" msgstr "" -#: methods/http.cc:782 +#: methods/http.cc:787 msgid "Select failed" msgstr "" -#: methods/http.cc:787 +#: methods/http.cc:792 msgid "Connection timed out" msgstr "Prisijungimo laiko limitas baigėsi" -#: methods/http.cc:810 +#: methods/http.cc:815 msgid "Error writing to output file" msgstr "" -#: methods/http.cc:841 +#: methods/http.cc:846 msgid "Error writing to file" msgstr "Klaida bandant rašyti į failą" -#: methods/http.cc:869 +#: methods/http.cc:874 msgid "Error writing to the file" msgstr "" -#: methods/http.cc:883 +#: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "" -#: methods/http.cc:885 +#: methods/http.cc:890 msgid "Error reading from server" msgstr "" -#: methods/http.cc:976 apt-pkg/contrib/mmap.cc:196 +#: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 #, fuzzy msgid "Failed to truncate file" msgstr "Nepavyko patikrinti %s" -#: methods/http.cc:1141 +#: methods/http.cc:1146 msgid "Bad header data" msgstr "" -#: methods/http.cc:1158 methods/http.cc:1213 +#: methods/http.cc:1163 methods/http.cc:1218 msgid "Connection failed" msgstr "Prisijungti nepavyko" -#: methods/http.cc:1305 +#: methods/http.cc:1310 msgid "Internal error" msgstr "Vidinė klaida" -#: apt-pkg/contrib/mmap.cc:80 +#: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" msgstr "" -#: apt-pkg/contrib/mmap.cc:85 +#: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" msgstr "" -#: apt-pkg/contrib/mmap.cc:213 apt-pkg/contrib/mmap.cc:276 +#: apt-pkg/contrib/mmap.cc:234 #, c-format msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " @@ -2014,80 +2030,80 @@ msgid "" msgstr "" #. d means days, h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:335 +#: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" msgstr "" #. h means hours, min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:342 +#: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" msgstr "" #. min means minutes, s means seconds -#: apt-pkg/contrib/strutl.cc:349 +#: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" msgstr "" #. s means seconds -#: apt-pkg/contrib/strutl.cc:354 +#: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" msgstr "" -#: apt-pkg/contrib/strutl.cc:1029 +#: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" msgstr "" -#: apt-pkg/contrib/configuration.cc:439 +#: apt-pkg/contrib/configuration.cc:458 #, c-format msgid "Unrecognized type abbreviation: '%c'" msgstr "" -#: apt-pkg/contrib/configuration.cc:497 +#: apt-pkg/contrib/configuration.cc:516 #, c-format msgid "Opening configuration file %s" msgstr "" -#: apt-pkg/contrib/configuration.cc:663 +#: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." msgstr "" -#: apt-pkg/contrib/configuration.cc:682 +#: apt-pkg/contrib/configuration.cc:703 #, c-format msgid "Syntax error %s:%u: Malformed tag" msgstr "" -#: apt-pkg/contrib/configuration.cc:699 +#: apt-pkg/contrib/configuration.cc:720 #, c-format msgid "Syntax error %s:%u: Extra junk after value" msgstr "" -#: apt-pkg/contrib/configuration.cc:739 +#: apt-pkg/contrib/configuration.cc:760 #, c-format msgid "Syntax error %s:%u: Directives can only be done at the top level" msgstr "" -#: apt-pkg/contrib/configuration.cc:746 +#: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" msgstr "" -#: apt-pkg/contrib/configuration.cc:750 apt-pkg/contrib/configuration.cc:755 +#: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format msgid "Syntax error %s:%u: Included from here" msgstr "" -#: apt-pkg/contrib/configuration.cc:759 +#: apt-pkg/contrib/configuration.cc:780 #, c-format msgid "Syntax error %s:%u: Unsupported directive '%s'" msgstr "" -#: apt-pkg/contrib/configuration.cc:810 +#: apt-pkg/contrib/configuration.cc:831 #, c-format msgid "Syntax error %s:%u: Extra junk at end of file" msgstr "" @@ -2153,13 +2169,13 @@ msgstr "Klaidingas veiksmas %s" msgid "Unable to stat the mount point %s" msgstr "" -#: apt-pkg/contrib/cdromutl.cc:146 apt-pkg/contrib/cdromutl.cc:180 -#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:40 +#: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 +#: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" msgstr "Nepavyko pakeisti į %s" -#: apt-pkg/contrib/cdromutl.cc:188 +#: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" msgstr "" @@ -2188,51 +2204,50 @@ msgstr "Nepavyko rezervuoti rakinimo failo %s" msgid "Waited for %s but it wasn't there" msgstr "" -#: apt-pkg/contrib/fileutl.cc:455 +#: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." msgstr "Procesas %s gavo segmentavimo klaidą" -#: apt-pkg/contrib/fileutl.cc:457 +#: apt-pkg/contrib/fileutl.cc:458 #, fuzzy, c-format -#| msgid "Sub-process %s received a segmentation fault." msgid "Sub-process %s received signal %u." msgstr "Procesas %s gavo segmentavimo klaidą" -#: apt-pkg/contrib/fileutl.cc:460 +#: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" msgstr "Procesas %s grąžino klaidos kodą (%u)" -#: apt-pkg/contrib/fileutl.cc:462 +#: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" msgstr "Procesas %s netikėtai išėjo" -#: apt-pkg/contrib/fileutl.cc:506 +#: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" msgstr "Nepavyko atverti failo %s" -#: apt-pkg/contrib/fileutl.cc:562 +#: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" msgstr "" -#: apt-pkg/contrib/fileutl.cc:592 +#: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" msgstr "" -#: apt-pkg/contrib/fileutl.cc:667 +#: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" msgstr "Klaida užveriant failą" -#: apt-pkg/contrib/fileutl.cc:673 +#: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" msgstr "" -#: apt-pkg/contrib/fileutl.cc:684 +#: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" msgstr "Klaida sinchronizuojant failą" @@ -2325,16 +2340,16 @@ msgstr "Galimos versijos" msgid "Dependency generation" msgstr "Priklausomybių generavimas" -#: apt-pkg/depcache.cc:174 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 +#: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" msgstr "Skaitoma būsenos informacija" -#: apt-pkg/depcache.cc:221 +#: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" msgstr "" -#: apt-pkg/depcache.cc:227 +#: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" msgstr "" @@ -2374,32 +2389,32 @@ msgstr "" msgid "Malformed line %lu in source list %s (dist parse)" msgstr "" -#: apt-pkg/sourcelist.cc:199 +#: apt-pkg/sourcelist.cc:206 #, c-format msgid "Opening %s" msgstr "Atveriama %s" -#: apt-pkg/sourcelist.cc:216 apt-pkg/cdrom.cc:448 +#: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." msgstr "" -#: apt-pkg/sourcelist.cc:236 +#: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" msgstr "" -#: apt-pkg/sourcelist.cc:240 +#: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" msgstr "" -#: apt-pkg/sourcelist.cc:248 apt-pkg/sourcelist.cc:251 +#: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" msgstr "" -#: apt-pkg/packagemanager.cc:428 +#: apt-pkg/packagemanager.cc:436 #, c-format msgid "" "This installation run will require temporarily removing the essential " @@ -2418,17 +2433,17 @@ msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -#: apt-pkg/algorithms.cc:1154 +#: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -#: apt-pkg/algorithms.cc:1156 +#: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." msgstr "" -#: apt-pkg/algorithms.cc:1433 apt-pkg/algorithms.cc:1435 +#: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" "Some index files failed to download, they have been ignored, or old ones " "used instead." @@ -2448,12 +2463,12 @@ msgstr "" #. only show the ETA if it makes sense #. two days -#: apt-pkg/acquire.cc:829 +#: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" msgstr "Parsiunčiamas %li failas iš %li (liko %s)" -#: apt-pkg/acquire.cc:831 +#: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" msgstr "Parsiunčiamas %li failas iš %li" @@ -2473,16 +2488,16 @@ 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:125 +#: apt-pkg/init.cc:132 #, c-format msgid "Packaging system '%s' is not supported" msgstr "" -#: apt-pkg/init.cc:141 +#: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" msgstr "" -#: apt-pkg/clean.cc:57 +#: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." msgstr "" @@ -2501,163 +2516,161 @@ msgstr "" "Greičiausiai norėsite paleisti „apt-get update“, kad šios problemos būtų " "ištaisytos" -#: apt-pkg/policy.cc:329 +#: apt-pkg/policy.cc:347 #, c-format msgid "Invalid record in the preferences file %s, no Package header" msgstr "" -#: apt-pkg/policy.cc:351 +#: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" msgstr "" -#: apt-pkg/policy.cc:359 +#: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" msgstr "" -#: apt-pkg/pkgcachegen.cc:72 +#: apt-pkg/pkgcachegen.cc:74 msgid "Cache has an incompatible versioning system" msgstr "" -#: apt-pkg/pkgcachegen.cc:115 +#: apt-pkg/pkgcachegen.cc:117 #, c-format msgid "Error occurred while processing %s (NewPackage)" msgstr "" -#: apt-pkg/pkgcachegen.cc:130 +#: apt-pkg/pkgcachegen.cc:132 #, c-format msgid "Error occurred while processing %s (UsePackage1)" msgstr "" -#: apt-pkg/pkgcachegen.cc:164 +#: apt-pkg/pkgcachegen.cc:166 #, c-format msgid "Error occurred while processing %s (NewFileDesc1)" msgstr "" -#: apt-pkg/pkgcachegen.cc:189 +#: apt-pkg/pkgcachegen.cc:191 #, c-format msgid "Error occurred while processing %s (UsePackage2)" msgstr "" -#: apt-pkg/pkgcachegen.cc:193 +#: apt-pkg/pkgcachegen.cc:195 #, c-format msgid "Error occurred while processing %s (NewFileVer1)" msgstr "" -#: apt-pkg/pkgcachegen.cc:224 +#: apt-pkg/pkgcachegen.cc:226 #, c-format msgid "Error occurred while processing %s (NewVersion1)" msgstr "" -#: apt-pkg/pkgcachegen.cc:228 +#: apt-pkg/pkgcachegen.cc:230 #, c-format msgid "Error occurred while processing %s (UsePackage3)" msgstr "" -#: apt-pkg/pkgcachegen.cc:232 +#: apt-pkg/pkgcachegen.cc:234 #, c-format msgid "Error occurred while processing %s (NewVersion2)" msgstr "" -#: apt-pkg/pkgcachegen.cc:256 +#: apt-pkg/pkgcachegen.cc:258 #, c-format msgid "Error occurred while processing %s (NewFileDesc2)" msgstr "" -#: apt-pkg/pkgcachegen.cc:262 +#: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:265 +#: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:268 +#: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:271 +#: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." msgstr "" -#: apt-pkg/pkgcachegen.cc:299 +#: apt-pkg/pkgcachegen.cc:301 #, c-format msgid "Error occurred while processing %s (FindPkg)" msgstr "" -#: apt-pkg/pkgcachegen.cc:312 +#: apt-pkg/pkgcachegen.cc:314 #, c-format msgid "Error occurred while processing %s (CollectFileProvides)" msgstr "" -#: apt-pkg/pkgcachegen.cc:318 +#: apt-pkg/pkgcachegen.cc:320 #, c-format msgid "Package %s %s was not found while processing file dependencies" msgstr "" -#: apt-pkg/pkgcachegen.cc:690 +#: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" msgstr "" -#: apt-pkg/pkgcachegen.cc:775 +#: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" msgstr "" -#: apt-pkg/pkgcachegen.cc:902 apt-pkg/pkgcachegen.cc:909 +#: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" msgstr "" -#: apt-pkg/acquire-item.cc:127 +#: apt-pkg/acquire-item.cc:128 #, c-format msgid "rename failed, %s (%s -> %s)." msgstr "" -#: apt-pkg/acquire-item.cc:401 +#: apt-pkg/acquire-item.cc:395 msgid "MD5Sum mismatch" msgstr "MD5 sumos neatitikimas" -#: apt-pkg/acquire-item.cc:658 apt-pkg/acquire-item.cc:1426 +#: apt-pkg/acquire-item.cc:649 apt-pkg/acquire-item.cc:1411 msgid "Hash Sum mismatch" msgstr "Maišos sumos nesutapimas" -#: apt-pkg/acquire-item.cc:1118 +#: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" msgstr "" -#: apt-pkg/acquire-item.cc:1231 +#: apt-pkg/acquire-item.cc:1216 #, 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:1290 +#: apt-pkg/acquire-item.cc:1275 #, 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:1331 +#: apt-pkg/acquire-item.cc:1316 #, c-format msgid "" "The package index files are corrupted. No Filename: field for package %s." msgstr "" -#: apt-pkg/acquire-item.cc:1418 +#: apt-pkg/acquire-item.cc:1403 msgid "Size mismatch" msgstr "Neatitinka dydžiai" #: apt-pkg/indexrecords.cc:40 #, fuzzy, c-format -#| msgid "Unable to open DB file %s: %s" msgid "Unable to parse Release file %s" msgstr "Nepavyko atverti DB failo %s: %s" #: apt-pkg/indexrecords.cc:47 #, fuzzy, c-format -#| msgid "Note, selecting %s instead of %s\n" msgid "No sections in Release file %s" msgstr "Pastaba: pažymimas %s vietoje %s\n" @@ -2671,71 +2684,71 @@ msgstr "" msgid "Vendor block %s contains no fingerprint" msgstr "" -#: apt-pkg/cdrom.cc:529 +#: apt-pkg/cdrom.cc:525 #, c-format msgid "" "Using CD-ROM mount point %s\n" "Mounting CD-ROM\n" msgstr "" -#: apt-pkg/cdrom.cc:538 apt-pkg/cdrom.cc:627 +#: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " msgstr "Identifikuojama.. " -#: apt-pkg/cdrom.cc:563 +#: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" msgstr "" -#: apt-pkg/cdrom.cc:570 apt-pkg/cdrom.cc:841 +#: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" msgstr "Atjungiamas CD-ROM...\n" -#: apt-pkg/cdrom.cc:590 +#: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" msgstr "Naudojama CD-ROM prijungimo vieta %s\n" -#: apt-pkg/cdrom.cc:608 +#: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" msgstr "Atjungiamas CD-ROM\n" -#: apt-pkg/cdrom.cc:612 +#: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" msgstr "Laukiama disko...\n" #. Mount the new CDROM -#: apt-pkg/cdrom.cc:620 +#: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" msgstr "Prijungiamas CD-ROM...\n" -#: apt-pkg/cdrom.cc:638 +#: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" msgstr "" -#: apt-pkg/cdrom.cc:678 +#: apt-pkg/cdrom.cc:673 #, c-format msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" "zu signatures\n" msgstr "" -#: apt-pkg/cdrom.cc:689 +#: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" -#: apt-pkg/cdrom.cc:715 +#: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" msgstr "Rasta žymė „%s“\n" -#: apt-pkg/cdrom.cc:744 +#: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" msgstr "" -#: apt-pkg/cdrom.cc:760 +#: apt-pkg/cdrom.cc:755 #, c-format msgid "" "This disc is called: \n" @@ -2744,34 +2757,34 @@ msgstr "" "Šio disko pavadinimas: \n" "„%s“\n" -#: apt-pkg/cdrom.cc:764 +#: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." msgstr "Kopijuojami paketų sąrašai..." -#: apt-pkg/cdrom.cc:790 +#: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" msgstr "Rašomas naujas šaltinių sąrašas\n" -#: apt-pkg/cdrom.cc:799 +#: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" msgstr "" -#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:833 +#: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format msgid "Wrote %i records.\n" msgstr "" -#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:835 +#: apt-pkg/indexcopy.cc:265 apt-pkg/indexcopy.cc:837 #, c-format msgid "Wrote %i records with %i missing files.\n" msgstr "" -#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:838 +#: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" msgstr "" -#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:841 +#: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" msgstr "" @@ -2781,12 +2794,12 @@ msgstr "" msgid "Installing %s" msgstr "Įdiegta %s" -#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:642 +#: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" msgstr "Konfigūruojamas %s" -#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:649 +#: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format msgid "Removing %s" msgstr "Šalinamas %s" @@ -2796,56 +2809,56 @@ msgstr "Šalinamas %s" msgid "Running post-installation trigger %s" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:546 +#: apt-pkg/deb/dpkgpm.cc:557 #, c-format msgid "Directory '%s' missing" msgstr "Trūksta aplanko „%s“" -#: apt-pkg/deb/dpkgpm.cc:635 +#: apt-pkg/deb/dpkgpm.cc:653 #, c-format msgid "Preparing %s" msgstr "Ruošiamas %s" -#: apt-pkg/deb/dpkgpm.cc:636 +#: apt-pkg/deb/dpkgpm.cc:654 #, c-format msgid "Unpacking %s" msgstr "Išpakuojamas %s" -#: apt-pkg/deb/dpkgpm.cc:641 +#: apt-pkg/deb/dpkgpm.cc:659 #, c-format msgid "Preparing to configure %s" msgstr "Ruošiamasi konfigūruoti %s" -#: apt-pkg/deb/dpkgpm.cc:643 +#: apt-pkg/deb/dpkgpm.cc:661 #, c-format msgid "Installed %s" msgstr "Įdiegta %s" -#: apt-pkg/deb/dpkgpm.cc:648 +#: apt-pkg/deb/dpkgpm.cc:666 #, c-format msgid "Preparing for removal of %s" msgstr "Ruošiamasi %s pašalinimui" -#: apt-pkg/deb/dpkgpm.cc:650 +#: apt-pkg/deb/dpkgpm.cc:668 #, c-format msgid "Removed %s" msgstr "Pašalintas %s" -#: apt-pkg/deb/dpkgpm.cc:655 +#: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" msgstr "Ruošiamasi visiškai pašalinti %s" -#: apt-pkg/deb/dpkgpm.cc:656 +#: apt-pkg/deb/dpkgpm.cc:674 #, c-format msgid "Completely removed %s" msgstr "Visiškai pašalintas %s" -#: apt-pkg/deb/dpkgpm.cc:820 +#: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -#: apt-pkg/deb/dpkgpm.cc:848 +#: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" msgstr "" @@ -2858,7 +2871,6 @@ msgstr "" #: apt-pkg/deb/debsystem.cc:73 #, fuzzy, c-format -#| msgid "Unable to lock the list directory" msgid "Unable to lock the administration directory (%s), are you root?" msgstr "Nepavyko užrakinti sąrašo aplanko" diff --git a/po/mr.po b/po/mr.po index 50da3a587..d378e2154 100644 --- a/po/mr.po +++ b/po/mr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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 " @@ -231,7 +231,8 @@ msgstr "" "अधिक माहितीसाठी apt-cache(8) and apt.conf(5) ची मॅन्युअल पृष्ठे पहा \n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "या तबकडीला कृपया नाव द्या जसे डेबियन २ एलआरएल तबकडी १" #: cmdline/apt-cdrom.cc:92 @@ -1413,11 +1414,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "पुर्वी डाऊनलोड केलेल्या .deb संचयिका आपल्याला खोडून टाकायच्या आहेत का?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "काही त्रुटी ह्या उघडत असताना घडल्या.मी संरचित करणार आहे" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "पॅकेजेस जी संस्थापित झाली आहे.याचा निकाल दुप्पट त्रुटी म्हणून होऊ शकतो" #: dselect/install:103 @@ -1951,8 +1954,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "%s:%s' (%i) रिझॉल्व्ह होत असताना काहीतरी वाईट घडले" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "%s %s ला जोडण्यास असमर्थ:" #: methods/gpgv.cc:71 diff --git a/po/nb.po b/po/nb.po index b69aa0cbe..e60b0e767 100644 --- a/po/nb.po +++ b/po/nb.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+0200\n" "PO-Revision-Date: 2009-02-01 18:26+0100\n" "Last-Translator: Hans Fredrik Nordhaug <hans@nordhaug.priv.no>\n" "Language-Team: Norwegian Bokmal <i18n-nb@lister.ping.ui.no>\n" @@ -240,7 +240,8 @@ msgstr "" "Les manualsidene apt-cache(8) og apt.conf(5) for mer informasjon.\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, 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" #: cmdline/apt-cdrom.cc:92 @@ -1428,11 +1429,13 @@ msgstr "Vil du slettet alle tidligere nedlastede .deb-filer?" # 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 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Feil oppsto ved utpakkinga. Setter n opp de installerte pakkene." #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "Det kan lede til fordobling av feil eller feil forrsaket av " #: dselect/install:103 @@ -1971,8 +1974,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Noe galt skjedde ved oppslag av %s:%s (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Klarte ikke koble til %s %s:" #: methods/gpgv.cc:71 diff --git a/po/ne.po b/po/ne.po index 001e63ab0..7cb27e9dd 100644 --- a/po/ne.po +++ b/po/ne.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_po\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -236,7 +236,8 @@ msgstr "" "धेरै जानकारीकोप लागि apt-cache(8) र apt.conf(5) म्यानुल पृष्टहरू हेर्नुहोस् ।\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "कृपया यो डिस्कको लागि नाम उपलब्ध गराउनुहोस्, जस्तै 'Debian 2.1r1 Disk 1'" #: cmdline/apt-cdrom.cc:92 @@ -1413,11 +1414,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "अनप्याक गर्दा केही त्रुटिहरू देखा पर्यो । म कनफिगर गर्न गइरहेको छु" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "स्थापना भएको प्याकेजहरू । यसले नक्कली त्रुटिहरुमा नतिजा गर्न सक्छ" #: dselect/install:103 @@ -1952,8 +1955,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr " '%s:%s' (%i) हल गर्दा केही दुष्ट घट्यो" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "%s %s मा जडान गर्न असफल भयो:" #: methods/gpgv.cc:71 diff --git a/po/nl.po b/po/nl.po index 0b1d86877..a5ef1ead5 100644 --- a/po/nl.po +++ b/po/nl.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+0200\n" "PO-Revision-Date: 2008-05-05 18:39+0200\n" "Last-Translator: Bart Cornelis <cobaco@skolelinux.no>\n" "Language-Team: debian-l10n-dutch <debian-l10n-dutch@lists.debian.org>\n" @@ -234,7 +234,8 @@ msgstr "" "Zie de apt-cache(8) en apt.conf(5) handleidingen voor meer informatie.\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" "Gelieve een naam voor deze schijf op te geven, zoals 'Debian 2.1r1 Schijf 1'" @@ -1445,11 +1446,13 @@ msgstr "Wilt u alle eerder opgehaalde '.deb'-bestanden verwijderen?" # 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 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Er zijn fouten opgetreden tijdens het uitpakken. De geïnstalleerde" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "" "pakketten worden geconfigureerd. Hierbij kunnen fouten meerdere malen " "optreden" @@ -1991,8 +1994,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Er gebeurde iets raars bij het zoeken naar '%s:%s' (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Kan niet verbinden met %s %s:" #: methods/gpgv.cc:71 diff --git a/po/nn.po b/po/nn.po index 14c348ac6..835b528ba 100644 --- a/po/nn.po +++ b/po/nn.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: apt_nn\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -237,7 +237,7 @@ msgstr "" "Du finn meir informasjon p manualsidene apt-cache(8) og apt.conf(5).\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" #: cmdline/apt-cdrom.cc:92 @@ -1422,11 +1422,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Nokre feil oppstod ved utpakking. Dei installerte pakkane vert no" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "sette opp. Dette kan fra til flgjefeil eller feil p grunn av" #: dselect/install:103 @@ -1964,8 +1966,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Det hende noko dumt ved oppslag av %s:%s (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Klarte ikkje kopla til %s %s:" #: methods/gpgv.cc:71 diff --git a/po/pl.po b/po/pl.po index 4a1eb7adc..0c1f5327f 100644 --- a/po/pl.po +++ b/po/pl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.23.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 13:54+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -238,7 +238,8 @@ msgstr "" "oraz apt.conf(5).\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Proszę wprowadzić nazwę dla tej płyty, np. \"Debian 2.1r1 Disk 1\"" #: cmdline/apt-cdrom.cc:92 @@ -1440,11 +1441,13 @@ msgstr "Usunąć wszystkie pobrane wcześniej pliki .deb?" # 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 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Wystąpiły problemy przy rozpakowywaniu. Zainstalowane pakiety zostaną" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "skonfigurowane. Może to spowodować podwójne błędy lub błędy" #: dselect/install:103 @@ -1492,7 +1495,6 @@ msgstr "Błąd przy czytaniu nagłówka składnika archiwum" #: apt-inst/contrib/arfile.cc:90 #, fuzzy, c-format -#| msgid "Invalid archive member header" msgid "Invalid archive member header %s" msgstr "Nieprawidłowy nagłówek składnika archiwum" @@ -1984,8 +1986,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Coś niewłaściwego stało się przy tłumaczeniu \"%s:%s\" (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Nie udało się połączyć z %s %s:" #: methods/gpgv.cc:71 diff --git a/po/pt.po b/po/pt.po index b07d0bc07..7982d9b26 100644 --- a/po/pt.po +++ b/po/pt.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+0200\n" "PO-Revision-Date: 2008-09-09 20:54+0100\n" "Last-Translator: Miguel Figueiredo <elmig@debianpt.org>\n" "Language-Team: Portuguese <traduz@debianpt.org>\n" @@ -233,7 +233,8 @@ msgstr "" "Para mais informações veja as páginas do manual apt-cache(8) e apt.conf(5).\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" "Por favor forneça um nome para este Disco, tal como 'Debian 2.1r1 Disco 1'" @@ -1436,11 +1437,13 @@ msgstr "Deseja apagar quaisquer ficheiros .deb obtidos previamente?" # 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 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Ocorreram alguns erros ao descompactar. Vou configurar os pacotes" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "que foram instalados. Isto pode resultar em erros duplicados" #: dselect/install:103 @@ -1977,8 +1980,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Algo estranho aconteceu ao resolver '%s:%s' (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Não foi possível ligar a %s %s:" #: methods/gpgv.cc:71 diff --git a/po/pt_BR.po b/po/pt_BR.po index 9b45d7867..00ca3714a 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: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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." @@ -236,7 +236,8 @@ msgstr "" "Veja as páginas de manual apt-cache(8) e apt.conf(5) para mais informações.\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" "Por favor, forneça um nome para este Disco, algo como 'Debian 2.1r1 Disco 1'" @@ -1438,12 +1439,14 @@ msgstr "Você quer apagar quaisquer arquivos .deb previamente baixados?" # 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 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" "Alguns erros ocorreram ao desempacotar. Vou configurar os pacotes que foram" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "" "instalados. Isto pode resultar em erros duplicados ou erros causados por" @@ -1980,8 +1983,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Algo estranho aconteceu resolvendo '%s:%s' (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Impossível conectar em %s %s:" #: methods/gpgv.cc:71 diff --git a/po/ro.po b/po/ro.po index 643815836..7ede77733 100644 --- a/po/ro.po +++ b/po/ro.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ro\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -235,7 +235,8 @@ msgstr "" "Vedeți manualele apt-cache(8) și apt.conf(5) pentru mai multe informații.\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Furnizați un nume pentru acest disc, de exemplu „Debian 2.1r1 Disk 1”" #: cmdline/apt-cdrom.cc:92 @@ -1436,11 +1437,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Doriți să ștergeți eventualele fișiere .deb descărcate anterior?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "S-au produs unele erori în timpul despachetării. Se vor configura" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "" "pachetele care au fost instalate. Aceasta ar putea rezulta erori duplicate" @@ -1988,8 +1991,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "S-a întâmplat ceva „necurat” la rezolvarea lui „%s:%s” (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Nu s-a putut realiza conexiunea cu %s %s:" #: methods/gpgv.cc:71 diff --git a/po/ru.po b/po/ru.po index c21514958..6cdc4461c 100644 --- a/po/ru.po +++ b/po/ru.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.21\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+0200\n" "PO-Revision-Date: 2009-05-03 22:01+0400\n" "Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n" "Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n" @@ -239,7 +239,8 @@ msgstr "" "Подробности в справочных страницах apt-cache(8) и apt.conf(5).\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Задайте имя для этого диска, например 'Debian 2.1r1 Disk 1'" #: cmdline/apt-cdrom.cc:92 @@ -1448,11 +1449,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Удалить все ранее скачанные .deb файлы?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Во время распаковки возникли ошибки. Будет продолжен процесс настройки" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "установленных пакетов. Это может привести к повторению ошибок или" #: dselect/install:103 @@ -1995,8 +1998,8 @@ msgstr "" "Что-то странное произошло при попытке получить IP адрес для '%s:%s' (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Невозможно соединиться с %s %s:" #: methods/gpgv.cc:71 diff --git a/po/sk.po b/po/sk.po index 55de39ef9..a1f81dd43 100644 --- a/po/sk.po +++ b/po/sk.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+0200\n" "PO-Revision-Date: 2009-07-21 12:45+0100\n" "Last-Translator: Ivan Masár <helix84@centrum.sk>\n" "Language-Team: Slovak <sk-i18n@lists.linux.sk>\n" @@ -235,7 +235,8 @@ msgstr "" "Viac informácií nájdete v manuálových stránkach apt-cache(8) a apt.conf(5).\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Zadajte názov tohto disku, napríklad „Debian 2.1r1 Disk 1“" #: cmdline/apt-cdrom.cc:92 @@ -1421,11 +1422,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Chcete odstrániť všetky doteraz stiahnuté .deb súbory?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Pri rozbaľovaní došlo k nejakým chybám. Teraz sa nastavia" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "balíky, ktoré sa nainštalovali. Môže to spôsobiť chybové správy" #: dselect/install:103 @@ -1960,8 +1963,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Niečo veľmi zlé sa prihodilo pri preklade „%s:%s“ (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Nedá sa pripojiť k %s %s:" #: methods/gpgv.cc:71 diff --git a/po/sl.po b/po/sl.po index 11533a4ed..83f9364d9 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.5.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -231,7 +231,7 @@ msgstr "" "Za ve informacij si oglejte strani man apt-cache(8) in apt.conf(5).\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" #: cmdline/apt-cdrom.cc:92 @@ -1416,11 +1416,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Med odpakiranjem je prilo do napak. Nastavil bom" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "pakete, ki so bili nameeni. To lahko privede do dvojnih napak" #: dselect/install:103 @@ -1956,8 +1958,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Prilo je do napake pri razreevanju '%s:%s' (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Ni se mogoe povezati z %s %s:" #: methods/gpgv.cc:71 diff --git a/po/sv.po b/po/sv.po index f6b5cb517..c0706bf93 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+0200\n" "PO-Revision-Date: 2009-03-03 23:15+0100\n" "Last-Translator: Daniel Nylander <po@danielnylander.se>\n" "Language-Team: Swedish <debian-l10n-swedish@debian.org>\n" @@ -232,7 +232,8 @@ msgstr "" "Se manualsidorna för apt-cache(8) och apt.conf(5) för mer information.\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Ange ett namn för denna skiva, exempelvis \"Debian 2.1r1 Disk 1\"" #: cmdline/apt-cdrom.cc:92 @@ -1436,11 +1437,13 @@ msgstr "Vill du ta bort eventuellt tidigare hämtade .deb-filer?" # 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 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "Det uppstod fel vid uppackning. Jag kommer konfigurera de paket" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "som installerades. Detta kan ge dubbla fel eller fel orsakade av" #: dselect/install:103 @@ -1979,8 +1982,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Något konstigt hände när \"%s:%s\" slogs upp (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Kunde inte ansluta till %s %s:" #: methods/gpgv.cc:71 diff --git a/po/th.po b/po/th.po index dd71eee54..a6fffd05c 100644 --- a/po/th.po +++ b/po/th.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -233,7 +233,8 @@ msgstr "" "กรุณาอ่านข้อมูลเพิ่มเติมจาก manual page apt-cache(8) และ apt.conf(5)\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "กรุณาตั้งชื่อแผ่น เช่น 'Debian 4.0r1 Disk 1'" #: cmdline/apt-cdrom.cc:92 @@ -1402,11 +1403,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "คุณต้องการจะลบแฟ้ม .deb ต่างๆ ที่ได้ดาวน์โหลดมาก่อนหน้านี้หรือไม่?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "เกิดข้อผิดพลาดขณะแตกแพกเกจ โปรแกรมจะตั้งค่าแพกเกจที่ติดตั้งแล้ว" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "อาจทำให้เกิดข้อความแจ้งข้อผิดพลาดซ้ำ หรือข้อผิดพลาดเนื่องจากแพกเกจที่ต้องใช้ขาดหาย" #: dselect/install:103 @@ -1936,8 +1939,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "เกิดปัญหาร้ายแรงบางอย่างขณะเปิดหาที่อยู่ '%s:%s' (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "ไม่สามารถเชื่อมต่อไปยัง %s %s:" #: methods/gpgv.cc:71 diff --git a/po/tl.po b/po/tl.po index d14827ab6..b13c98f28 100644 --- a/po/tl.po +++ b/po/tl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -241,7 +241,8 @@ msgstr "" "karagdagang impormasyon\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Bigyan ng pangalan ang Disk na ito, tulad ng 'Debian 2.1r1 Disk 1'" #: cmdline/apt-cdrom.cc:92 @@ -1435,11 +1436,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "May mga error na naganap habang nagbubuklat. Isasaayos ko ang" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "mga paketeng naluklok. Maaaring dumulot ito ng mga error na doble" #: dselect/install:103 @@ -1977,8 +1980,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "May naganap na kababalaghan sa pagresolba ng '%s:%s' (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Hindi maka-konekta sa %s %s:" #: methods/gpgv.cc:71 diff --git a/po/uk.po b/po/uk.po index 6ff02f781..5ce161242 100644 --- a/po/uk.po +++ b/po/uk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-all\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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" @@ -234,7 +234,8 @@ msgstr "" "Подробиці в сторінках керівництва apt-cache(8) і apt.conf(5).\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Задайте назву для цього диска, наприклад 'Debian 2.1r1 Disk 1'" #: cmdline/apt-cdrom.cc:92 @@ -1444,12 +1445,14 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Чи хочете ви видалити всі завантажені раніше файли .deb" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" "Під час розпакування виникли помилки. Буде продовжено процес налаштування" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "встановлених пакунків. Це може призвести до повторення помилок або" #: dselect/install:103 @@ -1994,8 +1997,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Сталося щось дивне при спробі отримати IP адрес для '%s:%s' (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Не можливо під'єднатися до %s %s:" #: methods/gpgv.cc:71 diff --git a/po/vi.po b/po/vi.po index c445ac3f0..d67075ec7 100644 --- a/po/vi.po +++ b/po/vi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: apt 0.7.14\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+0200\n" "PO-Revision-Date: 2008-12-22 19:04+1030\n" "Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n" "Language-Team: Vietnamese <vi-VN@googlegroups.com>\n" @@ -241,7 +241,8 @@ msgstr "" "\t\t\tapt-cache(8) và apt.conf(5).\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, 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 »" #: cmdline/apt-cdrom.cc:92 @@ -1459,11 +1460,13 @@ 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 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, 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" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, 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" #: dselect/install:103 @@ -2005,8 +2008,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Gặp lỗi nghiệm trọng khi tháo gỡ « %s:%s » (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "Không thể kết nối đến %s %s:" #: methods/gpgv.cc:71 diff --git a/po/zh_CN.po b/po/zh_CN.po index 801124adc..e53f71554 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+0200\n" "PO-Revision-Date: 2009-06-01 15:54+0800\n" "Last-Translator: Deng Xiyue <manphiz-guest@users.alioth.debian.org>\n" "Language-Team: Debian Chinese [GB] <debian-chinese-gb@lists.debian.org>\n" @@ -232,7 +232,8 @@ msgstr "" "若要了解更多信息,您还可以查阅 apt-cache(8) 和 apt.conf(5) 参考手册。\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "请给这张光盘起个名字,比如说“Debian 2.1r1 Disk 1”" #: cmdline/apt-cdrom.cc:92 @@ -1404,11 +1405,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "您想要删除之前下载的所有 .deb 文件吗?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "在解包时发生了一些错误。我正准备配置" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "已经安装的软件包。这个操作可能会导致出现重复的错误" #: dselect/install:103 @@ -1940,8 +1943,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "解析“%s:%s”时,出现了某些故障 (%i)" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "不能连接上 %s %s:" #: methods/gpgv.cc:71 diff --git a/po/zh_TW.po b/po/zh_TW.po index 4fa43ecb1..993608474 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: 2009-09-26 11:38+0200\n" +"POT-Creation-Date: 2009-09-27 17:32+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." @@ -233,7 +233,8 @@ msgstr "" "請參閱 apt-cache(8) 及 apt.conf(5) 參考手冊以取得更多資訊。\n" #: cmdline/apt-cdrom.cc:77 -msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" +#, fuzzy +msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "請替這張光碟取個名字,像是 'Debian 2.1r1 Disk 1'" #: cmdline/apt-cdrom.cc:92 @@ -1401,11 +1402,13 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "您想移除所有先前下載的 .deb 檔嗎?" #: dselect/install:101 -msgid "Some errors occurred while unpacking. I'm going to configure the" +#, fuzzy +msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "在解開套件時發生錯誤。我要準備設定" #: dselect/install:102 -msgid "packages that were installed. This may result in duplicate errors" +#, fuzzy +msgid "will be configured. This may result in duplicate errors" msgstr "套件已安裝過。這會造成重複錯誤" #: dselect/install:103 @@ -1936,8 +1939,8 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "在解析 '%s:%s' (%i) 時出了怪事" #: methods/connect.cc:240 -#, c-format -msgid "Unable to connect to %s %s:" +#, fuzzy, c-format +msgid "Unable to connect to %s:%s:" msgstr "無法連線至 %s %s:" #: methods/gpgv.cc:71 -- cgit v1.2.3 From ae965b3a7970511f92bbe44841f6910759d22e80 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sun, 27 Sep 2009 19:36:42 +0200 Subject: French translation completed --- po/fr.po | 27 ++++++++++----------------- 1 file changed, 10 insertions(+), 17 deletions(-) diff --git a/po/fr.po b/po/fr.po index f7a912a4e..9a15143be 100644 --- a/po/fr.po +++ b/po/fr.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: fr\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-09-27 17:32+0200\n" -"PO-Revision-Date: 2009-08-27 20:29+0200\n" +"PO-Revision-Date: 2009-09-27 19:36+0200\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" "MIME-Version: 1.0\n" @@ -237,10 +237,9 @@ msgstr "" "d'informations.\n" #: cmdline/apt-cdrom.cc:77 -#, fuzzy msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" -"Veuillez indiquer le nom de ce disque, par exemple « Debian 2.1r1 Disk 1 »" +"Veuillez indiquer le nom de ce disque, par exemple « Debian 5.0.3 Disk 1 »" #: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" @@ -1268,8 +1267,7 @@ msgstr "Impossible de satisfaire les dépendances %s pour %s : %s" #: cmdline/apt-get.cc:2619 #, c-format msgid "Build-dependencies for %s could not be satisfied." -msgstr "" -"Les dépendances de compilation pour %s ne peuvent pas être satisfaites." +msgstr "Les dépendances de compilation pour %s ne peuvent pas être satisfaites." #: cmdline/apt-get.cc:2624 msgid "Failed to process build dependencies" @@ -1458,22 +1456,19 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Voulez-vous effacer les fichiers .deb précédemment téléchargés ?" #: dselect/install:101 -#, fuzzy msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "" -"Quelques erreurs sont apparues lors du décompactage. Nous allons configurer " -"les" +msgstr "Quelques erreurs sont apparues lors du décompactage. Les paquets qui" #: dselect/install:102 -#, fuzzy msgid "will be configured. This may result in duplicate errors" -msgstr "paquets qui ont été installés. Il peut en résulter d'autres erreurs" +msgstr "" +"ont été installés vont être configurés . Il peut en résulter d'autres erreurs" #: dselect/install:103 msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" "ou des erreurs provoquées par les dépendances manquantes. C'est bénin, " -"seules les erreurs" +"seules les erreurs." #: dselect/install:104 msgid "" @@ -2013,10 +2008,9 @@ msgstr "" "Quelque chose d'imprévisible est survenu lors de la détermination de « %s:%" "s » (%i)" -#: methods/connect.cc:240 -#, fuzzy, c-format +#: methods/connect.cc:240, c-format msgid "Unable to connect to %s:%s:" -msgstr "Impossible de se connecter à %s %s :" +msgstr "Impossible de se connecter à %s:%s :" #: methods/gpgv.cc:71 #, c-format @@ -2808,8 +2802,7 @@ msgstr "Somme de contrôle de hachage incohérente" #: apt-pkg/acquire-item.cc:1106 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" +msgstr "Aucune clé publique n'est disponible pour la/les clé(s) suivante(s) :\n" #: apt-pkg/acquire-item.cc:1216 #, c-format -- cgit v1.2.3 From 334459abb1f5fa7f8a6be694cf9ecb05d692f01e Mon Sep 17 00:00:00 2001 From: Julian Andres Klode <jak@debian.org> Date: Mon, 28 Sep 2009 15:21:08 +0200 Subject: doc/apt.conf.5.xml: Deprecate #include, we have apt.conf.d nowadays which should be sufficient. --- debian/changelog | 2 ++ doc/apt.conf.5.xml | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 018b072d8..10e70b8d4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,8 @@ apt (0.7.25) UNRELEASED; urgency=low - Deprecate unquoted values, string concatenation and explain what should not be written inside a value (quotes,backslash). - Restrict option names to alphanumerical characters and "/-:._+". + - Deprecate #include, we have apt.conf.d nowadays which should be + sufficient. -- Julian Andres Klode <jak@debian.org> Sat, 26 Sep 2009 15:00:28 +0200 diff --git a/doc/apt.conf.5.xml b/doc/apt.conf.5.xml index 661f97ab1..a12524328 100644 --- a/doc/apt.conf.5.xml +++ b/doc/apt.conf.5.xml @@ -95,7 +95,8 @@ DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt";}; new entry will simply add a new option to the list. If you specify a name you can override the option as every other option by reassigning a new value to the option.</para> - <para>Two specials are allowed, <literal>#include</literal> and <literal>#clear</literal>: + <para>Two specials are allowed, <literal>#include</literal> (which is deprecated + and not supported by alternative implementations) 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 -- cgit v1.2.3 From d183f850e7e3e467e8665d116ffbb238fdcc4ea9 Mon Sep 17 00:00:00 2001 From: Michael Vogt <michael.vogt@ubuntu.com> Date: Tue, 29 Sep 2009 15:51:48 +0200 Subject: * apt-pkg/packagemanager.cc: - fix overly aggressive immediate config propergation (thanks to David Kalnischkies) --- apt-pkg/packagemanager.cc | 10 +++++++--- apt-pkg/packagemanager.h | 2 +- debian/changelog | 8 +++++++- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/apt-pkg/packagemanager.cc b/apt-pkg/packagemanager.cc index 442143516..dbcd461ac 100644 --- a/apt-pkg/packagemanager.cc +++ b/apt-pkg/packagemanager.cc @@ -125,7 +125,7 @@ bool pkgPackageManager::FixMissing() /* This adds the immediate flag to the pkg and recursively to the dependendies */ -void pkgPackageManager::ImmediateAdd(PkgIterator I, bool UseInstallVer) +void pkgPackageManager::ImmediateAdd(PkgIterator I, bool UseInstallVer, unsigned const int &Depth) { DepIterator D; @@ -143,12 +143,16 @@ void pkgPackageManager::ImmediateAdd(PkgIterator I, bool UseInstallVer) for ( /* nothing */ ; D.end() == false; D++) if (D->Type == pkgCache::Dep::Depends || D->Type == pkgCache::Dep::PreDepends) { + // ignore dependencies if no instal/upgrade/remove is going to happen + if (D.TargetPkg() == 0 || Cache[D.TargetPkg()].Keep()) + continue; + if(!List->IsFlag(D.TargetPkg(), pkgOrderList::Immediate)) { if(Debug) - clog << "ImmediateAdd(): Adding Immediate flag to " << I.Name() << endl; + clog << OutputInDepth(Depth) << "ImmediateAdd(): Adding Immediate flag to " << D.TargetPkg() << " cause of " << D.DepType() << " " << I.Name() << endl; List->Flag(D.TargetPkg(),pkgOrderList::Immediate); - ImmediateAdd(D.TargetPkg(), UseInstallVer); + ImmediateAdd(D.TargetPkg(), UseInstallVer, Depth + 1); } } return; diff --git a/apt-pkg/packagemanager.h b/apt-pkg/packagemanager.h index a1bfdc52d..af1476b7a 100644 --- a/apt-pkg/packagemanager.h +++ b/apt-pkg/packagemanager.h @@ -49,7 +49,7 @@ class pkgPackageManager : protected pkgCache::Namespace bool Debug; bool DepAdd(pkgOrderList &Order,PkgIterator P,int Depth = 0); - void ImmediateAdd(PkgIterator P, bool UseInstallVer); + void ImmediateAdd(PkgIterator P, bool UseInstallVer, unsigned const int &Depth = 0); virtual OrderResult OrderInstall(); bool CheckRConflicts(PkgIterator Pkg,DepIterator Dep,const char *Ver); bool CreateOrderList(); diff --git a/debian/changelog b/debian/changelog index 8808a4e82..9da06b054 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,6 @@ apt (0.7.25) UNRELEASED; urgency=low + [ Christian Perrier ] * Fix apt-ftparchive(1) wrt description of the "-o" option. Thanks to Dann Frazier for the patch. Closes: #273100 * po/LINGUAS. Re-disable Hebrew. Closes: #534992 @@ -10,8 +11,13 @@ apt (0.7.25) UNRELEASED; urgency=low Closes: #479997 * Polish translation update by Wiktor Wandachowicz Closes: #548571 + + [ Michael Vogt ] + * apt-pkg/packagemanager.cc: + - fix overly aggressive immediate config propergation + (thanks to David Kalnischkies) - -- Christian Perrier <bubulle@debian.org> Sat, 26 Sep 2009 11:17:25 +0200 + -- Michael Vogt <michael.vogt@ubuntu.com> Tue, 29 Sep 2009 15:51:34 +0200 apt (0.7.24) unstable; urgency=low -- cgit v1.2.3 From f465a80f6e0e0cc3edae1870881135ced824c9e3 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode <jak@debian.org> Date: Mon, 12 Oct 2009 16:24:34 +0200 Subject: methods/https.cc: Add support for authentication using netrc (Closes: #518473), patch by Jussi Hakala <jussi.hakala@hut.fi>. --- debian/changelog | 3 +++ methods/https.cc | 1 + 2 files changed, 4 insertions(+) diff --git a/debian/changelog b/debian/changelog index 34a35b2f9..68ee83bac 100644 --- a/debian/changelog +++ b/debian/changelog @@ -24,6 +24,9 @@ apt (0.7.25) UNRELEASED; urgency=low - Restrict option names to alphanumerical characters and "/-:._+". - Deprecate #include, we have apt.conf.d nowadays which should be sufficient. + * methods/https.cc: + - Add support for authentication using netrc (Closes: #518473), patch + by Jussi Hakala <jussi.hakala@hut.fi>. -- Michael Vogt <michael.vogt@ubuntu.com> Tue, 29 Sep 2009 15:51:34 +0200 diff --git a/methods/https.cc b/methods/https.cc index 37d93e308..79e6fea3f 100644 --- a/methods/https.cc +++ b/methods/https.cc @@ -135,6 +135,7 @@ bool HttpsMethod::Fetch(FetchItem *Itm) curl_easy_setopt(curl, CURLOPT_NOPROGRESS, false); curl_easy_setopt(curl, CURLOPT_FAILONERROR, true); curl_easy_setopt(curl, CURLOPT_FILETIME, true); + curl_easy_setopt(curl, CURLOPT_NETRC, CURL_NETRC_OPTIONAL); // SSL parameters are set by default to the common (non mirror-specific) value // if available (or a default one) and gets overload by mirror-specific ones. -- cgit v1.2.3 From 65dd3fce8a1ac0461c385f879f1a053b4e3bfb91 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Mon, 19 Oct 2009 23:07:18 +0200 Subject: German translation update --- debian/changelog | 2 + po/de.po | 496 +++++++++++++++++++++++++++++-------------------------- 2 files changed, 261 insertions(+), 237 deletions(-) diff --git a/debian/changelog b/debian/changelog index 68ee83bac..57f0ddccf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,6 +11,8 @@ apt (0.7.25) UNRELEASED; urgency=low Closes: #479997 * Polish translation update by Wiktor Wandachowicz Closes: #548571 + * German translation update by Holger Wansing + Closes: #551534 [ Michael Vogt ] * apt-pkg/packagemanager.cc: diff --git a/po/de.po b/po/de.po index f1a2cb8dc..460e26ec4 100644 --- a/po/de.po +++ b/po/de.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: apt 0.7.21\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-09-27 17:32+0200\n" -"PO-Revision-Date: 2009-07-12 01:12+0200\n" +"PO-Revision-Date: 2009-08-11 20:59+0200\n" "Last-Translator: Holger Wansing <linux@wansing-online.de>\n" "Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n" "MIME-Version: 1.0\n" @@ -29,7 +29,7 @@ msgstr "Paket %s Version %s hat eine nicht erfüllte Abhängigkeit:\n" #: cmdline/apt-cache.cc:1423 cmdline/apt-cache.cc:1575 #, c-format msgid "Unable to locate package %s" -msgstr "Kann Paket %s nicht finden" +msgstr "Paket %s kann nicht gefunden werden" #: cmdline/apt-cache.cc:245 msgid "Total package names: " @@ -85,7 +85,7 @@ msgstr "Gesamtzahl an Mustern: " #: cmdline/apt-cache.cc:328 msgid "Total dependency version space: " -msgstr "Gesamtmenge an Abhängigkeits/Versionsspeicher: " +msgstr "Gesamtmenge an Abhängigkeits-/Versionsspeicher: " #: cmdline/apt-cache.cc:333 msgid "Total slack space: " @@ -114,7 +114,7 @@ msgstr "Paketdateien:" #: cmdline/apt-cache.cc:1535 cmdline/apt-cache.cc:1622 msgid "Cache is out of sync, can't x-ref a package file" -msgstr "Cache ist nicht sychron, kann eine Paketdatei nicht querverweisen" +msgstr "Cache ist nicht sychron, Querverweisen einer Paketdatei nicht möglich" #. Show any packages have explicit pins #: cmdline/apt-cache.cc:1549 @@ -204,7 +204,7 @@ msgstr "" " apt-cache [Optionen] showsrc paket1 [paket2 ...]\n" "\n" "apt-cache ist ein Low-Level-Werkzeug, um die binären Cache-Dateien von\n" -"APT zu manipulieren und Informationen daraus zu erfragen.\n" +"APT zu bearbeiten und Informationen daraus zu erfragen.\n" "\n" "Befehle:\n" " add – Paket-Datei dem Quell-Cache hinzufügen\n" @@ -238,13 +238,14 @@ msgstr "" #, fuzzy msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "" -"Bitte geben Sie einen Namen für die CD an, wie zum Beispiel »Debian 2.1r1 " +"Bitte geben Sie einen Namen für die CD an, wie zum Beispiel »Debian 5.0.0r1 " "Disk 1«" #: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" msgstr "" -"Bitte legen Sie ein Medium ins Laufwerk und drücken Sie die Eingabetaste" +"Bitte legen Sie ein Medium in das Laufwerk ein und drücken Sie die " +"Eingabetaste" #: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." @@ -318,11 +319,12 @@ msgstr "" #: cmdline/apt-extracttemplates.cc:267 apt-pkg/pkgcachegen.cc:830 #, c-format msgid "Unable to write to %s" -msgstr "Kann nicht nach %s schreiben" +msgstr "Schreiben nach %s nicht möglich" #: cmdline/apt-extracttemplates.cc:310 msgid "Cannot get debconf version. Is debconf installed?" -msgstr "Kann debconf-Version nicht ermitteln. Ist debconf installiert?" +msgstr "" +"debconf-Version konnte nicht ermittelt werden. Ist debconf installiert?" #: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338 msgid "Package extension list is too long" @@ -437,7 +439,7 @@ msgstr "" #: ftparchive/apt-ftparchive.cc:759 msgid "No selections matched" -msgstr "Keine Auswahl passt" +msgstr "Keine Auswahl passend" #: ftparchive/apt-ftparchive.cc:832 #, c-format @@ -447,31 +449,32 @@ msgstr "Einige Dateien fehlen in der Paketdateigruppe »%s«" #: ftparchive/cachedb.cc:43 #, c-format msgid "DB was corrupted, file renamed to %s.old" -msgstr "DB wurde beschädigt, Datei umbenannt in %s.old" +msgstr "Datenbank wurde beschädigt, Datei umbenannt in %s.old" #: ftparchive/cachedb.cc:61 #, c-format msgid "DB is old, attempting to upgrade %s" -msgstr "DB ist alt, versuche %s zu erneuern" +msgstr "Datenbank ist veraltet, versuche %s zu erneuern" #: ftparchive/cachedb.cc:72 msgid "" "DB format is invalid. If you upgraded from a older version of apt, please " "remove and re-create the database." msgstr "" -"DB-Format ist ungültig. Wenn Sie ein Update von einer älteren Version von " -"apt gemacht haben, entfernen Sie bitte die Datenbank und erstellen sie neu." +"Datenbank-Format ist ungültig. Wenn Sie ein Update basierend auf einer " +"älteren Version von apt gemacht haben, entfernen Sie bitte die Datenbank und " +"erstellen Sie sie neu." #: ftparchive/cachedb.cc:77 #, c-format msgid "Unable to open DB file %s: %s" -msgstr "Kann DB-Datei %s nicht öffnen: %s" +msgstr "Datenbank-Datei %s kann nicht geöffnet werden: %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 "Konnte kein »stat« auf %s durchführen." +msgstr "Ausführen von »stat« auf %s fehlgeschlagen." #: ftparchive/cachedb.cc:238 msgid "Archive has no control record" @@ -479,17 +482,17 @@ msgstr "Archiv hat keinen Steuerungs-Datensatz" #: ftparchive/cachedb.cc:444 msgid "Unable to get a cursor" -msgstr "Kann keinen Cursor bekommen" +msgstr "Bekommen eines Cursors nicht möglich" #: ftparchive/writer.cc:76 #, c-format msgid "W: Unable to read directory %s\n" -msgstr "W: Kann Verzeichnis %s nicht lesen\n" +msgstr "W: Verzeichnis %s kann nicht gelesen werden\n" #: ftparchive/writer.cc:81 #, c-format msgid "W: Unable to stat %s\n" -msgstr "W: Kann kein »stat« auf %s durchführen\n" +msgstr "W: Ausführen von »stat« auf %s nicht möglich\n" #: ftparchive/writer.cc:132 msgid "E: " @@ -506,7 +509,7 @@ msgstr "F: Fehler gehören zu Datei " #: ftparchive/writer.cc:158 ftparchive/writer.cc:188 #, c-format msgid "Failed to resolve %s" -msgstr "Konnte %s nicht auflösen" +msgstr "%s konnte nicht aufgelöst werden" #: ftparchive/writer.cc:170 msgid "Tree walking failed" @@ -515,7 +518,7 @@ msgstr "Verzeichniswechsel im Verzeichnisbaum fehlgeschlagen" #: ftparchive/writer.cc:195 #, c-format msgid "Failed to open %s" -msgstr "Konnte %s nicht öffnen" +msgstr "Öffnen von %s fehlgeschlagen" #: ftparchive/writer.cc:254 #, c-format @@ -525,17 +528,17 @@ msgstr " DeLink %s [%s]\n" #: ftparchive/writer.cc:262 #, c-format msgid "Failed to readlink %s" -msgstr "Kann kein readlink auf %s durchführen" +msgstr "readlink auf %s fehlgeschlagen" #: ftparchive/writer.cc:266 #, c-format msgid "Failed to unlink %s" -msgstr "Konnte %s nicht entfernen (unlink)" +msgstr "Entfernen (unlink) von %s fehlgeschlagen" #: ftparchive/writer.cc:273 #, c-format msgid "*** Failed to link %s to %s" -msgstr "*** Konnte keine Verknüpfung von %s zu %s anlegen" +msgstr "*** Erzeugen einer Verknüpfung von %s zu %s fehlgeschlagen" #: ftparchive/writer.cc:283 #, c-format @@ -569,7 +572,7 @@ msgstr " %s hat keinen Eintrag in der Binary-Override-Liste.\n" #: ftparchive/contents.cc:321 #, c-format msgid "Internal error, could not locate member %s" -msgstr "Interner Fehler, konnte Bestandteil %s nicht finden" +msgstr "Interner Fehler, Bestandteil %s konnte nicht gefunden werden" #: ftparchive/contents.cc:358 ftparchive/contents.cc:389 msgid "realloc - Failed to allocate memory" @@ -578,7 +581,7 @@ msgstr "realloc – Speicheranforderung fehlgeschlagen" #: ftparchive/override.cc:34 ftparchive/override.cc:142 #, c-format msgid "Unable to open %s" -msgstr "Kann %s nicht öffnen" +msgstr "%s konnte nicht geöffnet werden" #: ftparchive/override.cc:60 ftparchive/override.cc:166 #, c-format @@ -598,7 +601,7 @@ msgstr "Missgestaltetes Override %s Zeile %lu #3" #: ftparchive/override.cc:127 ftparchive/override.cc:201 #, c-format msgid "Failed to read the override file %s" -msgstr "Konnte die Override-Datei %s nicht lesen." +msgstr "Override-Datei %s konnte nicht gelesen werden." #: ftparchive/multicompress.cc:72 #, c-format @@ -608,15 +611,16 @@ msgstr "Unbekannter Komprimierungsalgorithmus »%s«" #: ftparchive/multicompress.cc:102 #, c-format msgid "Compressed output %s needs a compression set" -msgstr "Komprimierte Ausgabe %s braucht einen Komprimierungs-Satz" +msgstr "Komprimierte Ausgabe %s benötigt einen Komprimierungssatz" #: ftparchive/multicompress.cc:169 methods/rsh.cc:91 msgid "Failed to create IPC pipe to subprocess" -msgstr "Konnte Interprozesskommunikation mit Unterprozess nicht erzeugen" +msgstr "" +"Interprozesskommunikation mit Unterprozess konnte nicht aufgebaut werden" #: ftparchive/multicompress.cc:195 msgid "Failed to create FILE*" -msgstr "Konnte FILE* nicht erzeugen" +msgstr "FILE* konnte nicht erzeugt werden" #: ftparchive/multicompress.cc:198 msgid "Failed to fork" @@ -624,20 +628,21 @@ msgstr "Fork fehlgeschlagen" #: ftparchive/multicompress.cc:212 msgid "Compress child" -msgstr "Komprimierungskindprozess" +msgstr "Komprimierungs-Kindprozess" #: ftparchive/multicompress.cc:235 #, c-format msgid "Internal error, failed to create %s" -msgstr "Interner Fehler, konnte %s nicht erzeugen" +msgstr "Interner Fehler, %s konnte nicht erzeugt werden" #: ftparchive/multicompress.cc:286 msgid "Failed to create subprocess IPC" -msgstr "Konnte Interprozesskommunikation mit Unterprozess nicht herstellen" +msgstr "" +"Interprozesskommunikation mit Unterprozess konnte nicht aufgebaut werden" #: ftparchive/multicompress.cc:321 msgid "Failed to exec compressor " -msgstr "Konnte Komprimierer nicht ausführen" +msgstr "Komprimierer konnte nicht ausgeführt werden" #: ftparchive/multicompress.cc:360 msgid "decompressor" @@ -649,7 +654,7 @@ msgstr "E/A zu Kindprozess/Datei fehlgeschlagen" #: ftparchive/multicompress.cc:455 msgid "Failed to read while computing MD5" -msgstr "Konnte während der MD5-Berechnung nicht lesen" +msgstr "Lesevorgang während der MD5-Berechnung fehlgeschlagen" #: ftparchive/multicompress.cc:472 #, c-format @@ -659,7 +664,7 @@ msgstr "Problem beim Unlinking von %s" #: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185 #, c-format msgid "Failed to rename %s to %s" -msgstr "Konnte %s nicht in %s umbenennen" +msgstr "%s konnte nicht in %s umbenannt werden" #: cmdline/apt-get.cc:127 msgid "Y" @@ -672,7 +677,7 @@ msgstr "Fehler beim Kompilieren eines regulären Ausdrucks – %s" #: cmdline/apt-get.cc:244 msgid "The following packages have unmet dependencies:" -msgstr "Die folgenden Pakete haben nicht erfüllte Abhängigkeiten:" +msgstr "Die folgenden Pakete haben nicht-erfüllte Abhängigkeiten:" #: cmdline/apt-get.cc:334 #, c-format @@ -722,7 +727,8 @@ msgstr "Die folgenden Pakete werden aktualisiert:" #: cmdline/apt-get.cc:472 msgid "The following packages will be DOWNGRADED:" -msgstr "Die folgenden Pakete werden DEAKTUALISIERT:" +msgstr "" +"Die folgenden Pakete werden DEAKTUALISIERT (ältere Version wird installiert):" #: cmdline/apt-get.cc:492 msgid "The following held packages will be changed:" @@ -776,11 +782,11 @@ msgstr " fehlgeschlagen." #: cmdline/apt-get.cc:675 msgid "Unable to correct dependencies" -msgstr "Kann Abhängigkeiten nicht korrigieren" +msgstr "Abhängigkeiten konnten nicht korrigiert werden" #: cmdline/apt-get.cc:678 msgid "Unable to minimize the upgrade set" -msgstr "Kann die Menge zu aktualisierender Pakete nicht minimieren" +msgstr "Menge der zu aktualisierenden Pakete konnte nicht minimiert werden" #: cmdline/apt-get.cc:680 msgid " Done" @@ -792,7 +798,7 @@ msgstr "Probieren Sie »apt-get -f install«, um dies zu korrigieren." #: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." -msgstr "Nicht erfüllte Abhängigkeiten. Versuchen Sie, -f zu benutzen." +msgstr "Nicht-erfüllte Abhängigkeiten. Versuchen Sie, -f zu benutzen." #: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" @@ -828,7 +834,7 @@ msgstr "Interner Fehler, Anordnung beendete nicht" #: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" -msgstr "Kann das Downloadverzeichnis nicht sperren." +msgstr "Das Downloadverzeichnis konnte nicht gesperrt werden." #: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 @@ -838,8 +844,8 @@ msgstr "Die Liste der Quellen konnte nicht gelesen werden." #: cmdline/apt-get.cc:836 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 an " -"apt@packages.debian.org" +"Wie merkwürdig ... die Größen haben nicht übereingestimmt; schreiben Sie " +"eine E-Mail an apt@packages.debian.org" #: cmdline/apt-get.cc:841 #, c-format @@ -864,7 +870,7 @@ msgstr "Nach dieser Operation werden %sB Plattenplatz freigegeben.\n" #: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" -msgstr "Konnte freien Platz in %s nicht bestimmen" +msgstr "Freier Platz in %s konnte nicht bestimmt werden" #: cmdline/apt-get.cc:876 #, c-format @@ -901,7 +907,7 @@ msgstr "Möchten Sie fortfahren [J/n]? " #: cmdline/apt-get.cc:989 cmdline/apt-get.cc:2289 apt-pkg/algorithms.cc:1389 #, c-format msgid "Failed to fetch %s %s\n" -msgstr "Konnte %s nicht holen %s\n" +msgstr "Fehlschlag beim Holen von %s %s\n" #: cmdline/apt-get.cc:1007 msgid "Some files failed to download" @@ -916,16 +922,16 @@ msgid "" "Unable to fetch some archives, maybe run apt-get update or try with --fix-" "missing?" msgstr "" -"Konnte einige Archive nicht herunterladen; vielleicht »apt-get update« " -"ausführen oder mit »--fix-missing« probieren?" +"Einige Archive konnten nicht heruntergeladen werden; vielleicht »apt-get " +"update« ausführen oder mit »--fix-missing« probieren?" #: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" -msgstr "--fix-missing und Wechselmedien werden zurzeit nicht unterstützt" +msgstr "--fix-missing und Wechselmedien werden derzeit nicht unterstützt" #: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." -msgstr "Konnte fehlende Pakete nicht korrigieren." +msgstr "Fehlende Pakete konnten nicht korrigiert werden." #: cmdline/apt-get.cc:1024 msgid "Aborting install." @@ -934,18 +940,19 @@ msgstr "Installation abgebrochen." #: cmdline/apt-get.cc:1082 #, c-format msgid "Note, selecting %s instead of %s\n" -msgstr "Hinweis: wähle %s an Stelle von %s\n" +msgstr "Hinweis: %s wird an Stelle von %s gewählt\n" #: cmdline/apt-get.cc:1093 #, c-format msgid "Skipping %s, it is already installed and upgrade is not set.\n" msgstr "" -"Überspringe %s, es ist schon installiert und »upgrade« ist nicht gesetzt.\n" +"%s wird übersprungen; es ist schon installiert und »upgrade« ist nicht " +"gesetzt.\n" #: cmdline/apt-get.cc:1111 #, c-format msgid "Package %s is not installed, so not removed\n" -msgstr "Paket %s ist nicht installiert, wird also auch nicht entfernt\n" +msgstr "Paket %s ist nicht installiert, wird also auch nicht entfernt.\n" #: cmdline/apt-get.cc:1122 #, c-format @@ -967,8 +974,8 @@ msgid "" "This may mean that the package is missing, has been obsoleted, or\n" "is only available from another source\n" msgstr "" -"Paket %s ist nicht verfügbar, wird aber von einem anderen\n" -"Paket referenziert. Das kann heißen, dass das Paket fehlt, dass es veraltet\n" +"Paket %s ist nicht verfügbar, wird aber von einem anderen Paket\n" +"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:1163 @@ -1018,11 +1025,12 @@ msgstr "Der Befehl »update« akzeptiert keine Argumente" #: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" -msgstr "Kann das Listenverzeichnis nicht sperren" +msgstr "Das Listenverzeichnis kann nicht gesperrt werden" #: cmdline/apt-get.cc:1454 msgid "We are not supposed to delete stuff, can't start AutoRemover" -msgstr "Es soll nichts gelöscht werden, kann AutoRemover nicht starten" +msgstr "" +"Es soll nichts gelöscht werden, AutoRemover kann nicht gestartet werden" #: cmdline/apt-get.cc:1503 msgid "" @@ -1034,6 +1042,9 @@ msgstr "" #: cmdline/apt-get.cc:1505 #, fuzzy, c-format +#| msgid "" +#| "The following packages were automatically installed and are no longer " +#| "required:" msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" "Die folgenden Pakete wurden automatisch installiert und werden nicht länger " @@ -1078,17 +1089,17 @@ msgstr "Interner Fehler, AllUpgrade hat was kaputt gemacht" #: cmdline/apt-get.cc:1592 #, c-format msgid "Couldn't find task %s" -msgstr "Konnte Task %s nicht finden" +msgstr "Task %s konnte nicht gefunden werden" #: cmdline/apt-get.cc:1707 cmdline/apt-get.cc:1743 #, c-format msgid "Couldn't find package %s" -msgstr "Konnte Paket %s nicht finden" +msgstr "Paket %s konnte nicht gefunden werden" #: cmdline/apt-get.cc:1730 #, c-format msgid "Note, selecting %s for regex '%s'\n" -msgstr "Hinweis: wähle %s für regulären Ausdruck »%s«\n" +msgstr "Hinweis: %s wird für regulären Ausdruck »%s« gewählt\n" #: cmdline/apt-get.cc:1761 #, c-format @@ -1160,7 +1171,7 @@ msgstr "" #: cmdline/apt-get.cc:2168 cmdline/apt-get.cc:2410 #, c-format msgid "Unable to find a source package for %s" -msgstr "Kann Quellpaket für %s nicht finden" +msgstr "Quellpaket für %s kann nicht gefunden werden" #: cmdline/apt-get.cc:2217 #, c-format @@ -1185,11 +1196,11 @@ msgstr "Es müssen %sB an Quellarchiven heruntergeladen werden.\n" #: cmdline/apt-get.cc:2263 #, c-format msgid "Fetch source %s\n" -msgstr "Hole Quelle %s\n" +msgstr "Quelle %s wird heruntergeladen\n" #: cmdline/apt-get.cc:2294 msgid "Failed to fetch some archives." -msgstr "Konnte einige Archive nicht holen." +msgstr "Einige Archive konnten nicht heruntergeladen werden." #: cmdline/apt-get.cc:2322 #, c-format @@ -1238,8 +1249,8 @@ msgid "" "%s dependency for %s cannot be satisfied because the package %s cannot be " "found" msgstr "" -"%s-Abhängigkeit für %s kann nicht erfüllt werden, da Paket %s nicht gefunden " -"werden kann." +"»%s«-Abhängigkeit für %s kann nicht erfüllt werden, da Paket %s nicht " +"gefunden werden kann." #: cmdline/apt-get.cc:2540 #, c-format @@ -1247,20 +1258,20 @@ msgid "" "%s dependency for %s cannot be satisfied because no available versions of " "package %s can satisfy version requirements" msgstr "" -"%s-Abhängigkeit für %s kann nicht erfüllt werden, da keine verfügbare " -"Version von Paket %s die Versionsanforderungen erfüllen kann." +"»%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:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" msgstr "" -"Konnte die %s-Abhängigkeit für %s nicht erfüllen: Installiertes Paket %s ist " -"zu neu." +"Die »%s«-Abhängigkeit für %s kann nicht erfüllt werden: Installiertes Paket %" +"s ist zu neu." #: cmdline/apt-get.cc:2603 #, c-format msgid "Failed to satisfy %s dependency for %s: %s" -msgstr "Konnte die %s-Abhängigkeit für %s nicht erfüllen: %s" +msgstr "Die »%s«-Abhängigkeit für %s konnte nicht erfüllt werden: %s" #: cmdline/apt-get.cc:2619 #, c-format @@ -1403,7 +1414,7 @@ msgstr "Es wurden %sB in %s geholt (%sB/s)\n" #: cmdline/acqprogress.cc:225 #, c-format msgid " [Working]" -msgstr " [Verarbeite]" +msgstr " [Wird verarbeitet]" #: cmdline/acqprogress.cc:271 #, c-format @@ -1414,7 +1425,7 @@ msgid "" msgstr "" "Medienwechsel: Bitte legen Sie das Medium mit dem Namen\n" " »%s«\n" -"in Laufwerk »%s« und drücken Sie die Eingabetaste.\n" +"in Laufwerk »%s« ein und drücken Sie die Eingabetaste.\n" #: cmdline/apt-sortpkgs.cc:86 msgid "Unknown package record!" @@ -1462,19 +1473,19 @@ msgstr "Möchten Sie alle bisher heruntergeladenen .deb-Dateien löschen?" #, fuzzy msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" -"Einige Fehler traten während des Entpackens auf. Ich werde die installierten" +"Einige Fehler traten während des Entpackens auf. Die installierten Pakete" #: dselect/install:102 #, fuzzy msgid "will be configured. This may result in duplicate errors" msgstr "" -"Pakete konfigurieren. Dies kann zu doppelten Fehlermeldungen oder Fehlern " +"werden konfiguriert. Dies kann zu doppelten Fehlermeldungen oder Fehlern " "durch" #: dselect/install:103 msgid "or errors caused by missing dependencies. This is OK, only the errors" msgstr "" -"fehlende Abhängigkeiten führen. Das ist in Ordnung, nur die Fehler über " +"fehlende Abhängigkeiten führen. Das ist in Ordnung, nur die Fehler oberhalb " "dieser" #: dselect/install:104 @@ -1489,11 +1500,11 @@ msgstr "Führe verfügbare Information zusammen" #: apt-inst/contrib/extracttar.cc:114 msgid "Failed to create pipes" -msgstr "Konnte Pipes (Weiterleitungen) nicht erzeugen" +msgstr "Pipes (Weiterleitungen) konnten nicht erzeugt werden" #: apt-inst/contrib/extracttar.cc:141 msgid "Failed to exec gzip " -msgstr "Konnte gzip nicht ausführen" +msgstr "gzip konnte nicht ausgeführt werden" #: apt-inst/contrib/extracttar.cc:178 apt-inst/contrib/extracttar.cc:204 msgid "Corrupted archive" @@ -1518,6 +1529,7 @@ msgstr "Fehler beim Lesen der Archivdatei-Kopfzeilen" #: apt-inst/contrib/arfile.cc:90 #, fuzzy, c-format +#| msgid "Invalid archive member header" msgid "Invalid archive member header %s" msgstr "Ungültige Archivdatei-Kopfzeilen" @@ -1531,19 +1543,19 @@ msgstr "Archiv ist zu kurz" #: apt-inst/contrib/arfile.cc:132 msgid "Failed to read the archive headers" -msgstr "Konnte Archiv-Kopfzeilen nicht lesen" +msgstr "Archiv-Kopfzeilen konnten nicht gelesen werden" #: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" -msgstr "»DropNode« auf noch verknüpftem Knoten aufgerufen" +msgstr "»DropNode« auf noch verknüpften Knoten aufgerufen" #: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" -msgstr "Konnte Hash-Element nicht finden!" +msgstr "Hash-Element konnte nicht gefunden werden!" #: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" -msgstr "Konnte Umleitung nicht reservieren" +msgstr "Umleitung konnte nicht reserviert werden" #: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" @@ -1552,7 +1564,7 @@ msgstr "Interner Fehler in »AddDiversion«" #: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "Versuche, Umleitung zu überschreiben: %s -> %s und %s/%s" +msgstr "Es wird versucht, eine Umleitung zu überschreiben: %s -> %s und %s/%s" #: apt-inst/filelist.cc:506 #, c-format @@ -1567,12 +1579,12 @@ msgstr "Doppelte Konfigurationsdatei %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 "Konnte Datei %s nicht schreiben" +msgstr "Datei %s konnte nicht geschrieben werden" #: apt-inst/dirstream.cc:92 apt-inst/dirstream.cc:100 #, c-format msgid "Failed to close file %s" -msgstr "Konnte Datei %s nicht schließen" +msgstr "Datei %s konnte nicht geschlossen werden" #: apt-inst/extract.cc:93 apt-inst/extract.cc:164 #, c-format @@ -1582,7 +1594,7 @@ msgstr "Der Pfad %s ist zu lang" #: apt-inst/extract.cc:124 #, c-format msgid "Unpacking %s more than once" -msgstr "Packe %s mehr als einmal aus" +msgstr "%s mehr als einmal ausgepackt" #: apt-inst/extract.cc:134 #, c-format @@ -1592,7 +1604,7 @@ msgstr "Das Verzeichnis %s ist umgeleitet" #: apt-inst/extract.cc:144 #, c-format msgid "The package is trying to write to the diversion target %s/%s" -msgstr "Das Paket versucht, auf das Umleitungsziel %s/%s zu schreiben" +msgstr "Vom Paket wird versucht, auf das Umleitungsziel %s/%s zu schreiben" #: apt-inst/extract.cc:154 apt-inst/extract.cc:297 msgid "The diversion path is too long" @@ -1605,7 +1617,7 @@ msgstr "Das Verzeichnis %s wird durch ein Nicht-Verzeichnis ersetzt" #: apt-inst/extract.cc:280 msgid "Failed to locate node in its hash bucket" -msgstr "Konnte Knoten nicht in seinem Hash finden" +msgstr "Knoten konnte nicht in seinem Hash gefunden werden" #: apt-inst/extract.cc:284 msgid "The path is too long" @@ -1614,12 +1626,12 @@ msgstr "Der Pfad ist zu lang" #: apt-inst/extract.cc:414 #, c-format msgid "Overwrite package match with no version for %s" -msgstr "Überschreibe Paket-Treffer ohne Version für %s" +msgstr "Paket-Treffer ohne Version für %s wird überschrieben" #: apt-inst/extract.cc:431 #, c-format msgid "File %s/%s overwrites the one in the package %s" -msgstr "Datei %s/%s überschreibt die Datei in Paket %s" +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. @@ -1630,31 +1642,32 @@ msgstr "Datei %s/%s überschreibt die Datei in Paket %s" #: apt-pkg/policy.cc:281 apt-pkg/policy.cc:287 #, c-format msgid "Unable to read %s" -msgstr "Kann %s nicht lesen" +msgstr "%s kann nicht gelesen werden" #: apt-inst/extract.cc:491 #, c-format msgid "Unable to stat %s" -msgstr "Kann kein »stat« auf %s durchführen" +msgstr "»stat« konnte nicht auf %s ausgeführt werden" #: apt-inst/deb/dpkgdb.cc:51 apt-inst/deb/dpkgdb.cc:57 #, c-format msgid "Failed to remove %s" -msgstr "Konnte %s nicht entfernen" +msgstr "%s konnte nicht entfernt werden" #: apt-inst/deb/dpkgdb.cc:106 apt-inst/deb/dpkgdb.cc:108 #, c-format msgid "Unable to create %s" -msgstr "Konnte %s nicht erzeugen" +msgstr "%s konnte nicht erzeugt werden" #: apt-inst/deb/dpkgdb.cc:114 #, c-format msgid "Failed to stat %sinfo" -msgstr "Konnte kein »stat« auf %sinfo durchführen" +msgstr "»stat« konnte nicht auf %sinfo ausgeführt werden" #: apt-inst/deb/dpkgdb.cc:119 msgid "The info and temp directories need to be on the same filesystem" -msgstr "Die »info«- und »temp«-Verzeichnisse müssen im selben Dateisystem liegen" +msgstr "" +"Die »info«- und »temp«-Verzeichnisse müssen in demselben Dateisystem liegen" #. Build the status cache #: apt-inst/deb/dpkgdb.cc:135 apt-pkg/pkgcachegen.cc:763 @@ -1666,7 +1679,7 @@ msgstr "Paketlisten werden gelesen" #: apt-inst/deb/dpkgdb.cc:176 #, c-format msgid "Failed to change to the admin dir %sinfo" -msgstr "Kann nicht ins Administrationsverzeichnis %sinfo wechseln" +msgstr "Wechsel in das Administrationsverzeichnis %sinfo fehlgeschlagen" #: apt-inst/deb/dpkgdb.cc:197 apt-inst/deb/dpkgdb.cc:351 #: apt-inst/deb/dpkgdb.cc:444 @@ -1723,7 +1736,7 @@ msgstr "Der Paket-Cache muss erst initialisiert werden" #: apt-inst/deb/dpkgdb.cc:439 #, c-format msgid "Failed to find a Package: header, offset %lu" -msgstr "Konnte keine »Package:«-Kopfzeile finden, Offset %lu" +msgstr "Es konnte keine »Package:«-Kopfzeile gefunden werden, Offset %lu" #: apt-inst/deb/dpkgdb.cc:461 #, c-format @@ -1749,32 +1762,32 @@ msgstr "" #: apt-inst/deb/debfile.cc:110 #, c-format msgid "Couldn't change to %s" -msgstr "Konnte nicht in %s wechseln" +msgstr "Wechsel nach %s nicht möglich" #: apt-inst/deb/debfile.cc:140 msgid "Internal error, could not locate member" -msgstr "Interner Fehler, konnte Bestandteil nicht finden" +msgstr "Interner Fehler, Bestandteil konnte nicht gefunden werden" #: apt-inst/deb/debfile.cc:173 msgid "Failed to locate a valid control file" -msgstr "Konnte gültige »control«-Datei nicht finden" +msgstr "Es konnte keine gültige »control«-Datei gefunden werden" #: apt-inst/deb/debfile.cc:258 msgid "Unparsable control file" -msgstr "Nicht einlesbare »control«-Datei" +msgstr "Auswerten der »control«-Datei nicht möglich" #: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" -msgstr "Kann CD-ROM-Datenbank %s nicht lesen" +msgstr "CD-ROM-Datenbank %s kann nicht gelesen werden" #: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" msgstr "" -"Bitte verwenden Sie apt-cdrom, um diese CD-ROM für APT erkennbar zu machen. " -"apt-get update kann nicht dazu verwendet werden, neue CD-ROMs hinzuzufügen" +"Bitte verwenden Sie apt-cdrom, um APT diese CD-ROM bekannt zu machen. apt-" +"get update kann nicht dazu verwendet werden, neue CD-ROMs hinzuzufügen" #: methods/cdrom.cc:219 msgid "Wrong CD-ROM" @@ -1784,8 +1797,8 @@ msgstr "Falsche CD-ROM" #, c-format msgid "Unable to unmount the CD-ROM in %s, it may still be in use." msgstr "" -"Kann Einbindung von CD-ROM in %s nicht lösen, möglicherweise wird sie noch " -"verwendet." +"Einbindung von CD-ROM in %s kann nicht gelöst werden, möglicherweise wird " +"sie noch verwendet." #: methods/cdrom.cc:250 msgid "Disk not found." @@ -1799,11 +1812,11 @@ msgstr "Datei nicht gefunden" #: methods/copy.cc:43 methods/gzip.cc:141 methods/gzip.cc:150 #: methods/rred.cc:234 methods/rred.cc:243 msgid "Failed to stat" -msgstr "Konnte kein »stat« durchführen." +msgstr "»stat« konnte nicht ausgeführt werden." #: methods/copy.cc:80 methods/gzip.cc:147 methods/rred.cc:240 msgid "Failed to set modification time" -msgstr "Kann Änderungszeitpunkt nicht setzen" +msgstr "Änderungszeitpunkt kann nicht gesetzt werden" #: methods/file.cc:44 msgid "Invalid URI, local URIS must not start with //" @@ -1812,20 +1825,20 @@ msgstr "Ungültige URI, lokale URIs dürfen nicht mit // beginnen" #. Login must be before getpeername otherwise dante won't work. #: methods/ftp.cc:167 msgid "Logging in" -msgstr "Logge ein" +msgstr "Anmeldung läuft" #: methods/ftp.cc:173 msgid "Unable to determine the peer name" -msgstr "Kann Namen des Kommunikationspartners nicht bestimmen" +msgstr "Name des Kommunikationspartners kann nicht bestimmt werden" #: methods/ftp.cc:178 msgid "Unable to determine the local name" -msgstr "Kann lokalen Namen nicht bestimmen" +msgstr "Lokaler Name kann nicht bestimmt werden" #: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" -msgstr "Der Server hat die Verbindung abgelehnt: %s" +msgstr "Verbindung durch Server abgelehnt: %s" #: methods/ftp.cc:215 #, c-format @@ -1842,13 +1855,13 @@ msgid "" "A proxy server was specified but no login script, Acquire::ftp::ProxyLogin " "is empty." msgstr "" -"Es war ein Proxy-Server angegeben, aber kein Einlogg-Skript, Acquire::ftp::" +"Es war ein Proxy-Server angegeben, aber kein Login-Skript, Acquire::ftp::" "ProxyLogin ist leer." #: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" -msgstr "Befehl »%s« des Einlog-Skriptes ist fehlgeschlagen: %s" +msgstr "Befehl »%s« des Login-Skriptes fehlgeschlagen: %s" #: methods/ftp.cc:296 #, c-format @@ -1861,7 +1874,7 @@ msgstr "Zeitüberschreitung der Verbindung" #: methods/ftp.cc:340 msgid "Server closed the connection" -msgstr "Der Server hat die Verbindung geschlossen" +msgstr "Verbindung durch Server geschlossen" #: methods/ftp.cc:343 apt-pkg/contrib/fileutl.cc:543 methods/rsh.cc:190 msgid "Read error" @@ -1869,7 +1882,7 @@ msgstr "Lesefehler" #: methods/ftp.cc:350 methods/rsh.cc:197 msgid "A response overflowed the buffer." -msgstr "Eine Antwort hat den Puffer zum Überlaufen gebracht." +msgstr "Durch eine Antwort wurde der Puffer zum Überlaufen gebracht." #: methods/ftp.cc:367 methods/ftp.cc:379 msgid "Protocol corruption" @@ -1881,35 +1894,37 @@ msgstr "Schreibfehler" #: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" -msgstr "Konnte kein Socket erzeugen" +msgstr "Socket konnte nicht erzeugt werden" #: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" -msgstr "Konnte Daten-Socket wegen Zeitüberschreitung nicht verbinden" +msgstr "Daten-Socket konnte wegen Zeitüberschreitung nicht verbunden werden" #: methods/ftp.cc:709 msgid "Could not connect passive socket." -msgstr "Konnte passiven Socket nicht verbinden." +msgstr "Passiver Socket konnte nicht verbunden werden." #: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" -msgstr "Die Funktion getaddrinfo konnte keinen lauschenden Socket finden" +msgstr "" +"Von der Funktion getaddrinfo wurde kein auf Verbindungen wartender Socket " +"gefunden" #: methods/ftp.cc:741 msgid "Could not bind a socket" -msgstr "Konnte ein Socket nicht verbinden" +msgstr "Verbindung des Sockets nicht möglich" #: methods/ftp.cc:745 msgid "Could not listen on the socket" -msgstr "Konnte auf dem Socket nicht lauschen" +msgstr "Warten auf Verbindungen auf dem Socket nicht möglich" #: methods/ftp.cc:752 msgid "Could not determine the socket's name" -msgstr "Konnte den Namen des Sockets nicht bestimmen" +msgstr "Name des Sockets konnte nicht bestimmt werden" #: methods/ftp.cc:784 msgid "Unable to send PORT command" -msgstr "Konnte PORT-Befehl nicht senden" +msgstr "PORT-Befehl konnte nicht gesendet werden" #: methods/ftp.cc:794 #, c-format @@ -1927,7 +1942,7 @@ msgstr "Datenverbindungsaufbau erlitt Zeitüberschreitung" #: methods/ftp.cc:830 msgid "Unable to accept connection" -msgstr "Kann Verbindung nicht annehmen" +msgstr "Verbindung konnte nicht angenommen werden" #: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" @@ -1936,7 +1951,7 @@ msgstr "Bei Bestimmung des Hashwertes einer Datei trat ein Problem auf" #: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" -msgstr "Kann Datei nicht holen, Server antwortete: »%s«" +msgstr "Datei konnte nicht heruntergeladen werden; Antwort vom Server: »%s«" #: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" @@ -1945,7 +1960,7 @@ msgstr "Datenverbindung erlitt Zeitüberschreitung" #: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" -msgstr "Datenübertragung fehlgeschlagen, Server antwortete: »%s«" +msgstr "Datenübertragung fehlgeschlagen; Antwort vom Server: »%s«" #. Get the files information #: methods/ftp.cc:1002 @@ -1954,12 +1969,12 @@ msgstr "Abfrage" #: methods/ftp.cc:1114 msgid "Unable to invoke " -msgstr "Kann nicht aufrufen: " +msgstr "Kann nicht aufgerufen werden: " #: methods/connect.cc:70 #, c-format msgid "Connecting to %s (%s)" -msgstr "Verbinde mit %s (%s)" +msgstr "Verbindung mit %s (%s)" #: methods/connect.cc:81 #, c-format @@ -1969,36 +1984,36 @@ msgstr "[IP: %s %s]" #: methods/connect.cc:90 #, c-format msgid "Could not create a socket for %s (f=%u t=%u p=%u)" -msgstr "Konnte kein Socket für %s erzeugen (f=%u t=%u p=%u)" +msgstr "Socket für %s konnte nicht erzeugt werden (f=%u t=%u p=%u)" #: methods/connect.cc:96 #, c-format msgid "Cannot initiate the connection to %s:%s (%s)." -msgstr "Kann keine Verbindung mit %s:%s aufbauen (%s)." +msgstr "Verbindung mit %s:%s kann nicht aufgebaut werden (%s)." #: methods/connect.cc:104 #, c-format msgid "Could not connect to %s:%s (%s), connection timed out" msgstr "" -"Konnte keine Verbindung mit %s:%s aufbauen (%s), eine Zeitüberschreitung " -"trat auf" +"Verbindung mit %s:%s konnte nicht aufgebaut werden (%s), eine " +"Zeitüberschreitung trat auf" #: methods/connect.cc:119 #, c-format msgid "Could not connect to %s:%s (%s)." -msgstr "Konnte nicht mit %s:%s verbinden (%s)." +msgstr "Verbindung mit %s:%s nicht möglich (%s)." #. We say this mainly because the pause here is for the #. ssh connection that is still going #: methods/connect.cc:147 methods/rsh.cc:425 #, c-format msgid "Connecting to %s" -msgstr "Verbinde mit %s" +msgstr "Verbindung mit %s" #: methods/connect.cc:165 methods/connect.cc:184 #, c-format msgid "Could not resolve '%s'" -msgstr "Konnte »%s« nicht auflösen" +msgstr "»%s« konnte nicht aufgelöst werden" #: methods/connect.cc:190 #, c-format @@ -2012,13 +2027,14 @@ msgstr "Beim Auflösen von »%s:%s« ist etwas Schlimmes passiert (%i)" #: methods/connect.cc:240 #, fuzzy, c-format +#| msgid "Unable to connect to %s %s:" msgid "Unable to connect to %s:%s:" -msgstr "Kann nicht mit %s %s verbinden:" +msgstr "Verbindung mit %s %s nicht möglich:" #: methods/gpgv.cc:71 #, c-format msgid "Couldn't access keyring: '%s'" -msgstr "Konnte nicht auf Schlüsselring zugreifen: »%s«" +msgstr "Zugriff auf Schlüsselring nicht möglich: »%s«" #: methods/gpgv.cc:107 msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting." @@ -2028,8 +2044,8 @@ msgstr "F: Argumentliste von Acquire::gpgv::Options zu lang. Abbruch." msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" msgstr "" -"Interner Fehler: Gültige Signatur, aber konnte den Fingerabdruck des " -"Schlüssels nicht ermitteln?!" +"Interner Fehler: Gültige Signatur, Fingerabdruck des Schlüssels konnte " +"jedoch nicht ermittelt werden?!" #: methods/gpgv.cc:228 msgid "At least one invalid signature was encountered." @@ -2039,7 +2055,7 @@ msgstr "Mindestens eine ungültige Signatur wurde entdeckt." #, c-format msgid "Could not execute '%s' to verify signature (is gpgv installed?)" msgstr "" -"Konnte »%s« zum Überprüfen der Signatur nicht ausführen (ist gpgv " +"»%s« zur Überprüfung der Signatur konnte nicht ausgeführt werden (ist gpgv " "installiert?)" #: methods/gpgv.cc:237 @@ -2062,7 +2078,7 @@ msgstr "" #: methods/gzip.cc:64 #, c-format msgid "Couldn't open pipe for %s" -msgstr "Konnte keine Pipe (Weiterleitung) für %s öffnen" +msgstr "Pipe (Weiterleitung) für %s konnte nicht geöffnet werden" #: methods/gzip.cc:109 #, c-format @@ -2071,12 +2087,12 @@ msgstr "Lesefehler von Prozess %s" #: methods/http.cc:384 msgid "Waiting for headers" -msgstr "Warte auf Kopfzeilen" +msgstr "Warten auf Kopfzeilen" #: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" -msgstr "Erhielt einzelne Kopfzeile aus %u Zeichen" +msgstr "Einzelne Kopfzeile aus %u Zeichen erhalten" #: methods/http.cc:538 msgid "Bad header line" @@ -2084,19 +2100,20 @@ msgstr "Ungültige Kopfzeile" #: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" -msgstr "Der HTTP-Server sandte eine ungültige Antwort-Kopfzeile" +msgstr "Vom·HTTP-Server wurde eine ungültige Antwort-Kopfzeile gesandt" #: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" -msgstr "Der HTTP-Server sandte eine ungültige »Content-Length«-Kopfzeile" +msgstr "Vom HTTP-Server wurde eine ungültige »Content-Length«-Kopfzeile gesandt" #: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" -msgstr "Der HTTP-Server sandte eine ungültige »Content-Range«-Kopfzeile" +msgstr "Vom HTTP-Server wurde eine ungültige »Content-Range«-Kopfzeile gesandt" #: methods/http.cc:610 msgid "This HTTP server has broken range support" -msgstr "Der HTTP-Server unterstützt Datei-Teilübertragung nur fehlerhaft." +msgstr "" +"Teilweise Dateiübertragung·wird vom HTTP-Server nur fehlerhaft unterstützt." #: methods/http.cc:634 msgid "Unknown date format" @@ -2125,8 +2142,8 @@ msgstr "Fehler beim Schreiben der Datei" #: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" msgstr "" -"Fehler beim Lesen vom Server: Der Server am anderen Ende hat die Verbindung " -"geschlossen" +"Fehler beim Lesen vom Server: Verbindung wurde durch den Server auf der " +"anderen Seite geschlossen" #: methods/http.cc:890 msgid "Error reading from server" @@ -2134,7 +2151,7 @@ msgstr "Fehler beim Lesen vom Server" #: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" -msgstr "Konnte Datei nicht einkürzen" +msgstr "Datei konnte nicht eingekürzt werden" #: methods/http.cc:1146 msgid "Bad header data" @@ -2150,12 +2167,12 @@ msgstr "Interner Fehler" #: apt-pkg/contrib/mmap.cc:76 msgid "Can't mmap an empty file" -msgstr "Kann eine leere Datei nicht mit mmap abbilden" +msgstr "Eine leere Datei kann nicht mit mmap abgebildet werden" #: apt-pkg/contrib/mmap.cc:81 apt-pkg/contrib/mmap.cc:187 #, c-format msgid "Couldn't make mmap of %lu bytes" -msgstr "Konnte kein mmap von %lu Bytes durchführen" +msgstr "mmap von %lu Bytes konnte nicht durchgeführt werden" #: apt-pkg/contrib/mmap.cc:234 #, c-format @@ -2208,7 +2225,7 @@ msgstr "Öffne Konfigurationsdatei %s" #: apt-pkg/contrib/configuration.cc:684 #, c-format msgid "Syntax error %s:%u: Block starts with no name." -msgstr "Syntaxfehler %s:%u: Block fängt ohne Namen an." +msgstr "Syntaxfehler %s:%u: Block beginnt ohne Namen." #: apt-pkg/contrib/configuration.cc:703 #, c-format @@ -2229,7 +2246,7 @@ msgstr "" #: apt-pkg/contrib/configuration.cc:767 #, c-format msgid "Syntax error %s:%u: Too many nested includes" -msgstr "Syntaxfehler %s:%u: Zu viele verschachtelte Einbindungen (include)" +msgstr "Syntaxfehler %s:%u: Zu viele verschachtelte Einbindungen (includes)" #: apt-pkg/contrib/configuration.cc:771 apt-pkg/contrib/configuration.cc:776 #, c-format @@ -2265,12 +2282,12 @@ msgstr "Kommandozeilenoption »%c« [aus %s] ist nicht bekannt." #: apt-pkg/contrib/cmndline.cc:119 #, c-format msgid "Command line option %s is not understood" -msgstr "Kommandozeilenoption %s wird nicht verstanden" +msgstr "Kommandozeilenoption %s konnte nicht ausgewertet werden" #: apt-pkg/contrib/cmndline.cc:124 #, c-format msgid "Command line option %s is not boolean" -msgstr "Kommandozeilenoption %s ist nicht Boole'sch" +msgstr "Kommandozeilenoption %s ist nicht Bool'sch" #: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184 #, c-format @@ -2280,7 +2297,7 @@ msgstr "Option %s erfordert ein Argument." #: apt-pkg/contrib/cmndline.cc:198 apt-pkg/contrib/cmndline.cc:204 #, c-format msgid "Option %s: Configuration item specification must have an =<val>." -msgstr "Option %s: Konfigurationswertspezifikation muss =<wert> enthalten." +msgstr "Option %s: Konfigurationswertspezifikation benötigt ein »=<wert>«." #: apt-pkg/contrib/cmndline.cc:234 #, c-format @@ -2306,32 +2323,32 @@ msgstr "Ungültige Operation %s." #: apt-pkg/contrib/cdromutl.cc:52 #, c-format msgid "Unable to stat the mount point %s" -msgstr "Kann kein »stat« auf dem Einhängepunkt %s durchführen." +msgstr "»stat« konnte nicht auf den Einhängepunkt %s ausgeführt werden." #: apt-pkg/contrib/cdromutl.cc:153 apt-pkg/contrib/cdromutl.cc:187 #: apt-pkg/acquire.cc:425 apt-pkg/acquire.cc:450 apt-pkg/clean.cc:39 #, c-format msgid "Unable to change to %s" -msgstr "Kann nicht nach %s wechseln" +msgstr "Es konnte nicht nach %s gewechselt werden" #: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" -msgstr "Konnte kein »stat« auf der CD-ROM durchführen" +msgstr "»stat« konnte nicht auf die CD-ROM ausgeführt werden" #: apt-pkg/contrib/fileutl.cc:149 #, c-format msgid "Not using locking for read only lock file %s" -msgstr "Benutze keine Sperre für schreibgeschützte Lockdatei %s" +msgstr "Es wird keine Sperre für schreibgeschützte Lockdatei %s verwendet" #: apt-pkg/contrib/fileutl.cc:154 #, c-format msgid "Could not open lock file %s" -msgstr "Konnte Lockdatei %s nicht öffnen" +msgstr "Lockdatei %s konnte nicht geöffnet werden" #: apt-pkg/contrib/fileutl.cc:172 #, c-format msgid "Not using locking for nfs mounted lock file %s" -msgstr "Benutze keine Sperre für NFS-eingebundene Lockdatei %s" +msgstr "Es wird keine Sperre für per NFS eingebundene Lockdatei %s verwendet" #: apt-pkg/contrib/fileutl.cc:176 #, c-format @@ -2341,42 +2358,44 @@ msgstr "Konnte Lock %s nicht bekommen" #: apt-pkg/contrib/fileutl.cc:444 #, c-format msgid "Waited for %s but it wasn't there" -msgstr "Auf %s gewartet, aber es war nicht da" +msgstr "Es wurde auf %s gewartet, war jedoch nicht vorhanden" #: apt-pkg/contrib/fileutl.cc:456 #, c-format msgid "Sub-process %s received a segmentation fault." -msgstr "Unterprozess %s hat einen Speicherzugriffsfehler erhalten." +msgstr "Unterprozess %s hat einen Speicherzugriffsfehler empfangen." #: apt-pkg/contrib/fileutl.cc:458 -#, fuzzy, c-format +#, c-format msgid "Sub-process %s received signal %u." -msgstr "Unterprozess %s hat einen Speicherzugriffsfehler erhalten." +msgstr "Unterprozess %s hat Signal %u empfangen." #: apt-pkg/contrib/fileutl.cc:462 #, c-format msgid "Sub-process %s returned an error code (%u)" -msgstr "Unterprozess %s ist mit einem Fehlercode zurückgekehrt (%u)" +msgstr "Unterprozess %s hat Fehlercode zurückgegeben (%u)" #: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" -msgstr "Unterprozess %s hat sich unerwartet beendet" +msgstr "Unterprozess %s unerwartet beendet" #: apt-pkg/contrib/fileutl.cc:508 #, c-format msgid "Could not open file %s" -msgstr "Konnte Datei %s nicht öffnen" +msgstr "Datei %s konnte nicht geöffnet werden" #: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" -msgstr "Lese, habe noch %lu zu lesen, aber nichts mehr übrig" +msgstr "Lesevorgang: es verbleiben noch %lu zu lesen, jedoch nichts mehr übrig" #: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" -msgstr "Schreiben, habe noch %lu zu schreiben, konnte aber nicht" +msgstr "" +"Schreibvorgang: es verbleiben noch %lu zu schreiben, jedoch Schreiben nicht " +"möglich" #: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" @@ -2388,7 +2407,7 @@ msgstr "Beim Unlinking der Datei trat ein Problem auf" #: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" -msgstr "Beim Synchronisieren einer Datei trat ein Problem auf" +msgstr "Beim Synchronisieren der Datei trat ein Problem auf" #: apt-pkg/pkgcache.cc:133 msgid "Empty package cache" @@ -2405,7 +2424,7 @@ msgstr "Die Paket-Cache-Datei liegt in einer inkompatiblen Version vor" #: apt-pkg/pkgcache.cc:149 #, c-format msgid "This APT does not support the versioning system '%s'" -msgstr "Dieses APT unterstützt das Versionssystem »%s« nicht" +msgstr "Das·Versionssystem·»%s« wird durch dieses APT nicht unterstützt" #: apt-pkg/pkgcache.cc:154 msgid "The package cache was built for a different architecture" @@ -2481,27 +2500,27 @@ msgstr "Abhängigkeits-Generierung" #: apt-pkg/depcache.cc:173 apt-pkg/depcache.cc:193 apt-pkg/depcache.cc:197 msgid "Reading state information" -msgstr "Lese Status-Informationen ein" +msgstr "Status-Informationen einlesen" #: apt-pkg/depcache.cc:223 #, c-format msgid "Failed to open StateFile %s" -msgstr "Konnte Statusdatei %s nicht öffnen" +msgstr "Statusdatei %s konnte nicht geöffnet werden" #: apt-pkg/depcache.cc:229 #, c-format msgid "Failed to write temporary StateFile %s" -msgstr "Konnte temporäre Statusdatei %s nicht schreiben" +msgstr "Temporäre Statusdatei %s konnte nicht geschrieben werden" #: apt-pkg/tagfile.cc:102 #, c-format msgid "Unable to parse package file %s (1)" -msgstr "Kann Paketdatei %s nicht verarbeiten (1)" +msgstr "Paketdatei %s konnte nicht verarbeitet werden (1)" #: apt-pkg/tagfile.cc:189 #, c-format msgid "Unable to parse package file %s (2)" -msgstr "Kann Paketdatei %s nicht verarbeiten (2)" +msgstr "Paketdatei %s konnte nicht verarbeitet werden (2)" #: apt-pkg/sourcelist.cc:90 #, c-format @@ -2575,20 +2594,21 @@ msgstr "Indexdateityp »%s« wird nicht unterstützt" msgid "" "The package %s needs to be reinstalled, but I can't find an archive for it." msgstr "" -"Das Paket %s muss neu installiert werden, ich kann aber kein Archiv dafür " -"finden." +"Das Paket %s muss neu installiert werden, es kann jedoch kein Archiv dafür " +"gefunden werden." #: apt-pkg/algorithms.cc:1138 msgid "" "Error, pkgProblemResolver::Resolve generated breaks, this may be caused by " "held packages." msgstr "" -"Fehler: pkgProblemResolver::Resolve hat Unterbrechungen hervorgerufen, dies " -"könnte durch gehaltene Pakete hervorgerufen worden sein." +"Fehler: Unterbrechungen hervorgerufen durch pkgProblemResolver::Resolve; " +"dies könnte durch gehaltene Pakete hervorgerufen worden sein." #: apt-pkg/algorithms.cc:1140 msgid "Unable to correct problems, you have held broken packages." -msgstr "Kann Probleme nicht korrigieren, Sie haben gehaltene defekte Pakete." +msgstr "" +"Probleme können nicht korrigiert werden, Sie haben gehaltene defekte Pakete." #: apt-pkg/algorithms.cc:1415 apt-pkg/algorithms.cc:1417 msgid "" @@ -2613,12 +2633,12 @@ msgstr "Archivverzeichnis %spartial fehlt." #: apt-pkg/acquire.cc:826 #, c-format msgid "Retrieving file %li of %li (%s remaining)" -msgstr "Hole Datei %li von %li (noch %s)" +msgstr "Holen der Datei %li von %li (noch %s)" #: apt-pkg/acquire.cc:828 #, c-format msgid "Retrieving file %li of %li" -msgstr "Hole Datei %li von %li" +msgstr "Holen der Datei %li von %li" #: apt-pkg/acquire-worker.cc:110 #, c-format @@ -2634,8 +2654,8 @@ msgstr "Methode %s ist nicht korrekt gestartet" #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." msgstr "" -"Bitte legen Sie das Medium mit dem Namen »%s« in Laufwerk »%s« und drücken Sie " -"die Eingabetaste." +"Bitte legen Sie das Medium mit dem Namen »%s« in Laufwerk »%s« ein und drücken " +"Sie die Eingabetaste." #: apt-pkg/init.cc:132 #, c-format @@ -2644,18 +2664,18 @@ msgstr "Paketierungssystem »%s« wird nicht unterstützt" #: apt-pkg/init.cc:148 msgid "Unable to determine a suitable packaging system type" -msgstr "Kann keinen passenden Paketierungssystem-Typ bestimmen" +msgstr "Bestimmung eines passenden Paketierungssystem-Typs nicht möglich" #: apt-pkg/clean.cc:56 #, c-format msgid "Unable to stat %s." -msgstr "Kann kein »stat« auf %s durchführen." +msgstr "»stat« kann nicht auf %s ausgeführt werden." #: apt-pkg/srcrecords.cc:44 msgid "You must put some 'source' URIs in your sources.list" msgstr "" -"Sie müssen einige »source«-URIs für Quellen in die sources.list-Datei " -"schreiben." +"Sie müssen einige »source«-URIs für Quellpakete in die sources.list-Datei " +"eintragen." #: apt-pkg/cachefile.cc:71 msgid "The package lists or status file could not be parsed or opened." @@ -2668,14 +2688,14 @@ 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:347 -#, fuzzy, c-format +#, c-format msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Ungültiger Eintrag in Einstellungsdatei, keine »Package«-Kopfzeilen" +msgstr "Ungültiger Eintrag in Einstellungsdatei %s, keine »Package«-Kopfzeilen" #: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" -msgstr "Konnte Pinning-Typ (pin type) %s nicht verstehen" +msgstr "Pinning-Typ (pin type) %s nicht verständlich" #: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" @@ -2773,7 +2793,7 @@ msgstr "" #: apt-pkg/pkgcachegen.cc:693 #, c-format msgid "Couldn't stat source package list %s" -msgstr "Konnte kein »stat« auf der Liste %s der Quellpakete durchführen." +msgstr "»stat« konnte nicht auf die Liste %s der Quellpakete ausgeführt werden." #: apt-pkg/pkgcachegen.cc:778 msgid "Collecting File Provides" @@ -2807,8 +2827,9 @@ 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 "" -"Ich konnte keine Datei für Paket %s finden. Das könnte heißen, dass Sie " -"dieses Paket von Hand korrigieren müssen (aufgrund fehlender Architektur)." +"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:1275 #, c-format @@ -2816,8 +2837,8 @@ msgid "" "I wasn't able to locate file for the %s package. This might mean you need to " "manually fix this package." msgstr "" -"Ich konnte keine Datei für Paket %s finden. Das könnte heißen, dass Sie " -"dieses Paket von Hand korrigieren müssen." +"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:1316 #, c-format @@ -2831,19 +2852,19 @@ msgid "Size mismatch" msgstr "Größe stimmt nicht überein" #: apt-pkg/indexrecords.cc:40 -#, fuzzy, c-format +#, c-format msgid "Unable to parse Release file %s" -msgstr "Kann Paketdatei %s nicht verarbeiten (1)" +msgstr "Release-Datei %s kann nicht verarbeitet werden" #: apt-pkg/indexrecords.cc:47 -#, fuzzy, c-format +#, c-format msgid "No sections in Release file %s" -msgstr "Hinweis: wähle %s an Stelle von %s\n" +msgstr "Keine Abschnitte in Release-Datei %s" #: apt-pkg/indexrecords.cc:81 #, c-format msgid "No Hash entry in Release file %s" -msgstr "" +msgstr "Kein Hash-Eintrag in Release-Datei %s" #: apt-pkg/vendorlist.cc:66 #, c-format @@ -2856,12 +2877,12 @@ msgid "" "Using CD-ROM mount point %s\n" "Mounting CD-ROM\n" msgstr "" -"Benutze CD-ROM-Einhängepunkt %s\n" -"Hänge CD-ROM ein\n" +"Verwendeter CD-ROM-Einhängepunkt: %s\n" +"CD-ROM wird eingehangen\n" #: apt-pkg/cdrom.cc:534 apt-pkg/cdrom.cc:622 msgid "Identifying.. " -msgstr "Identifiziere ... " +msgstr "Identifizieren ... " #: apt-pkg/cdrom.cc:559 #, c-format @@ -2870,29 +2891,29 @@ msgstr "Gespeicherte Kennzeichnung: %s\n" #: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" -msgstr "Hänge CD-ROM aus ...\n" +msgstr "CD-ROM wird ausgehangen ...\n" #: apt-pkg/cdrom.cc:585 #, c-format msgid "Using CD-ROM mount point %s\n" -msgstr "Benutze CD-ROM-Einhängepunkt %s\n" +msgstr "Verwendeter CD-ROM-Einhängepunkt: %s\n" #: apt-pkg/cdrom.cc:603 msgid "Unmounting CD-ROM\n" -msgstr "Hänge CD-ROM aus\n" +msgstr "CD-ROM wird ausgehangen\n" #: apt-pkg/cdrom.cc:607 msgid "Waiting for disc...\n" -msgstr "Warte auf Disk ...\n" +msgstr "Warten auf Disk ...\n" #. Mount the new CDROM #: apt-pkg/cdrom.cc:615 msgid "Mounting CD-ROM...\n" -msgstr "Hänge CD-ROM ein ...\n" +msgstr "CD-ROM wird eingehangen ...\n" #: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" -msgstr "Suche auf CD nach Index-Dateien ...\n" +msgstr "Durchsuchung der CD nach Index-Dateien ...\n" #: apt-pkg/cdrom.cc:673 #, c-format @@ -2900,19 +2921,21 @@ msgid "" "Found %zu package indexes, %zu source indexes, %zu translation indexes and %" "zu signatures\n" msgstr "" -"Fand %zu Paketindizes, %zu Quellindizes, %zu Übersetzungsindizes und %zu " -"Signaturen\n" +"%zu Paketindizes, %zu Quellindizes, %zu Übersetzungsindizes und %zu " +"Signaturen gefunden\n" #: apt-pkg/cdrom.cc:684 msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" +"Es konnten keine Paketdateien gefunden werden; möglicherweise ist dies keine " +"Debian-CD oder eine für die falsche Architektur?" #: apt-pkg/cdrom.cc:710 #, c-format msgid "Found label '%s'\n" -msgstr "Fand Kennzeichnung »%s«\n" +msgstr "Kennzeichnung »%s« gefunden\n" #: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" @@ -2929,11 +2952,11 @@ msgstr "" #: apt-pkg/cdrom.cc:759 msgid "Copying package lists..." -msgstr "Kopiere Paketlisten..." +msgstr "Kopieren der Paketlisten..." #: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" -msgstr "Schreibe neue Quellliste\n" +msgstr "Schreiben der neuen Quellliste\n" #: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" @@ -2964,12 +2987,12 @@ msgstr "" #: apt-pkg/deb/dpkgpm.cc:49 #, c-format msgid "Installing %s" -msgstr "Installiere %s" +msgstr "Installieren von %s" #: apt-pkg/deb/dpkgpm.cc:50 apt-pkg/deb/dpkgpm.cc:660 #, c-format msgid "Configuring %s" -msgstr "Konfiguriere %s" +msgstr "Konfigurieren von %s" #: apt-pkg/deb/dpkgpm.cc:51 apt-pkg/deb/dpkgpm.cc:667 #, c-format @@ -2979,7 +3002,7 @@ msgstr "%s wird entfernt" #: apt-pkg/deb/dpkgpm.cc:52 #, c-format msgid "Running post-installation trigger %s" -msgstr "Rufe Nach-Installations-Trigger %s auf" +msgstr "Aufruf des Nach-Installations-Triggers %s" #: apt-pkg/deb/dpkgpm.cc:557 #, c-format @@ -3019,7 +3042,7 @@ msgstr "%s entfernt" #: apt-pkg/deb/dpkgpm.cc:673 #, c-format msgid "Preparing to completely remove %s" -msgstr "Komplettes Entfernen von %s wird vorbereitet" +msgstr "Vollständiges Entfernen von %s wird vorbereitet" #: apt-pkg/deb/dpkgpm.cc:674 #, c-format @@ -3029,12 +3052,12 @@ msgstr "%s vollständig entfernt" #: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" msgstr "" -"Kann Protokoll nicht schreiben, openpty() schlug fehl (/dev/pts nicht " -"eingehangen?)\n" +"Schreiben des Protokolls nicht möglich, openpty() schlug fehl (/dev/pts " +"nicht eingehangen?)\n" #: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" -msgstr "" +msgstr "Ausführen von dpkg" #: apt-pkg/deb/debsystem.cc:70 #, c-format @@ -3042,17 +3065,22 @@ msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" +"Sperren des Administrationsverzeichnisses (%s) nicht möglich, wird es von " +"einem anderen Prozess verwendet?" #: apt-pkg/deb/debsystem.cc:73 -#, fuzzy, c-format +#, c-format msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Kann das Listenverzeichnis nicht sperren" +msgstr "" +"Sperren des Administrationsverzeichnisses (%s) nicht möglich, sind Sie root?" #: apt-pkg/deb/debsystem.cc:82 msgid "" "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct " "the problem. " msgstr "" +"Der dpkg-Prozess wurde abgebrochen; Sie müssen »dpkg --configure -a« manuell " +"ausführen, um das Problem zu beheben." #: apt-pkg/deb/debsystem.cc:100 msgid "Not locked" @@ -3060,14 +3088,8 @@ msgstr "Nicht gesperrt" #: methods/rred.cc:219 msgid "Could not patch file" -msgstr "Konnte Datei nicht patchen" +msgstr "Datei konnte nicht gepatcht werden" #: methods/rsh.cc:330 msgid "Connection closed prematurely" -msgstr "Verbindung zu früh beendet" - -#~ msgid "%4i %s\n" -#~ msgstr "%4i %s\n" - -#~ msgid "Processing triggers for %s" -#~ msgstr "Verarbeite Auslöser (Trigger) für %s" +msgstr "Verbindung vorzeitig beendet" -- cgit v1.2.3 From c622107e32e76b5a072330bef5c47f10dd86de7d Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Wed, 21 Oct 2009 20:23:12 +0200 Subject: German translation completed --- po/de.po | 37 +++++++++++++------------------------ 1 file changed, 13 insertions(+), 24 deletions(-) diff --git a/po/de.po b/po/de.po index 460e26ec4..d733bfec5 100644 --- a/po/de.po +++ b/po/de.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: apt 0.7.21\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-09-27 17:32+0200\n" -"PO-Revision-Date: 2009-08-11 20:59+0200\n" +"PO-Revision-Date: 2009-10-20 21:55+0200\n" "Last-Translator: Holger Wansing <linux@wansing-online.de>\n" "Language-Team: Debian German <debian-l10n-german@lists.debian.org>\n" "MIME-Version: 1.0\n" @@ -235,11 +235,10 @@ msgstr "" "Weitere Informationen finden Sie unter apt-cache(8) und 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 "" -"Bitte geben Sie einen Namen für die CD an, wie zum Beispiel »Debian 5.0.0r1 " -"Disk 1«" +"Bitte geben Sie einen Namen für diese Disk an, wie zum Beispiel »Debian " +"5.0.3 Disk 1«" #: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" @@ -1041,14 +1040,10 @@ msgstr "" "benötigt:" #: cmdline/apt-get.cc:1505 -#, fuzzy, c-format -#| msgid "" -#| "The following packages were automatically installed and are no longer " -#| "required:" +#, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" -"Die folgenden Pakete wurden automatisch installiert und werden nicht länger " -"benötigt:" +"%lu Pakete wurden automatisch installiert und werden nicht mehr benötigt.\n" #: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." @@ -1470,13 +1465,10 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "Möchten Sie alle bisher heruntergeladenen .deb-Dateien löschen?" #: dselect/install:101 -#, fuzzy msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "" -"Einige Fehler traten während des Entpackens auf. Die installierten Pakete" +msgstr "Einige Fehler traten während des Entpackens auf. Installierte Pakete" #: dselect/install:102 -#, fuzzy msgid "will be configured. This may result in duplicate errors" msgstr "" "werden konfiguriert. Dies kann zu doppelten Fehlermeldungen oder Fehlern " @@ -1484,15 +1476,14 @@ msgstr "" #: dselect/install:103 msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"fehlende Abhängigkeiten führen. Das ist in Ordnung, nur die Fehler oberhalb " -"dieser" +msgstr "fehlende Abhängigkeiten führen. Das ist in Ordnung, nur die Fehler" #: dselect/install:104 msgid "" "above this message are important. Please fix them and run [I]nstall again" msgstr "" -"Meldung sind wichtig. Bitte beseitigen Sie sie und [I]nstallieren Sie erneut." +"oberhalb dieser Meldung sind wichtig. Bitte beseitigen Sie sie und [I]" +"nstallieren Sie erneut." #: dselect/update:30 msgid "Merging available information" @@ -1528,10 +1519,9 @@ msgid "Error reading archive member header" msgstr "Fehler beim Lesen der Archivdatei-Kopfzeilen" #: apt-inst/contrib/arfile.cc:90 -#, fuzzy, c-format -#| msgid "Invalid archive member header" +#, c-format msgid "Invalid archive member header %s" -msgstr "Ungültige Archivdatei-Kopfzeilen" +msgstr "Ungültige Archivbestandteil-Kopfzeile %s" #: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" @@ -2026,10 +2016,9 @@ msgid "Something wicked happened resolving '%s:%s' (%i)" msgstr "Beim Auflösen von »%s:%s« ist etwas Schlimmes passiert (%i)" #: methods/connect.cc:240 -#, fuzzy, c-format -#| msgid "Unable to connect to %s %s:" +#, c-format msgid "Unable to connect to %s:%s:" -msgstr "Verbindung mit %s %s nicht möglich:" +msgstr "Verbindung mit %s:%s nicht möglich:" #: methods/gpgv.cc:71 #, c-format -- cgit v1.2.3 From 9e38dd7cd0b6a12da0345c6489852c98d35b363c Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Wed, 28 Oct 2009 22:11:28 +0100 Subject: German translation of manpages --- debian/changelog | 2 + doc/po/de.po | 9216 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 9218 insertions(+) create mode 100644 doc/po/de.po diff --git a/debian/changelog b/debian/changelog index 57f0ddccf..2d9109ca4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -13,6 +13,8 @@ apt (0.7.25) UNRELEASED; urgency=low Closes: #548571 * German translation update by Holger Wansing Closes: #551534 + * German translation of manpages by Chris Leick + Closes: #552606 [ Michael Vogt ] * apt-pkg/packagemanager.cc: diff --git a/doc/po/de.po b/doc/po/de.po new file mode 100644 index 000000000..edcfb25ea --- /dev/null +++ b/doc/po/de.po @@ -0,0 +1,9216 @@ +# 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. +# +msgid "" +msgstr "" +"Project-Id-Version: apt-doc 0.7.24\n" +"Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" +"POT-Creation-Date: 2009-09-26 11:35+0300\n" +"PO-Revision-Date: 2009-10-25 15:11+GMT\n" +"Last-Translator: Chris Leick <c.leick@vollbio.de>\n" +"Language-Team: German <debian-l10n-german@lists.debian.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. type: TH +#: apt.8:17 +#, no-wrap +msgid "apt" +msgstr "apt" + +#. type: TH +#: apt.8:17 +#, no-wrap +msgid "16 June 1998" +msgstr "16. Juni 1998" + +#. type: TH +#: apt.8:17 +#, no-wrap +msgid "Debian GNU/Linux" +msgstr "Debian GNU/Linux" + +#. type: SH +#: apt.8:18 +#, no-wrap +msgid "NAME" +msgstr "NAME" + +#. type: Plain text +#: apt.8:20 +msgid "apt - Advanced Package Tool" +msgstr "apt - Fortschrittliches Paketierungswerkzeug (Advanced Package Tool)" + +#. type: SH +#: apt.8:20 +#, no-wrap +msgid "SYNOPSIS" +msgstr "??BERSICHT" + +#. type: Plain text +#: apt.8:22 +msgid "B<apt>" +msgstr "B<apt>" + +#. type: SH +#: apt.8:22 +#, no-wrap +msgid "DESCRIPTION" +msgstr "BESCHREIBUNG" + +#. type: Plain text +#: apt.8:31 +msgid "" +"APT is a management system for software packages. For normal day to day " +"package management there are several frontends available, such as B<aptitude>" +"(8) for the command line or B<synaptic>(8) for the X Window System. Some " +"options are only implemented in B<apt-get>(8) though." +msgstr "" +"APT ist ein Verwaltungssystem f??r Softwarepakete. F??r normale allt??gliche " +"Paketverwaltung sind mehrere Oberfl??chen, wie B<aptitude>(8) f??r die " +"Befehlszeile oder B<synaptic>(8) f??r das X-Window-System, verf??gbar. " +"Einige Optionen sind jedoch nur in B<apt-get>(8) implementiert." + +#. type: SH +#: apt.8:31 +#, no-wrap +msgid "OPTIONS" +msgstr "OPTIONEN" + +#. type: Plain text +#: apt.8:33 apt.8:35 +msgid "None." +msgstr "Keine" + +#. type: SH +#: apt.8:33 +#, no-wrap +msgid "FILES" +msgstr "DATEIEN" + +#. type: SH +#: apt.8:35 +#, no-wrap +msgid "SEE ALSO" +msgstr "SIEHE AUCH" + +#. type: Plain text +#: apt.8:42 +msgid "" +"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " +"B<apt_preferences>(5), B<apt-secure>(8)" +msgstr "" +"B<apt-cache>(8), B<apt-get>(8), B<apt.conf>(5), B<sources.list>(5), " +"B<apt_preferences>(5), B<apt-secure>(8)" + +#. type: SH +#: apt.8:42 +#, no-wrap +msgid "DIAGNOSTICS" +msgstr "DIAGNOSE" + +#. type: Plain text +#: apt.8:44 +msgid "apt returns zero on normal operation, decimal 100 on error." +msgstr "apt gibt bei normalen Operationen 0 zur??ck, dezimal 100 bei Fehlern." + +#. type: SH +#: apt.8:44 +#, no-wrap +msgid "BUGS" +msgstr "FEHLER" + +#. type: Plain text +#: apt.8:46 +msgid "This manpage isn't even started." +msgstr "Diese Handbuchseite wurde noch nicht mal begonnen." + +#. type: Plain text +#: apt.8:55 +msgid "" +"See E<lt>http://bugs.debian.org/aptE<gt>. If you wish to report a bug in " +"B<apt>, please see I</usr/share/doc/debian/bug-reporting.txt> or the " +"B<reportbug>(1) command." +msgstr "" +"Siehe auch E<lt>http://bugs.debian.org/aptE<gt>. Wenn Sie einen Fehler in " +"B<apt> berichten m??chten, sehen Sie sich bitte I</usr/share/doc/debian/bug-" +"reporting.txt> oder den Befehl B<reportbug>(1) an." + +#. type: SH +#: apt.8:55 +#, no-wrap +msgid "AUTHOR" +msgstr "AUTOR" + +#. type: Plain text +#: apt.8:56 +msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." +msgstr "apt wurde vom APT-Team E<lt>apt@packages.debian.orgE<gt> geschrieben." + +#. type: Plain text +#: apt.ent:2 +msgid "<!-- -*- mode: sgml; mode: fold -*- -->" +msgstr "<!-- -*- mode: sgml; mode: fold -*- -->" + +#. type: Plain text +#: apt.ent:10 +msgid "" +"<!-- Some common paths.. --> <!ENTITY docdir \"/usr/share/doc/apt/\"> <!" +"ENTITY guidesdir \"/usr/share/doc/apt-doc/\"> <!ENTITY configureindex " +"\"<filename>&docdir;examples/configure-index.gz</filename>\"> <!ENTITY " +"aptconfdir \"<filename>/etc/apt.conf</filename>\"> <!ENTITY statedir \"/var/" +"lib/apt\"> <!ENTITY cachedir \"/var/cache/apt\">" +msgstr "" +"<!-- Einige h??ufige Pfade ... --> <!ENTITY docdir \"/usr/share/doc/apt/\"> " +"<!ENTITY guidesdir \"/usr/share/doc/apt-doc/\"> <!ENTITY configureindex " +"\"<filename>&docdir;examples/configure-index.gz</filename>\"> <!ENTITY " +"aptconfdir \"<filename>/etc/apt.conf</filename>\"> <!ENTITY statedir \"/var/" +"lib/apt\"> <!ENTITY cachedir \"/var/cache/apt\">" + +#. type: Plain text +#: apt.ent:17 +#, no-wrap +msgid "" +"<!-- Cross references to other man pages -->\n" +"<!ENTITY apt-conf \"<citerefentry>\n" +" <refentrytitle><filename>apt.conf</filename></refentrytitle>\n" +" <manvolnum>5</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!-- Querverweise auf andere Handbuchseiten -->\n" +"<!ENTITY apt-conf \"<citerefentry>\n" +" <refentrytitle><filename>apt.conf</filename></refentrytitle>\n" +" <manvolnum>5</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:23 +#, no-wrap +msgid "" +"<!ENTITY apt-get \"<citerefentry>\n" +" <refentrytitle><command>apt-get</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY apt-get \"<citerefentry>\n" +" <refentrytitle><command>apt-get</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:29 +#, no-wrap +msgid "" +"<!ENTITY apt-config \"<citerefentry>\n" +" <refentrytitle><command>apt-config</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY apt-config \"<citerefentry>\n" +" <refentrytitle><command>apt-config</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:35 +#, no-wrap +msgid "" +"<!ENTITY apt-cdrom \"<citerefentry>\n" +" <refentrytitle><command>apt-cdrom</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY apt-cdrom \"<citerefentry>\n" +" <refentrytitle><command>apt-cdrom</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:41 +#, no-wrap +msgid "" +"<!ENTITY apt-cache \"<citerefentry>\n" +" <refentrytitle><command>apt-cache</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY apt-cache \"<citerefentry>\n" +" <refentrytitle><command>apt-cache</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:47 +#, no-wrap +msgid "" +"<!ENTITY apt-preferences \"<citerefentry>\n" +" <refentrytitle><command>apt_preferences</command></refentrytitle>\n" +" <manvolnum>5</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY apt-preferences \"<citerefentry>\n" +" <refentrytitle><command>apt_preferences</command></refentrytitle>\n" +" <manvolnum>5</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:53 +#, no-wrap +msgid "" +"<!ENTITY apt-key \"<citerefentry>\n" +" <refentrytitle><command>apt-key</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY apt-key \"<citerefentry>\n" +" <refentrytitle><command>apt-key</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:59 +#, no-wrap +msgid "" +"<!ENTITY apt-secure \"<citerefentry>\n" +" <refentrytitle>apt-secure</refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY apt-secure \"<citerefentry>\n" +" <refentrytitle>apt-secure</refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:65 +#, no-wrap +msgid "" +"<!ENTITY apt-ftparchive \"<citerefentry>\n" +" <refentrytitle><filename>apt-ftparchive</filename></refentrytitle>\n" +" <manvolnum>1</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY apt-ftparchive \"<citerefentry>\n" +" <refentrytitle><filename>apt-ftparchive</filename></refentrytitle>\n" +" <manvolnum>1</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:72 +#, no-wrap +msgid "" +"<!ENTITY sources-list \"<citerefentry>\n" +" <refentrytitle><filename>sources.list</filename></refentrytitle>\n" +" <manvolnum>5</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY sources-list \"<citerefentry>\n" +" <refentrytitle><filename>sources.list</filename></refentrytitle>\n" +" <manvolnum>5</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:78 +#, no-wrap +msgid "" +"<!ENTITY reportbug \"<citerefentry>\n" +" <refentrytitle><command>reportbug</command></refentrytitle>\n" +" <manvolnum>1</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY reportbug \"<citerefentry>\n" +" <refentrytitle><command>reportbug</command></refentrytitle>\n" +" <manvolnum>1</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:84 +#, no-wrap +msgid "" +"<!ENTITY dpkg \"<citerefentry>\n" +" <refentrytitle><command>dpkg</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY dpkg \"<citerefentry>\n" +" <refentrytitle><command>dpkg</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:90 +#, no-wrap +msgid "" +"<!ENTITY dpkg-buildpackage \"<citerefentry>\n" +" <refentrytitle><command>dpkg-buildpackage</command></refentrytitle>\n" +" <manvolnum>1</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY dpkg-buildpackage \"<citerefentry>\n" +" <refentrytitle><command>dpkg-buildpackage</command></refentrytitle>\n" +" <manvolnum>1</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:96 +#, no-wrap +msgid "" +"<!ENTITY gzip \"<citerefentry>\n" +" <refentrytitle><command>gzip</command></refentrytitle>\n" +" <manvolnum>1</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY gzip \"<citerefentry>\n" +" <refentrytitle><command>gzip</command></refentrytitle>\n" +" <manvolnum>1</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:102 +#, no-wrap +msgid "" +"<!ENTITY dpkg-scanpackages \"<citerefentry>\n" +" <refentrytitle><command>dpkg-scanpackages</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY dpkg-scanpackages \"<citerefentry>\n" +" <refentrytitle><command>dpkg-scanpackages</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:108 +#, no-wrap +msgid "" +"<!ENTITY dpkg-scansources \"<citerefentry>\n" +" <refentrytitle><command>dpkg-scansources</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY dpkg-scansources \"<citerefentry>\n" +" <refentrytitle><command>dpkg-scansources</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:114 +#, no-wrap +msgid "" +"<!ENTITY dselect \"<citerefentry>\n" +" <refentrytitle><command>dselect</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY dselect \"<citerefentry>\n" +" <refentrytitle><command>dselect</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:120 +#, no-wrap +msgid "" +"<!ENTITY aptitude \"<citerefentry>\n" +" <refentrytitle><command>aptitude</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY aptitude \"<citerefentry>\n" +" <refentrytitle><command>aptitude</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:126 +#, no-wrap +msgid "" +"<!ENTITY synaptic \"<citerefentry>\n" +" <refentrytitle><command>synaptic</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY synaptic \"<citerefentry>\n" +" <refentrytitle><command>synaptic</command></refentrytitle>\n" +" <manvolnum>8</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:132 +#, no-wrap +msgid "" +"<!ENTITY debsign \"<citerefentry>\n" +" <refentrytitle><command>debsign</command></refentrytitle>\n" +" <manvolnum>1</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY debsign \"<citerefentry>\n" +" <refentrytitle><command>debsign</command></refentrytitle>\n" +" <manvolnum>1</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:138 +#, no-wrap +msgid "" +"<!ENTITY debsig-verify \"<citerefentry>\n" +" <refentrytitle><command>debsig-verify</command></refentrytitle>\n" +" <manvolnum>1</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY debsig-verify \"<citerefentry>\n" +" <refentrytitle><command>debsig-verify</command></refentrytitle>\n" +" <manvolnum>1</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:144 +#, no-wrap +msgid "" +"<!ENTITY gpg \"<citerefentry>\n" +" <refentrytitle><command>gpg</command></refentrytitle>\n" +" <manvolnum>1</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY gpg \"<citerefentry>\n" +" <refentrytitle><command>gpg</command></refentrytitle>\n" +" <manvolnum>1</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:150 +#, no-wrap +msgid "" +"<!ENTITY gnome-apt \"<citerefentry>\n" +" <refentrytitle><command>gnome-apt</command></refentrytitle>\n" +" <manvolnum>1</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY gnome-apt \"<citerefentry>\n" +" <refentrytitle><command>gnome-apt</command></refentrytitle>\n" +" <manvolnum>1</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:156 +#, no-wrap +msgid "" +"<!ENTITY wajig \"<citerefentry>\n" +" <refentrytitle><command>wajig</command></refentrytitle>\n" +" <manvolnum>1</manvolnum>\n" +" </citerefentry>\"\n" +">\n" +msgstr "" +"<!ENTITY wajig \"<citerefentry>\n" +" <refentrytitle><command>wajig</command></refentrytitle>\n" +" <manvolnum>1</manvolnum>\n" +" </citerefentry>\"\n" +">\n" + +#. type: Plain text +#: apt.ent:168 +#, no-wrap +msgid "" +"<!-- Boiler plate docinfo section -->\n" +"<!ENTITY apt-docinfo \"\n" +" <refentryinfo>\n" +" <address><email>apt@packages.debian.org</email></address>\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" +msgstr "" +"<!-- Vorformatierter Textblock docinfo-Abschnitt -->\n" +"<!ENTITY apt-docinfo \"\n" +" <refentryinfo>\n" +" <address><email>apt@packages.debian.org</email></address>\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. Oktober 2008</date>\n" +" <productname>Linux</productname>\n" + +#. type: Plain text +#: apt.ent:171 +#, no-wrap +msgid "" +" </refentryinfo>\n" +"\"> \n" +msgstr "" +" </refentryinfo>\n" +"\"> \n" + +#. type: Plain text +#: apt.ent:177 +#, no-wrap +msgid "" +"<!ENTITY apt-email \"\n" +" <address>\n" +" <email>apt@packages.debian.org</email>\n" +" </address>\n" +"\">\n" +msgstr "" +"<!ENTITY apt-email \"\n" +" <address>\n" +" <email>apt@packages.debian.org</email>\n" +" </address>\n" +"\">\n" + +#. type: Plain text +#: apt.ent:185 +#, no-wrap +msgid "" +"<!ENTITY apt-author.jgunthorpe \"\n" +" <author>\n" +" <firstname>Jason</firstname>\n" +" <surname>Gunthorpe</surname>\n" +" <contrib></contrib>\n" +" </author>\n" +"\">\n" +msgstr "" +"<!ENTITY apt-author.jgunthorpe \"\n" +" <author>\n" +" <firstname>Jason</firstname>\n" +" <surname>Gunthorpe</surname>\n" +" <contrib></contrib>\n" +" </author>\n" +"\">\n" + +#. type: Plain text +#: apt.ent:193 +#, no-wrap +msgid "" +"<!ENTITY apt-author.moconnor \"\n" +" <author>\n" +" <firstname>Mike</firstname>\n" +" <surname>O'Connor</surname>\n" +" <contrib></contrib>\n" +" </author>\n" +"\">\n" +msgstr "" +"<!ENTITY apt-author.moconnor \"\n" +" <author>\n" +" <firstname>Mike</firstname>\n" +" <surname>O'Connor</surname>\n" +" <contrib></contrib>\n" +" </author>\n" +"\">\n" + +#. type: Plain text +#: apt.ent:200 +#, no-wrap +msgid "" +"<!ENTITY apt-author.team \"\n" +" <author>\n" +" <othername>APT team</othername>\n" +" <contrib></contrib>\n" +" </author>\n" +"\">\n" +msgstr "" +"<!ENTITY apt-author.team \"\n" +" <author>\n" +" <othername>APT-Team</othername>\n" +" <contrib></contrib>\n" +" </author>\n" +"\">\n" + +#. type: Plain text +#: apt.ent:204 apt.ent:215 +#, no-wrap +msgid "" +"<!ENTITY apt-product \"\n" +" <productname>Linux</productname>\n" +"\">\n" +msgstr "" +"<!ENTITY apt-product \"\n" +" <productname>Linux</productname>\n" +"\">\n" + +#. type: Plain text +#: apt.ent:211 +#, no-wrap +msgid "" +"<!ENTITY apt-copyright \"\n" +" <copyright>\n" +" <holder>Jason Gunthorpe</holder>\n" +" <year>1998-2001</year>\n" +" </copyright>\n" +"\">\n" +msgstr "" +"<!ENTITY apt-copyright \"\n" +" <copyright>\n" +" <holder>Jason Gunthorpe</holder>\n" +" <year>1998-2001</year>\n" +" </copyright>\n" +"\">\n" + +#. type: Plain text +#: apt.ent:221 +#, no-wrap +msgid "" +"<!ENTITY apt-qapage \"\n" +"\t<para>\n" +"\t\t<ulink url='http://packages.qa.debian.org/a/apt.html'>QA Page</ulink>\n" +"\t</para>\n" +"\">\n" +msgstr "" +"<!ENTITY apt-qapage \"\n" +"\t<para>\n" +"\t\t<ulink url='http://packages.qa.debian.org/a/apt.html'>QA-Seite</ulink>\n" +"\t</para>\n" +"\">\n" + +#. type: Plain text +#: apt.ent:232 +#, no-wrap +msgid "" +"<!-- Boiler plate Bug reporting section -->\n" +"<!ENTITY manbugs \"\n" +" <refsect1><title>Bugs\n" +" APT bug page. \n" +" If you wish to report a bug in APT, please see\n" +" /usr/share/doc/debian/bug-reporting.txt or the\n" +" &reportbug; command.\n" +" \n" +" \n" +"\">\n" +msgstr "" +"\n" +"Fehler\n" +" APT-Fehlerseite. \n" +" Wenn Sie einen Fehler in APT berichten m??chten, lesen Sie bitte\n" +" /usr/share/doc/debian/bug-reporting.txt oder den\n" +" &reportbug;-Befehl. Verfassen Sie Fehlerberichte bitte auf Englisch.\n" +" \n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:240 +#, no-wrap +msgid "" +"\n" +"Author\n" +" APT was written by the APT team apt@packages.debian.org.\n" +" \n" +" \n" +"\">\n" +msgstr "" +"\n" +"Autor\n" +" APT wurde vom APT-Team geschrieben apt@packages.debian.org.\n" +" \n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:250 +#, no-wrap +msgid "" +"\n" +"\n" +" \n" +" Show a short usage summary.\n" +" \n" +" \n" +" \n" +msgstr "" +"\n" +"\n" +" \n" +" Ein kurze Aufrufzusammenfassung zeigen.\n" +" \n" +" \n" +" \n" + +#. type: Plain text +#: apt.ent:258 +#, no-wrap +msgid "" +" \n" +" \n" +" \n" +" Show the program version.\n" +" \n" +" \n" +" \n" +msgstr "" +" \n" +" \n" +" \n" +" Die Version des Programms anzeigen.\n" +" \n" +" \n" +" \n" + +#. type: Plain text +#: apt.ent:268 +#, no-wrap +msgid "" +" \n" +" \n" +" \n" +" Configuration File; Specify a configuration file to use. \n" +" The program will read the default configuration file and then this \n" +" configuration file. See &apt-conf; for syntax information. \n" +" \n" +" \n" +" \n" +msgstr "" +" \n" +" \n" +" \n" +" 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" +" \n" +" \n" +" \n" + +#. type: Plain text +#: apt.ent:280 +#, no-wrap +msgid "" +" \n" +" \n" +" \n" +" Set a Configuration Option; This will set an arbitrary\n" +" configuration option. The syntax is .\n" +" and can be used multiple\n" +" times to set different options.\n" +" \n" +" \n" +" \n" +"\">\n" +msgstr "" +" \n" +" \n" +" \n" +" Eine Konfigurationsoption setzen; Dies wird eine beliebige\n" +" Konfigurationsoption setzen. Die Syntax lautet .\n" +" und kann mehrfach benutzt\n" +" werden, um verschiedene Optionen zu setzen.\n" +" \n" +" \n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:291 +#, no-wrap +msgid "" +"\n" +"All command line options may be set using the configuration file, the\n" +" descriptions indicate the configuration option to set. For boolean\n" +" options you can override the config file by using something like \n" +" ,, \n" +" or several other variations.\n" +" \n" +"\">\n" +msgstr "" +"\n" +"Alle Befehlszeilenoptionen k??nnen durch die Konfigurationsdatei gesetzt\n" +" werden, die Beschreibung gibt die zu setzende Option an. F??r\n" +" boolesche Optionen k??nnen Sie die Konfigurationsdatei ??berschreiben,\n" +" indem Sie etwas wie , ,\n" +" oder etliche weitere Varianten benutzen.\n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:297 +#, no-wrap +msgid "" +"/etc/apt/apt.conf\n" +" APT configuration file.\n" +" Configuration Item: Dir::Etc::Main.\n" +" \n" +msgstr "" +"/etc/apt/apt.conf\n" +" APT-Konfigurationsdatei.\n" +" Konfigurationselement: Dir::Etc::Main.\n" +" \n" + +#. type: Plain text +#: apt.ent:303 +#, no-wrap +msgid "" +" /etc/apt/apt.conf.d/\n" +" APT configuration file fragments.\n" +" Configuration Item: Dir::Etc::Parts.\n" +" \n" +"\">\n" +msgstr "" +" /etc/apt/apt.conf.d/\n" +" APT-Konfigurationsdatei-Fragmente.\n" +" Konfigurationselement: Dir::Etc::Parts.\n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:309 +#, no-wrap +msgid "" +"&cachedir;/archives/\n" +" Storage area for retrieved package files.\n" +" Configuration Item: Dir::Cache::Archives.\n" +" \n" +msgstr "" +"&cachedir;/archives/\n" +" Speicherbereich f??r aufgerufene Paketdateien.\n" +" Konfigurationselement: Dir::Cache::Archives.\n" +" \n" + +#. type: Plain text +#: apt.ent:315 +#, no-wrap +msgid "" +" &cachedir;/archives/partial/\n" +" Storage area for package files in transit.\n" +" Configuration Item: Dir::Cache::Archives (implicit partial). \n" +" \n" +"\">\n" +msgstr "" +" &cachedir;/archives/partial/\n" +" Speicherbereich f??r Paketdateien auf dem Transportweg.\n" +" Konfigurationselement: Dir::Cache::Archives (implizit teilweise). \n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:325 +#, no-wrap +msgid "" +"/etc/apt/preferences\n" +" Version preferences file.\n" +" This is where you would specify "pinning",\n" +" i.e. a preference to get certain packages\n" +" from a separate source\n" +" or from a different version of a distribution.\n" +" Configuration Item: Dir::Etc::Preferences.\n" +" \n" +msgstr "" +"/etc/apt/preferences\n" +" Version-Einstellungsdatei.\n" +" Hier k??nnen Sie "pinning" angeben, d.h. eine Einstellung,\n" +" um bestimmte Pakete aus einer separaten Quelle oder von einer\n" +" anderen Version einer Distribution zu erhalten.\n" +" Konfigurationselement: Dir::Etc::Preferences.\n" +" \n" + +#. type: Plain text +#: apt.ent:331 +#, no-wrap +msgid "" +" /etc/apt/preferences.d/\n" +" File fragments for the version preferences.\n" +" Configuration Item: Dir::Etc::PreferencesParts.\n" +" \n" +"\">\n" +msgstr "" +" /etc/apt/preferences.d/\n" +" Dateifragmente f??r die Versionseinstellungen.\n" +" Konfigurationselement: Dir::Etc::PreferencesParts.\n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:337 +#, no-wrap +msgid "" +"/etc/apt/sources.list\n" +" Locations to fetch packages from.\n" +" Configuration Item: Dir::Etc::SourceList.\n" +" \n" +msgstr "" +"/etc/apt/sources.list\n" +" Orte, von denen Pakete geladen werden.\n" +" Konfigurationselement: Dir::Etc::SourceList.\n" +" \n" + +#. type: Plain text +#: apt.ent:343 +#, no-wrap +msgid "" +" /etc/apt/sources.list.d/\n" +" File fragments for locations to fetch packages from.\n" +" Configuration Item: Dir::Etc::SourceParts.\n" +" \n" +"\">\n" +msgstr "" +" /etc/apt/sources.list.d/\n" +" Dateifragmente f??r Orte, von denen Pakete geladen werden.\n" +" Konfigurationselement: Dir::Etc::SourceParts.\n" +" \n" +"\">\n" + +#. type: Plain text +#: apt.ent:350 +#, no-wrap +msgid "" +"&statedir;/lists/\n" +" Storage area for state information for each package resource specified in\n" +" &sources-list;\n" +" Configuration Item: Dir::State::Lists.\n" +" \n" +msgstr "" +"&statedir;/lists/\n" +" Speicherbereich f??r Statusinformationen jeder\n" +" in &sources-list; angegebenen Paketquelle\n" +" Konfigurationselement: Dir::State::Lists.\n" +" \n" + +#. type: Plain text +#: apt.ent:355 +#, no-wrap +msgid "" +" &statedir;/lists/partial/\n" +" Storage area for state information in transit.\n" +" Configuration Item: Dir::State::Lists (implicit partial).\n" +" \n" +"\">\n" +msgstr "" +" &statedir;/lists/partial/\n" +" Speicherbereich f??r Statusinformationen auf dem Transportweg.\n" +" Konfigurationselement: Dir::State::Lists (implizit teilweise).\n" +" \n" +"\">\n" + +#. The last update date +#. type: Content of: +#: apt-cache.8.xml:13 apt-config.8.xml:13 apt-extracttemplates.1.xml:13 +#: apt-ftparchive.1.xml:13 apt-sortpkgs.1.xml:13 sources.list.5.xml:13 +msgid "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 29 " +"February 2004" +msgstr "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; " +"29. Februar 2004" + +#. type: Content of: +#: apt-cache.8.xml:22 apt-cache.8.xml:29 +msgid "apt-cache" +msgstr "apt-cache" + +#. type: Content of: +#: apt-cache.8.xml:23 apt-cdrom.8.xml:22 apt-config.8.xml:23 apt-get.8.xml:23 +#: apt-key.8.xml:15 apt-mark.8.xml:23 apt-secure.8.xml:15 +msgid "8" +msgstr "8" + +#. type: Content of: +#: apt-cache.8.xml:24 apt-cdrom.8.xml:23 apt-config.8.xml:24 +#: apt-extracttemplates.1.xml:24 apt-ftparchive.1.xml:24 apt-get.8.xml:24 +#: apt-key.8.xml:16 apt-mark.8.xml:24 apt-secure.8.xml:16 +#: apt-sortpkgs.1.xml:24 apt.conf.5.xml:30 apt_preferences.5.xml:23 +#: sources.list.5.xml:24 +msgid "APT" +msgstr "APT" + +#. type: Content of: +#: apt-cache.8.xml:30 +msgid "APT package handling utility -- cache manipulator" +msgstr "" +"APT-Werkzeug zur Handhabung von Paketen -- Zwischenspeichermanipulierer" + +#. type: Content of: +#: apt-cache.8.xml:36 +msgid "" +"apt-cache " +"add file gencaches showpkg pkg " +"showsrc pkg stats dump dumpavail unmet search regex show pkg depends pkg " +"rdepends pkg pkgnames prefix dotty pkg " +"xvcg pkg policy pkgs madison pkgs " +msgstr "" +"apt-cache " +" add Datei gencaches " +"showpkg pkg showsrc pkg stats dump dumpavail unmet search regex show pkg depends " +"pkg rdepends Paket pkgnames Pr??fix dotty Paket " +"xvcg Paket policy Pakete madison Pakete " + +#. type: Content of: +#: apt-cache.8.xml:62 apt-cdrom.8.xml:47 apt-config.8.xml:47 +#: apt-extracttemplates.1.xml:43 apt-ftparchive.1.xml:55 apt-get.8.xml:125 +#: apt-key.8.xml:34 apt-mark.8.xml:52 apt-secure.8.xml:40 +#: apt-sortpkgs.1.xml:44 apt.conf.5.xml:39 apt_preferences.5.xml:33 +#: sources.list.5.xml:33 +msgid "Description" +msgstr "Beschreibung" + +#. type: Content of: <refentry><refsect1><para> +#: apt-cache.8.xml:63 +msgid "" +"<command>apt-cache</command> performs a variety of operations on APT's " +"package cache. <command>apt-cache</command> does not manipulate the state of " +"the system but does provide operations to search and generate interesting " +"output from the package metadata." +msgstr "" +"<command>apt-cache</command> f??hrt eine Vielzahl von Operationen auf dem " +"Paketzwischenspeicher von APT durch. <command>apt-cache</command> " +"manipuliert nicht den Status des Systems, stellt aber Operationen zum Suchen " +"und Generieren von interessanten Ausgaben der Paket-Metadaten bereit." + +#. type: Content of: <refentry><refsect1><para> +#: apt-cache.8.xml:68 apt-get.8.xml:131 +msgid "" +"Unless the <option>-h</option>, or <option>--help</option> option is given, " +"one of the commands below must be present." +msgstr "" +"Sofern nicht die <option>-h</option>-, oder <option>--help</option>-Option " +"angegeben ist, muss einer der unten aufgef??hrten Befehle vorkommen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:72 +msgid "add <replaceable>file(s)</replaceable>" +msgstr "add <replaceable>Datei(en)</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:73 +msgid "" +"<literal>add</literal> adds the named package index files to the package " +"cache. This is for debugging only." +msgstr "" +"<literal>add</literal> f??gt die genannten Paket-Index-Dateien zum " +"Paketzwischenspeicher hinzu. Dies dient nur der Fehlersuche." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:77 +msgid "gencaches" +msgstr "gencaches" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:78 +msgid "" +"<literal>gencaches</literal> performs the same operation as <command>apt-get " +"check</command>. It builds the source and package caches from the sources in " +"&sources-list; and from <filename>/var/lib/dpkg/status</filename>." +msgstr "" +"<literal>gencaches</literal> f??hrt die gleichen Operationen wie " +"<command>apt-get check</command> durch. Es bildet die Quellen- und " +"Paketzwischenspeicher aus den Quellen in &sources-list; und von <filename>/" +"var/lib/dpkg/status</filename>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:84 +msgid "showpkg <replaceable>pkg(s)</replaceable>" +msgstr "showpkg <replaceable>Paket(e)</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:85 +msgid "" +"<literal>showpkg</literal> displays information about the packages listed on " +"the command line. Remaining arguments are package names. The available " +"versions and reverse dependencies of each package listed are listed, as well " +"as forward dependencies for each version. Forward (normal) dependencies are " +"those packages upon which the package in question depends; reverse " +"dependencies are those packages that depend upon the package in question. " +"Thus, forward dependencies must be satisfied for a package, but reverse " +"dependencies need not be. For instance, <command>apt-cache showpkg " +"libreadline2</command> would produce output similar to the following:" +msgstr "" +"<literal>showpkg</literal> zeigt Informationen ??ber die auf der " +"Befehlszeile aufgelisteten Pakete. Die ??brigen Argumente sind Paketnamen. " +"Die verf??gbaren Versionen und R??ckw??rtsabh??ngigkeiten jedes aufgef??" +"hrten Paketes werden ebenso aufgelistet, wie die Vorw??rtsabh??ngigkeiten " +"jeder Version. Vorw??rtsabh??ngigkeiten (normale Abh??ngigkeiten) sind jene " +"Pakete, von denen das betreffende Paket abh??ngt. R??ckw??rtsabh??ngigkeiten " +"sind jene Pakete, die von dem betreffenden Paket abh??ngen. Deshalb m??ssen " +"Vorw??rtsabh??ngigkeiten f??r das Paket erf??llt werden, R??ckw??rtsabh??" +"ngigkeiten allerdings nicht. <command>apt-cache showpkg libreadline2</" +"command> w??rde zum Beispiel eine Ausgabe ??hnlich der folgenden erzeugen:" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> +#: apt-cache.8.xml:97 +#, no-wrap +msgid "" +"Package: libreadline2\n" +"Versions: 2.1-12(/var/state/apt/lists/foo_Packages),\n" +"Reverse Depends: \n" +" libreadlineg2,libreadline2\n" +" libreadline2-altdev,libreadline2\n" +"Dependencies:\n" +"2.1-12 - libc5 (2 5.4.0-0) ncurses3.0 (0 (null))\n" +"Provides:\n" +"2.1-12 - \n" +"Reverse Provides: \n" +msgstr "" +"Package: libreadline2\n" +"Versions: 2.1-12(/var/state/apt/lists/foo_Packages),\n" +"Reverse Depends: \n" +" libreadlineg2,libreadline2\n" +" libreadline2-altdev,libreadline2\n" +"Dependencies:\n" +"2.1-12 - libc5 (2 5.4.0-0) ncurses3.0 (0 (null))\n" +"Provides:\n" +"2.1-12 - \n" +"Reverse Provides: \n" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:109 +msgid "" +"Thus it may be seen that libreadline2, version 2.1-12, depends on libc5 and " +"ncurses3.0 which must be installed for libreadline2 to work. In turn, " +"libreadlineg2 and libreadline2-altdev depend on libreadline2. If " +"libreadline2 is installed, libc5 and ncurses3.0 (and ldso) must also be " +"installed; libreadlineg2 and libreadline2-altdev do not have to be " +"installed. For the specific meaning of the remainder of the output it is " +"best to consult the apt source code." +msgstr "" +"Dadurch sieht man, dass libreadline2, Version 2.1-12, von libc5 und " +"ncurses3.0 abh??ngt, die installiert sein m??ssen, damit libreadline2 " +"funktioniert. Im Gegenzug h??ngen libreadlineg2 und libreadline2-altdev von " +"libreadline2 ab. Wenn libreadline2 installiert ist, m??ssen au??erdem libc5 " +"und ncurses3.0 (und ldso) installiert sein. F??r die spezielle Bedeutung der " +"restlichen Ausgabe ist es am besten, den apt-Quelltext zu konsultieren." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:118 +msgid "stats" +msgstr "stats" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:118 +msgid "" +"<literal>stats</literal> displays some statistics about the cache. No " +"further arguments are expected. Statistics reported are:" +msgstr "" +"<literal>stats</literal> zeigt einige Statistiken ??ber den " +"Zwischenspeicher. Es werden keine weiteren Argumente erwartet. Berichtete " +"Statistiken sind:" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:121 +msgid "" +"<literal>Total package names</literal> is the number of package names found " +"in the cache." +msgstr "" +"<literal>Total package names</literal> ist die Gesamtzahl der im " +"Zwischenspeicher gefundenen Pakete." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:125 +msgid "" +"<literal>Normal packages</literal> is the number of regular, ordinary " +"package names; these are packages that bear a one-to-one correspondence " +"between their names and the names used by other packages for them in " +"dependencies. The majority of packages fall into this category." +msgstr "" +"<literal>Normal packages</literal> ist die Anzahl der regul??ren, gew??" +"hnlichen Paketnamen. Diese sind Pakete, die eine Eins-zu-Eins-Entsprechung " +"zwischen ihren Namen und den Namen, die andere Pakete f??r ihre Abh??" +"ngigkeiten benutzen, tragen. Die Mehrzahl der Pakete f??llt in diese " +"Kategorie." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:131 +msgid "" +"<literal>Pure virtual packages</literal> is the number of packages that " +"exist only as a virtual package name; that is, packages only \"provide\" the " +"virtual package name, and no package actually uses the name. For instance, " +"\"mail-transport-agent\" in the Debian GNU/Linux system is a pure virtual " +"package; several packages provide \"mail-transport-agent\", but there is no " +"package named \"mail-transport-agent\"." +msgstr "" +"<literal>Pure virtual packages</literal> ist die Anzahl der Pakete, die nur " +"als ein virtueller Paketname existieren. Das kommt vor, wenn Pakete nur den " +"virtuellen Paketnamen ??bereitstellen?? und aktuell kein Paket den Namen " +"benutzt. Zum Beispiel ist im Debian-GNU/Linux-System ??mail-transport-" +"agent?? ein rein virtuelles Paket. Mehrere Pakete stellen ??mail-transport-" +"agent?? bereit, aber es gibt kein Paket mit dem Namen ??mail-transport-" +"agent??." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:139 +msgid "" +"<literal>Single virtual packages</literal> is the number of packages with " +"only one package providing a particular virtual package. For example, in the " +"Debian GNU/Linux system, \"X11-text-viewer\" is a virtual package, but only " +"one package, xless, provides \"X11-text-viewer\"." +msgstr "" +"<literal>Single virtual packages</literal> ist die Anzahl der Pakete mit nur " +"einem Paket, das ein bestimmtes virtuelles Paket bereitstellt. ??X11-text-" +"viewer?? ist zum Beispiel im Debian-GNU/Linux-System ein virtuelles Paket, " +"aber nur ein Paket, xless, stellt ??X11-text-viewer?? bereit." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:145 +msgid "" +"<literal>Mixed virtual packages</literal> is the number of packages that " +"either provide a particular virtual package or have the virtual package name " +"as the package name. For instance, in the Debian GNU/Linux system, \"debconf" +"\" is both an actual package, and provided by the debconf-tiny package." +msgstr "" +"<literal>Mixed virtual packages</literal> ist die Anzahl der Pakete, die " +"entweder ein bestimmtes virtuelles Paket bereitstellen oder den virtuellen " +"Paketnamen als Paketnamen haben. ??debconf?? ist zum Beispiel sowohl ein " +"tats??chliches Paket, wird aber auch vom Paket debconf-tiny bereitgestellt." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:152 +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." +msgstr "" +"<literal>Missing</literal> ist die Anzahl der Paketnamen, auf die eine Abh??" +"ngigkeit verweist, die aber von keinem Paket bereitgestellt werden. Fehlende " +"Pakete k??nnten auftauchen, wenn nicht auf eine vollst??ndige Distribution " +"zugegriffen oder ein (echtes oder virtuelles) Paket aus einer Distribution " +"gestrichen wurde. Normalerweise wird auf sie von Conflicts oder Breaks-" +"Angaben Bezug genommen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:159 +msgid "" +"<literal>Total distinct</literal> versions is the number of package versions " +"found in the cache; this value is therefore at least equal to the number of " +"total package names. If more than one distribution (both \"stable\" and " +"\"unstable\", for instance), is being accessed, this value can be " +"considerably larger than the number of total package names." +msgstr "" +"<literal>Total distinct</literal> Versionen ist die Anzahl der im " +"Zwischenspeicher gefundenen Paketversionen. Dieser Wert ist daher meistens " +"gleich der Anzahl der gesamten Paketnamen. Wenn auf mehr als eine " +"Distribution (zum Beispiel ??stable?? und ??unstable?? zusammen) zugegriffen " +"wird, kann dieser Wert deutlich gr????er als die gesamte Anzahl der " +"Paketnamen sein." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> +#: apt-cache.8.xml:166 +msgid "" +"<literal>Total dependencies</literal> is the number of dependency " +"relationships claimed by all of the packages in the cache." +msgstr "" +"<literal>Total dependencies</literal> ist die Anzahl der Abh??" +"ngigkeitsbeziehungen, den alle Pakete im Zwischenspeicher beanspruchen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:173 +msgid "showsrc <replaceable>pkg(s)</replaceable>" +msgstr "showsrc <replaceable>Paket(e)</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:174 +msgid "" +"<literal>showsrc</literal> displays all the source package records that " +"match the given package names. All versions are shown, as well as all " +"records that declare the name to be a Binary." +msgstr "" +"<literal>showsrc</literal> zeigt alle Quellpaketdatens??tze, die den " +"angegebenen Paketnamen entsprechen. Alle Versionen werden ebenso angezeigt, " +"wie alle Datens??tze, die den Namen f??r ein Programm deklarieren." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:179 apt-config.8.xml:84 +msgid "dump" +msgstr "dump" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:180 +msgid "" +"<literal>dump</literal> shows a short listing of every package in the cache. " +"It is primarily for debugging." +msgstr "" +"<literal>dump</literal> zeigt einen kurzen Programmausdruck von jedem Paket " +"im Zwischenspeicher. Es dient in erster Linie der Fehlersuche." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:184 +msgid "dumpavail" +msgstr "dumpavail" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:185 +msgid "" +"<literal>dumpavail</literal> prints out an available list to stdout. This is " +"suitable for use with &dpkg; and is used by the &dselect; method." +msgstr "" +"<literal>dumpavail</literal> gibt eine verf??gbare Liste auf stdout aus. " +"Dies ist geeignet f??r die Benutzung mit &dpkg; und wird f??r die &dselect;-" +"Methode benutzt." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:189 +msgid "unmet" +msgstr "unmet" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:190 +msgid "" +"<literal>unmet</literal> displays a summary of all unmet dependencies in the " +"package cache." +msgstr "" +"<literal>unmet</literal> zeigt die Zusammenfassung aller unerf??llten Abh??" +"ngigkeiten im Paketzwischenspeicher." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:194 +msgid "show <replaceable>pkg(s)</replaceable>" +msgstr "show <replaceable>Paket(e)</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:195 +msgid "" +"<literal>show</literal> performs a function similar to <command>dpkg --print-" +"avail</command>; it displays the package records for the named packages." +msgstr "" +"<literal>show</literal> f??hrt eine Funktion aus, die <command>dpkg --print-" +"avail</command> ??hnlich ist. Es zeigt die Paketdatens??tze f??r die " +"genannten Pakete." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:200 +msgid "search <replaceable>regex [ regex ... ]</replaceable>" +msgstr "search <replaceable>regex [ regex ... ]</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:201 +msgid "" +"<literal>search</literal> performs a full text search on all available " +"package lists for the POSIX regex pattern given, see " +"<citerefentry><refentrytitle><command>regex</command></refentrytitle> " +"<manvolnum>7</manvolnum></citerefentry>. It searches the package names and " +"the descriptions for an occurrence of the regular expression and prints out " +"the package name and the short description, including virtual package " +"names. If <option>--full</option> is given then output identical to " +"<literal>show</literal> is produced for each matched package, and if " +"<option>--names-only</option> is given then the long description is not " +"searched, only the package name is." +msgstr "" +"<literal>search</literal> f??hrt eine Volltextsuche in der Liste aller verf??" +"gbaren Pakete f??r das gegebene POSIX-regex-Muster durch, siehe " +"<citerefentry><refentrytitle><command>regex</command></refentrytitle> " +"<manvolnum>7</manvolnum></citerefentry>. Es durchsucht die Paketnamen und " +"die Beschreibungen nach einem Vorkommen des regul??ren Ausdrucks und gibt " +"den Paketnamen mit einer kurzen Beschreibung, einschlie??lich virtueller " +"Paketnamen, aus. Wenn <option>--full</option> angegeben wurde, ist die " +"Ausgabe gleich der, die <literal>show</literal> f??r jedes Paket erzeugt und " +"wenn <option>--names-only</option> angegeben wurde, wird die lange " +"Beschreibung nicht durchsucht, sondern nur der Paketname." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:214 +msgid "" +"Separate arguments can be used to specify multiple search patterns that are " +"and'ed together." +msgstr "" +"Separate Argumente k??nnen benutzt werden, um mehrere Suchmuster anzugeben, " +"die ??und??-verkn??pft werden." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:218 +msgid "depends <replaceable>pkg(s)</replaceable>" +msgstr "depends <replaceable>Paket(e)</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:219 +msgid "" +"<literal>depends</literal> shows a listing of each dependency a package has " +"and all the possible other packages that can fulfill that dependency." +msgstr "" +"<literal>depends</literal> zeigt eine Liste von jeder Abh??ngigkeit, die ein " +"Paket hat und alle m??glichen anderen Pakete, die die Abh??ngigkeit erf??" +"llen k??nnen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:223 +msgid "rdepends <replaceable>pkg(s)</replaceable>" +msgstr "rdepends <replaceable>Paket(e)</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:224 +msgid "" +"<literal>rdepends</literal> shows a listing of each reverse dependency a " +"package has." +msgstr "" +"<literal>rdepends</literal> zeigt eine Liste von jeder R??ckw??rtsabh??" +"ngigkeit, die ein Paket hat." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:228 +msgid "pkgnames <replaceable>[ prefix ]</replaceable>" +msgstr "pkgnames <replaceable>[ Pr??fix ]</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:229 +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 " +"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." +msgstr "" +"Dieser Befehl gibt den Namen jedes Paketes aus, das APT kennt. Das optionale " +"Argument ist ein passendes Pr??fix, um die Namensliste zu filtern. Die " +"Ausgabe ist geeignet f??r die Benutzung in der Tabulatorvervollst??ndigung " +"in der Shell. Die Ausgabe wird extrem schnell generiert. Dieser Befehl wird " +"am besten mit der <option>--generate</option>-Option benutzt." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:234 +msgid "" +"Note that a package which APT knows of is not nessasarily available to " +"download, installable or installed, e.g. virtual packages are also listed in " +"the generated list." +msgstr "" +"Beachten Sie, dass ein Paket, das APT kennt, nicht notwendigerweise zum " +"Herunterladen verf??gbar, installierbar oder installiert ist, virtuelle " +"Pakete sind z.B. auch in der generierten Liste aufgef??hrt." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:239 +msgid "dotty <replaceable>pkg(s)</replaceable>" +msgstr "dotty <replaceable>Paket(e)</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:240 +msgid "" +"<literal>dotty</literal> takes a list of packages on the command line and " +"generates output suitable for use by dotty from the <ulink url=\"http://www." +"research.att.com/sw/tools/graphviz/\">GraphViz</ulink> package. The result " +"will be a set of nodes and edges representing the relationships between the " +"packages. By default the given packages will trace out all dependent " +"packages; this can produce a very large graph. To limit the output to only " +"the packages listed on the command line, set the <literal>APT::Cache::" +"GivenOnly</literal> option." +msgstr "" +"<literal>dotty</literal> nimmt eine Paketliste auf der Befehlszeile entgegen " +"und generiert eine Ausgabe, die f??r die Benutzung durch dotty aus dem Paket " +"<ulink url=\"http://www.research.att.com/sw/tools/graphviz/\">GraphViz</" +"ulink> geeignet ist. Das Ergebnis ist eine Zusammenstellung von Knoten und " +"Kanten, die die Beziehung zwischen Paketen darstellen. Standardm????ig " +"werden alle abh??ngigen Pakete ausfindig gemacht. Dies kann zu einem sehr " +"gro??en Schaubild f??hren. Um die Ausgabe auf die Pakete zu beschr??nken, " +"die auf der Befehlszeile eingegeben wurden, setzen Sie die Option " +"<literal>APT::Cache::GivenOnly</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:249 +msgid "" +"The resulting nodes will have several shapes; normal packages are boxes, " +"pure provides are triangles, mixed provides are diamonds, missing packages " +"are hexagons. Orange boxes mean recursion was stopped [leaf packages], blue " +"lines are pre-depends, green lines are conflicts." +msgstr "" +"Die resultierenden Knoten haben mehrere Formen. Normale Pakete sind K??" +"stchen, reine Bereitstellungen sind Dreiecke, gemischte Bereitstellungen " +"sind Diamanten, fehlende Pakete sind Sechsecke. Orange K??stchen bedeuten, " +"dass die Rekursion beendet wurde [Blattpakete], blaue Linien sind Pre-" +"depends, gr??ne Linien sind Konflikte." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:254 +msgid "Caution, dotty cannot graph larger sets of packages." +msgstr "" +"Vorsicht, dotty kann keine gr????eren Zusammenstellungen von Paketen " +"grafisch darstellen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:257 +msgid "xvcg <replaceable>pkg(s)</replaceable>" +msgstr "xvcg <replaceable>Paket(e)</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:258 +msgid "" +"The same as <literal>dotty</literal>, only for xvcg from the <ulink url=" +"\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." +msgstr "" +"Das gleiche wie <literal>dotty</literal>, nur f??r xvcg vom <ulink url=" +"\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG-Werkzeug</" +"ulink>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:262 +msgid "policy <replaceable>[ pkg(s) ]</replaceable>" +msgstr "policy <replaceable>[ Paket(e) ]</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:263 +msgid "" +"<literal>policy</literal> is meant to help debug issues relating to the " +"preferences file. With no arguments it will print out the priorities of each " +"source. Otherwise it prints out detailed information about the priority " +"selection of the named package." +msgstr "" +"<literal>policy</literal> ist dazu gedacht, bei Fragen der Fehlersuche, die " +"sich auf die Einstellungsdatei beziehen, zu helfen. Ohne Argumente gibt es " +"die Priorit??ten von jeder Quelle aus. Ansonsten gibt es umfangreiche " +"Informationen ??ber die Priorit??tenauswahl der genannten Pakete aus." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:269 +msgid "madison <replaceable>/[ pkg(s) ]</replaceable>" +msgstr "madison <replaceable>/[ Paket(e) ]</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:270 +msgid "" +"<literal>apt-cache</literal>'s <literal>madison</literal> command attempts " +"to mimic the output format and a subset of the functionality of the Debian " +"archive management tool, <literal>madison</literal>. It displays available " +"versions of a package in a tabular format. Unlike the original " +"<literal>madison</literal>, it can only display information for the " +"architecture for which APT has retrieved package lists (<literal>APT::" +"Architecture</literal>)." +msgstr "" +"<literal>apt-cache</literal>s <literal>madison</literal>-Befehl versucht das " +"Ausgabeformat und eine Untermenge der Funktionalit??t des Debian-" +"Archivververwaltungswerkzeuges <literal>madison</literal> nachzuahmen. Es " +"zeigt verf??gbare Versionen eines Pakets in Tabellenform. Anders als das " +"Original <literal>madison</literal>, kann es nur Informationen f??r die " +"Architektur anzeigen, f??r die APT Paketlisten heruntergeladen hat " +"(<literal>APT::Architecture</literal>)." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:281 apt-config.8.xml:93 apt-extracttemplates.1.xml:56 +#: apt-ftparchive.1.xml:492 apt-get.8.xml:319 apt-mark.8.xml:89 +#: apt-sortpkgs.1.xml:54 apt.conf.5.xml:436 apt.conf.5.xml:458 +msgid "options" +msgstr "Optionen" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:285 +msgid "<option>-p</option>" +msgstr "<option>-p</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:285 +msgid "<option>--pkg-cache</option>" +msgstr "<option>--pkg-cache</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:286 +msgid "" +"Select the file to store the package cache. The package cache is the primary " +"cache used by all operations. Configuration Item: <literal>Dir::Cache::" +"pkgcache</literal>." +msgstr "" +"W??hlt die Datei zum Speichern des Paketzwischenspeichers. Der " +"Paketzwischenspeicher ist der prim??re Zwischenspeicher, der von allen " +"Operationen benutzt wird. Konfigurationselement: <literal>Dir::Cache::" +"pkgcache</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:291 apt-ftparchive.1.xml:535 apt-get.8.xml:376 +#: apt-sortpkgs.1.xml:58 +msgid "<option>-s</option>" +msgstr "<option>-s</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:291 +msgid "<option>--src-cache</option>" +msgstr "<option>--src-cache</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:292 +msgid "" +"Select the file to store the source cache. The source is used only by " +"<literal>gencaches</literal> and it stores a parsed version of the package " +"information from remote sources. When building the package cache the source " +"cache is used to avoid reparsing all of the package files. Configuration " +"Item: <literal>Dir::Cache::srcpkgcache</literal>." +msgstr "" +"W??hlt die Datei zum Speichern des Quellenzwischenspeichers. Die Quelle wird " +"nur von <literal>gencaches</literal> benutzt und sie speichert eine " +"ausgewertete Version der Paketinformationen von entfernt liegenden Quellen. " +"Wenn der Paketzwischenspeicher gebildet wird, wird der " +"Quellenzwischenspeicher benutzt, um ein erneutes Auswerten aller " +"Paketdateien zu vermeiden. Konfigurationselement: <literal>Dir::Cache::" +"srcpkgcache</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:299 apt-ftparchive.1.xml:509 apt-get.8.xml:366 +msgid "<option>-q</option>" +msgstr "<option>-q</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:299 apt-ftparchive.1.xml:509 apt-get.8.xml:366 +msgid "<option>--quiet</option>" +msgstr "<option>--quiet</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:300 +msgid "" +"Quiet; produces output suitable for logging, omitting progress indicators. " +"More q's will produce more quietness up to a maximum of 2. You can also use " +"<option>-q=#</option> to set the quietness level, overriding the " +"configuration file. Configuration Item: <literal>quiet</literal>." +msgstr "" +"Still; erzeugt eine Ausgabe, die f??r Protokollierung geeignet ist und " +"Fortschrittsanzeiger wegl??sst. Mehr ??q??s unterdr??cken mehr Ausgaben, bis " +"zu einem Maximum von 2. Sie k??nnen au??erdem <option>-q=#</option> " +"benutzen, um die Stillestufe zu setzen, was die Konfigurationsdatei ??" +"berschreibt. Konfigurationselement: <literal>quiet</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:306 +msgid "<option>-i</option>" +msgstr "<option>-i</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:306 +msgid "<option>--important</option>" +msgstr "<option>--important</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:307 +msgid "" +"Print only important dependencies; for use with unmet and depends. Causes " +"only Depends and Pre-Depends relations to be printed. Configuration Item: " +"<literal>APT::Cache::Important</literal>." +msgstr "" +"Nur wichtige Abh??ngigkeiten ausgeben. Zur Benutzung mit unmet und depends. " +"Veranlasst, dass nur Depends- und Pre-Depends-Beziehungen ausgegeben werden. " +"Konfigurationselement: <literal>APT::Cache::Important</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:312 apt-cdrom.8.xml:121 apt-get.8.xml:333 +msgid "<option>-f</option>" +msgstr "<option>-f</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:312 +msgid "<option>--full</option>" +msgstr "<option>--full</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:313 +msgid "" +"Print full package records when searching. Configuration Item: " +"<literal>APT::Cache::ShowFull</literal>." +msgstr "" +"Gibt die vollst??ndigen Paketdatens??tze beim Suchen aus. " +"Konfigurationselement: <literal>APT::Cache::ShowFull</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:317 apt-cdrom.8.xml:131 +msgid "<option>-a</option>" +msgstr "<option>-a</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:317 +msgid "<option>--all-versions</option>" +msgstr "<option>--all-versions</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:318 +msgid "" +"Print full records for all available versions. This is the default; to turn " +"it off, use <option>--no-all-versions</option>. If <option>--no-all-" +"versions</option> is specified, only the candidate version will displayed " +"(the one which would be selected for installation). This option is only " +"applicable to the <literal>show</literal> command. Configuration Item: " +"<literal>APT::Cache::AllVersions</literal>." +msgstr "" +"Gibt die vollst??ndigen Datens??tze f??r alle verf??gbaren Versionen aus. " +"Dies ist die Vorgabe. Um sie auszuschalten, benutzen Sie <option>--no-all-" +"versions</option>. Wenn <option>--no-all-versions</option> angegeben ist, " +"wird nur die Anw??rterversion angezeigt (die, die zur Installation ausgew??" +"hlt w??rde). Diese Option ist nur f??r den <literal>show</literal>-Befehl " +"anwendbar. Konfigurationselement: <literal>APT::Cache::AllVersions</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:326 +msgid "<option>-g</option>" +msgstr "<option>-g</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:326 +msgid "<option>--generate</option>" +msgstr "<option>--generate</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:327 +msgid "" +"Perform automatic package cache regeneration, rather than use the cache as " +"it is. This is the default; to turn it off, use <option>--no-generate</" +"option>. Configuration Item: <literal>APT::Cache::Generate</literal>." +msgstr "" +"F??hrt das Neuerstellen des Paketzwischenspeichers aus, anstatt den " +"Zwischenspeicher so zu benutzen, wie er ist. Das ist die Vorgabe. Um sie " +"auszuschalten benutzen Sie <option>--no-generate</option>. " +"Konfigurationselement: <literal>APT::Cache::Generate</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:332 +msgid "<option>--names-only</option>" +msgstr "<option>--names-only</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:332 apt-cdrom.8.xml:139 +msgid "<option>-n</option>" +msgstr "<option>-n</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:333 +msgid "" +"Only search on the package names, not the long descriptions. Configuration " +"Item: <literal>APT::Cache::NamesOnly</literal>." +msgstr "" +"Durchsucht nur die Paketnamen, nicht die Langbeschreibungen. " +"Konfigurationselement: <literal>APT::Cache::NamesOnly</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:337 +msgid "<option>--all-names</option>" +msgstr "<option>--all-names</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:338 +msgid "" +"Make <literal>pkgnames</literal> print all names, including virtual packages " +"and missing dependencies. Configuration Item: <literal>APT::Cache::" +"AllNames</literal>." +msgstr "" +"L??sst <literal>pkgnames</literal> alle Namen, einschlie??lich virtueller " +"Pakete und fehlender Abh??ngigkeiten, ausgeben. Konfigurationselement: " +"<literal>APT::Cache::AllNames</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:343 +msgid "<option>--recurse</option>" +msgstr "<option>--recurse</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:344 +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>." +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>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cache.8.xml:349 +msgid "<option>--installed</option>" +msgstr "<option>--installed</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cache.8.xml:351 +msgid "" +"Limit the output of <literal>depends</literal> and <literal>rdepends</" +"literal> to packages which are currently installed. Configuration Item: " +"<literal>APT::Cache::Installed</literal>." +msgstr "" +"Begrenzt die Ausgabe von <literal>depends</literal> und <literal>rdepends</" +"literal> auf Pakete, die aktuell installiert sind. Konfigurationselement: " +"<literal>APT::Cache::Installed</literal>." + +#. type: Content of: <refentry><refsect1><variablelist> +#: apt-cache.8.xml:356 apt-cdrom.8.xml:150 apt-config.8.xml:98 +#: apt-extracttemplates.1.xml:67 apt-ftparchive.1.xml:547 apt-get.8.xml:554 +#: apt-sortpkgs.1.xml:64 +msgid "&apt-commonoptions;" +msgstr "&apt-commonoptions;" + +#. type: Content of: <refentry><refsect1><title> +#: apt-cache.8.xml:361 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 +#: apt.conf.5.xml:968 apt_preferences.5.xml:615 +msgid "Files" +msgstr "Dateien" + +#. type: Content of: <refentry><refsect1><variablelist> +#: apt-cache.8.xml:363 +msgid "&file-sourceslist; &file-statelists;" +msgstr "&file-sourceslist; &file-statelists;" + +#. type: Content of: <refentry><refsect1><title> +#: apt-cache.8.xml:368 apt-cdrom.8.xml:155 apt-config.8.xml:103 +#: apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569 +#: apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181 +#: apt-sortpkgs.1.xml:69 apt.conf.5.xml:974 apt_preferences.5.xml:622 +#: sources.list.5.xml:221 +msgid "See Also" +msgstr "Siehe auch" + +#. type: Content of: <refentry><refsect1><para> +#: apt-cache.8.xml:369 +msgid "&apt-conf;, &sources-list;, &apt-get;" +msgstr "&apt-conf;, &sources-list;, &apt-get;" + +#. type: Content of: <refentry><refsect1><title> +#: apt-cache.8.xml:373 apt-cdrom.8.xml:160 apt-config.8.xml:108 +#: apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:567 apt-get.8.xml:575 +#: apt-mark.8.xml:137 apt-sortpkgs.1.xml:73 +msgid "Diagnostics" +msgstr "Diagnose" + +#. type: Content of: <refentry><refsect1><para> +#: apt-cache.8.xml:374 +msgid "" +"<command>apt-cache</command> returns zero on normal operation, decimal 100 " +"on error." +msgstr "" +"<command>apt-cache</command> gibt bei normalen Operationen 0 zur??ck, " +"dezimal 100 bei Fehlern." + +#. type: Content of: <refentry><refentryinfo> +#: apt-cdrom.8.xml:13 +msgid "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>14 " +"February 2004</date>" +msgstr "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; " +"<date>14. Februar 2004</date>" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-cdrom.8.xml:21 apt-cdrom.8.xml:28 +msgid "apt-cdrom" +msgstr "apt-cdrom" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-cdrom.8.xml:29 +msgid "APT CDROM management utility" +msgstr "APT-CDROM-Verwaltungswerkzeug" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-cdrom.8.xml:35 +msgid "" +"<command>apt-cdrom</command> <arg><option>-hvrmfan</option></arg> " +"<arg><option>-d=<replaceable>cdrom mount point</replaceable></option></arg> " +"<arg><option>-o=<replaceable>config string</replaceable></option></arg> " +"<arg><option>-c=<replaceable>file</replaceable></option></arg> <group> " +"<arg>add</arg> <arg>ident</arg> </group>" +msgstr "" +"<command>apt-cdrom</command> <arg><option>-hvrmfan</option></arg> " +"<arg><option>-d=<replaceable>CDROM-Einh??ngepunkt</replaceable></option></" +"arg><arg><option>-o=<replaceable>Konfigurationszeichenkette</replaceable></" +"option></arg><arg><option>-c=<replaceable>Datei</replaceable></option></" +"arg><group><arg>hinzuf??gen</arg><arg>Identifikation</arg></group>" + +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:48 +msgid "" +"<command>apt-cdrom</command> is used to add a new CDROM to APTs list of " +"available sources. <command>apt-cdrom</command> takes care of determining " +"the structure of the disc as well as correcting for several possible mis-" +"burns and verifying the index files." +msgstr "" +"<command>apt-cdrom</command> wird benutzt, um eine neue CDROM zu APTs Liste " +"der verf??gbaren Quellen hinzuzuf??gen. <command>apt-cdrom</command> k??" +"mmert sich um die festgestellte Struktur des Mediums, sowie die Korrektur f??" +"r mehrere m??gliche Fehlbrennungen und pr??ft die Indexdateien." + +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:55 +msgid "" +"It is necessary to use <command>apt-cdrom</command> to add CDs to the APT " +"system, it cannot be done by hand. Furthermore each disk in a multi-cd set " +"must be inserted and scanned separately to account for possible mis-burns." +msgstr "" +"Es ist notwendig, <command>apt-cdrom</command> zu benutzen, um CDs zum APT-" +"System hinzuzuf??gen. Dies kann nicht manuell erfolgen. Weiterhin muss jedes " +"Medium in einer Zusammenstellung aus mehreren CDs einzeln eingelegt und " +"gescannt werden, um auf m??gliche Fehlbrennungen zu testen." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:65 +msgid "add" +msgstr "add" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:66 +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." +msgstr "" +"<literal>add</literal> wird benutzt, um ein neues Medium zur Quellenliste " +"hinzuzuf??gen. Es wird das CDROM-Ger??t aush??ngen, verlangen, dass ein " +"Medium eingelegt wird und dann mit den Einlesen und Kopieren der " +"Indexdateien fortfahren. Wenn das Medium kein angemessenes <filename>disk</" +"filename>-Verzeichnis hat, werden Sie nach einem aussagekr??ftigen Titel " +"gefragt." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:74 +msgid "" +"APT uses a CDROM ID to track which disc is currently in the drive and " +"maintains a database of these IDs in <filename>&statedir;/cdroms.list</" +"filename>" +msgstr "" +"APT benutzt eine CDROM-ID, um nachzuverfolgen, welches Medium gerade im " +"Laufwerk ist und verwaltet eine Datenbank mit diesen IDs in " +"<filename>&statedir;/cdroms.list</filename>" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:81 +msgid "ident" +msgstr "ident" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:82 +msgid "" +"A debugging tool to report the identity of the current disc as well as the " +"stored file name" +msgstr "" +"Ein Fehlersuchwerkzeug, um die Identit??t des aktuellen Mediums sowie den " +"gespeicherten Dateinamen zu berichten." + +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:61 +msgid "" +"Unless the <option>-h</option>, or <option>--help</option> option is given " +"one of the commands below must be present. <placeholder type=\"variablelist" +"\" id=\"0\"/>" +msgstr "" +"Au??er wenn die Option <option>-h</option> oder <option>--help</option> " +"angegeben wurde, muss einer der beiden Befehle unterhalb gegeben sein. " +"<placeholder type=\"variablelist\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><title> +#: apt-cdrom.8.xml:91 +msgid "Options" +msgstr "Optionen" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:95 apt-ftparchive.1.xml:503 apt-get.8.xml:328 +msgid "<option>-d</option>" +msgstr "<option>-d</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:95 +msgid "<option>--cdrom</option>" +msgstr "<option>--cdrom</option" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:96 +msgid "" +"Mount point; specify the location to mount the cdrom. This mount point must " +"be listed in <filename>/etc/fstab</filename> and properly configured. " +"Configuration Item: <literal>Acquire::cdrom::mount</literal>." +msgstr "" +"Einh??ngepunkt. Gibt den Ort an, an dem die CD-ROM eingeh??ngt wird. Dieser " +"Einh??ngepunkt muss in <filename>/etc/fstab</filename> eingetragen und " +"angemessen konfiguriert sein. Konfigurationselement: <literal>Acquire::" +"cdrom::mount</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:104 +msgid "<option>-r</option>" +msgstr "<option>-r</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:104 +msgid "<option>--rename</option>" +msgstr "<option>--rename</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:105 +msgid "" +"Rename a disc; change the label of a disk or override the disks given label. " +"This option will cause <command>apt-cdrom</command> to prompt for a new " +"label. Configuration Item: <literal>APT::CDROM::Rename</literal>." +msgstr "" +"Ein Medium umbenennen. ??ndert den Namen eines Mediums oder ??berschreibt " +"den Namen, der dem Medium gegeben wurde. Diese Option wird <command>apt-" +"cdrom</command> veranlassen, nach einem neuen Namen zu fragen. " +"Konfigurationselement: <literal>APT::CDROM::Rename</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:113 apt-get.8.xml:347 +msgid "<option>-m</option>" +msgstr "<option>-m</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:113 +msgid "<option>--no-mount</option>" +msgstr "<option>--no-mount</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:114 +msgid "" +"No mounting; prevent <command>apt-cdrom</command> from mounting and " +"unmounting the mount point. Configuration Item: <literal>APT::CDROM::" +"NoMount</literal>." +msgstr "" +"Kein Einh??ngen. Hindert <command>apt-cdrom</command> am Ein- und Aush??ngen " +"des Einh??ngepunkts. Konfigurationselement: <literal>APT::CDROM::NoMount</" +"literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:121 +msgid "<option>--fast</option>" +msgstr "<option>--fast</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:122 +msgid "" +"Fast Copy; Assume the package files are valid and do not check every " +"package. This option should be used only if <command>apt-cdrom</command> has " +"been run on this disc before and did not detect any errors. Configuration " +"Item: <literal>APT::CDROM::Fast</literal>." +msgstr "" +"Schnelle Kopie. Unterstellt, dass die Paketdateien g??ltig sind und pr??ft " +"nicht jedes Paket. Diese Option sollte nur benutzt werden, wenn <command>apt-" +"cdrom</command> vorher f??r dieses Medium ausgef??hrt wurde und keine Fehler " +"festgestellt hat. Konfigurationselement: <literal>APT::CDROM::Fast</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:131 +msgid "<option>--thorough</option>" +msgstr "<option>--thorough</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:132 +msgid "" +"Thorough Package Scan; This option may be needed with some old Debian " +"1.1/1.2 discs that have Package files in strange places. It takes much " +"longer to scan the CD but will pick them all up." +msgstr "" +"Gr??ndliche Paketdurchsuchung. Diese Option k??nnte f??r einige alte Debian-" +"1.1/1.2-Medien n??tig sein, die Paketdateien an seltsamen Orten haben. Dies " +"verl??ngert das Durchsuchen des Mediums deutlich, nimmt aber alle auf." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:140 apt-get.8.xml:378 +msgid "<option>--just-print</option>" +msgstr "<option>--just-print</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:141 apt-get.8.xml:380 +msgid "<option>--recon</option>" +msgstr "<option>--recon</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-cdrom.8.xml:142 apt-get.8.xml:381 +msgid "<option>--no-act</option>" +msgstr "<option>--no-act</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-cdrom.8.xml:143 +msgid "" +"No Changes; Do not change the &sources-list; file and do not write index " +"files. Everything is still checked however. Configuration Item: " +"<literal>APT::CDROM::NoAct</literal>." +msgstr "" +"Keine ??nderungen. Die &sources-list;-Datei nicht ??ndern und keine " +"Indexdateien schreiben. Alles wird jedoch immer noch gepr??ft. " +"Konfigurationselement: <literal>APT::CDROM::NoAct</literal>." + +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:156 +msgid "&apt-conf;, &apt-get;, &sources-list;" +msgstr "&apt-conf;, &apt-get;, &sources-list;" + +#. type: Content of: <refentry><refsect1><para> +#: apt-cdrom.8.xml:161 +msgid "" +"<command>apt-cdrom</command> returns zero on normal operation, decimal 100 " +"on error." +msgstr "" +"<command>apt-cdrom</command> gibt bei normalen Operationen 0 zur??ck, " +"dezimal 100 bei Fehlern." + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-config.8.xml:22 apt-config.8.xml:29 +msgid "apt-config" +msgstr "apt-config" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-config.8.xml:30 +msgid "APT Configuration Query program" +msgstr "APT-Konfigurationsabfrageprogramm" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-config.8.xml:36 +msgid "" +"<command>apt-config</command> <arg><option>-hv</option></arg> <arg><option>-" +"o=<replaceable>config string</replaceable></option></arg> <arg><option>-" +"c=<replaceable>file</replaceable></option></arg> <group choice=\"req\"> " +"<arg>shell</arg> <arg>dump</arg> </group>" +msgstr "" +"<command>apt-config</command><arg><option>-hv</option></arg><arg><option>-" +"o=<replaceable>Konfigurationszeichenkette</replaceable></option></" +"arg><arg><option>-c=<replaceable>Datei</replaceable></option></arg><group " +"choice=\"req\"> <arg>shell</arg> <arg>Abbild</arg> </group>" + +#. type: Content of: <refentry><refsect1><para> +#: apt-config.8.xml:48 +msgid "" +"<command>apt-config</command> is an internal program used by various " +"portions of the APT suite to provide consistent configurability. It accesses " +"the main configuration file <filename>/etc/apt/apt.conf</filename> in a " +"manner that is easy to use by scripted applications." +msgstr "" +"<command>apt-config</command> ist ein internes Programm, das von vielen " +"Teilen des APT-Pakets benutzt wird, um durchg??ngige Konfigurierbarkeit " +"bereitzustellen. Es greift auf die Hauptkonfigurationsdatei <filename>/etc/" +"apt/apt.conf</filename> auf eine Art zu, die leicht f??r geskriptete " +"Anwendungen zu benutzen ist." + +#. type: Content of: <refentry><refsect1><para> +#: apt-config.8.xml:53 apt-ftparchive.1.xml:71 +msgid "" +"Unless the <option>-h</option>, or <option>--help</option> option is given " +"one of the commands below must be present." +msgstr "" +"Au??er, wenn die <option>-h</option>- oder <option>--help</option>-Option " +"angegeben wurde, muss einer der Befehle unterhalb vorkommen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-config.8.xml:58 +msgid "shell" +msgstr "shell" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-config.8.xml:60 +msgid "" +"shell is used to access the configuration information from a shell script. " +"It is given pairs of arguments, the first being a shell variable and the " +"second the configuration value to query. As output it lists a series of " +"shell assignments commands for each present value. In a shell script it " +"should be used like:" +msgstr "" +"shell wird benutzt, um aus einem Shellskript auf Konfigurationsinformationen " +"zuzugreifen. Es wird ein Paar aus Argumenten angegeben ??? das erste als " +"Shell-Variable und das zweite als Konfigurationswert zum Abfragen. Als " +"Ausgabe listet es eine Serie von Shell-Zuweisungsbefehlen f??r jeden " +"vorhandenen Wert auf. In einen Shellskript sollte es wie folgt benutzt " +"werden:" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> +#: apt-config.8.xml:68 +#, no-wrap +msgid "" +"OPTS=\"-f\"\n" +"RES=`apt-config shell OPTS MyApp::options`\n" +"eval $RES\n" +msgstr "" +"OPTS=\"-f\"\n" +"RES=`apt-config shell OPTS MyApp::options`\n" +"eval $RES\n" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-config.8.xml:73 +msgid "" +"This will set the shell environment variable $OPTS to the value of MyApp::" +"options with a default of <option>-f</option>." +msgstr "" +"Dies wird die Shell-Umgebungsvariable $OPT auf den Wert von MyApp::options " +"mit einer Vorgabe von <option>-f</option> setzen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-config.8.xml:77 +msgid "" +"The configuration item may be postfixed with a /[fdbi]. f returns file " +"names, d returns directories, b returns true or false and i returns an " +"integer. Each of the returns is normalized and verified internally." +msgstr "" +"An das Konfigurationselement kann /[fdbi] angeh??ngt werden. f gibt " +"Dateinamen zur??ck, d gibt Verzeichnisse zur??ck, b gibt true oder false " +"zur??ck und i gibt eine Ganzzahl zur??ck. Jede R??ckgabe ist normiert und " +"intern gepr??ft." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-config.8.xml:86 +msgid "Just show the contents of the configuration space." +msgstr "Nur der Inhalt des Konfigurationsbereichs wird angezeigt." + +#. type: Content of: <refentry><refsect1><para> +#: apt-config.8.xml:104 apt-extracttemplates.1.xml:75 apt-ftparchive.1.xml:564 +#: apt-sortpkgs.1.xml:70 +msgid "&apt-conf;" +msgstr "&apt-conf;" + +#. type: Content of: <refentry><refsect1><para> +#: apt-config.8.xml:109 +msgid "" +"<command>apt-config</command> returns zero on normal operation, decimal 100 " +"on error." +msgstr "" +"<command>apt-config</command> gibt bei normalen Operationen 0 zur??ck, " +"dezimal 100 bei Fehlern." + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-extracttemplates.1.xml:22 apt-extracttemplates.1.xml:29 +msgid "apt-extracttemplates" +msgstr "apt-extracttemplates" + +#. type: Content of: <refentry><refmeta><manvolnum> +#: apt-extracttemplates.1.xml:23 apt-ftparchive.1.xml:23 apt-sortpkgs.1.xml:23 +msgid "1" +msgstr "1" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-extracttemplates.1.xml:30 +msgid "Utility to extract DebConf config and templates from Debian packages" +msgstr "" +"Hilfsprogramm zum Extrahieren der DebConf-Konfiguration und Schablonen von " +"Debian-Paketen" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-extracttemplates.1.xml:36 +msgid "" +"<command>apt-extracttemplates</command> <arg><option>-hv</option></arg> " +"<arg><option>-t=<replaceable>temporary directory</replaceable></option></" +"arg> <arg choice=\"plain\" rep=\"repeat\"><replaceable>file</replaceable></" +"arg>" +msgstr "" +"<command>apt-extracttemplates</command> <arg><option>-hv</option></arg> " +"<arg><option>-t=<replaceable>tempor??res Verzeichnis</replaceable></option></" +"arg> <arg choice=\"plain\" rep=\"repeat\"><replaceable>Datei</replaceable></" +"arg>" + +#. type: Content of: <refentry><refsect1><para> +#: apt-extracttemplates.1.xml:44 +msgid "" +"<command>apt-extracttemplates</command> will take one or more Debian package " +"files as input and write out (to a temporary directory) all associated " +"config scripts and template files. For each passed in package that contains " +"config scripts and templates, one line of output will be generated in the " +"format:" +msgstr "" +"<command>apt-extracttemplates</command> nimmt als Eingabe ein oder mehrere " +"Debian-Paketdateien entgegen und schreibt alle verbundenen " +"Konfigurationsskripte und Schablonendateien (in ein tempor??res Verzeichnis) " +"heraus. F??r jedes ??bergebene Paket das Konfigurationsskripte und " +"Schablonendateien enth??lt, wird eine Ausgabezeile in folgendem Format " +"generiert:" + +#. type: Content of: <refentry><refsect1><para> +#: apt-extracttemplates.1.xml:49 +msgid "package version template-file config-script" +msgstr "Paket Version Schablonendatei Konfigurationsskript" + +#. type: Content of: <refentry><refsect1><para> +#: apt-extracttemplates.1.xml:50 +msgid "" +"template-file and config-script are written to the temporary directory " +"specified by the -t or --tempdir (<literal>APT::ExtractTemplates::TempDir</" +"literal>) directory, with filenames of the form <filename>package.template." +"XXXX</filename> and <filename>package.config.XXXX</filename>" +msgstr "" +"Schablonendatei und Konfigurationsskript werden in das tempor??re " +"Verzeichnis geschrieben, das durch -t oder --tempdir (<literal>APT::" +"ExtractTemplates::TempDir</literal>) Verzeichnis mit Dateinamen der Form " +"<filename>package.template.XXXX</filename> und <filename>package.config." +"XXXX</filename> angegeben wurde" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-extracttemplates.1.xml:60 apt-get.8.xml:488 +msgid "<option>-t</option>" +msgstr "<option>-t</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-extracttemplates.1.xml:60 +msgid "<option>--tempdir</option>" +msgstr "<option>--tempdir</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-extracttemplates.1.xml:62 +msgid "" +"Temporary directory in which to write extracted debconf template files and " +"config scripts Configuration Item: <literal>APT::ExtractTemplates::TempDir</" +"literal>" +msgstr "" +"Tempor??res Verzeichnis, in das die extrahierten DebConf-Schablonendateien " +"und Konfigurationsdateien geschrieben werden. Konfigurationselement: " +"<literal>APT::ExtractTemplates::TempDir</literal>" + +#. type: Content of: <refentry><refsect1><para> +#: apt-extracttemplates.1.xml:79 +msgid "" +"<command>apt-extracttemplates</command> returns zero on normal operation, " +"decimal 100 on error." +msgstr "" +"<command>apt-extracttemplates</command> gibt bei normalen Operationen 0 zur??" +"ck, dezimal 100 bei Fehlern." + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-ftparchive.1.xml:22 apt-ftparchive.1.xml:29 +msgid "apt-ftparchive" +msgstr "apt-ftparchive" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-ftparchive.1.xml:30 +msgid "Utility to generate index files" +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 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> " +"<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>" +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>Konfigurationszeichenkette</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\" " +"rep=\"repeat\"><replaceable>Abschnitt</replaceable></arg></arg> <arg>clean " +"<arg choice=\"plain\"><replaceable>Konfigurationsdatei</replaceable></arg></" +"arg></group>" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:56 +msgid "" +"<command>apt-ftparchive</command> is the command line tool that generates " +"the index files that APT uses to access a distribution source. The index " +"files should be generated on the origin site based on the content of that " +"site." +msgstr "" +"<command>apt-ftparchive</command> ist das Befehlszeilenwerkzeug, das " +"Indexdateien generiert, die APT zum Zugriff auf eine Distributionsquelle " +"benutzt. Die Indexdateien sollten auf der Ursprungs-Site auf Basis des " +"Inhalts dieser Stelle generiert werden." + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:60 +msgid "" +"<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; " +"program, incorporating its entire functionality via the <literal>packages</" +"literal> command. It also contains a contents file generator, " +"<literal>contents</literal>, and an elaborate means to 'script' the " +"generation process for a complete archive." +msgstr "" +"<command>apt-ftparchive</command> ist eine Obermenge des &dpkg-scanpackages;-" +"Programms, das dessen ganze Funktionalit??t ??ber den <literal>packages</" +"literal>-Befehl enth??lt ist ein durchdachtes Mittel den Generierungsprozess " +"f??r ein komplettes Archiv zu ??skripten??." + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:66 +msgid "" +"Internally <command>apt-ftparchive</command> can make use of binary " +"databases to cache the contents of a .deb file and it does not rely on any " +"external programs aside from &gzip;. When doing a full generate it " +"automatically performs file-change checks and builds the desired compressed " +"output files." +msgstr "" +"Intern kann <command>apt-ftparchive</command> von Programmdatenb??nken " +"Gebrauch machen, um die Inhalte einer .deb-Datei zwischenzuspeichern und es " +"verl??sst sich nicht auf irgendwelche externen Programme, abgesehen von " +"&gzip;. Wenn eine vollst??ndige Generierung erfolgt, werden automatisch " +"Datei??nderungspr??fungen durchgef??hrt und die gew??nschten gepackten " +"Ausgabedateien erzeugt." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:75 +msgid "packages" +msgstr "packages" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:77 +msgid "" +"The packages command generates a package file from a directory tree. It " +"takes the given directory and recursively searches it for .deb files, " +"emitting a package record to stdout for each. This command is approximately " +"equivalent to &dpkg-scanpackages;." +msgstr "" +"Der packages-Befehl generiert eine Paketdatei aus einem Verzeichnisbaum. Er " +"nimmt ein vorgegebenes Verzeichnis und durchsucht es rekursiv nach .deb-" +"Dateien, wobei es f??r jede einen Paketdatensatz auf stdout ausgibt.Dieser " +"Befehl entspricht etwa &dpkg-scanpackages;." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:82 apt-ftparchive.1.xml:106 +msgid "" +"The option <option>--db</option> can be used to specify a binary caching DB." +msgstr "" +"Die Option <option>--db</option> kann benutzt werden, um eine Datenbank zum " +"Zwischenspeichern von Programmen anzugeben." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:85 +msgid "sources" +msgstr "sources" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:87 +msgid "" +"The <literal>sources</literal> command generates a source index file from a " +"directory tree. It takes the given directory and recursively searches it " +"for .dsc files, emitting a source record to stdout for each. This command is " +"approximately equivalent to &dpkg-scansources;." +msgstr "" +"Der <literal>sources</literal>-Befehl generiert eine Quellenindexdatei aus " +"einem Verzeichnisbaum. Er nimmt ein vorgegebenes Verzeichnis und durchsucht " +"es rekursiv nach .dsc-Dateien, wobei es f??r jede einen Quelldatensatz auf " +"stdout ausgibt. Dieser Befehl entspricht etwa &dpkg-scansources;." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:92 +msgid "" +"If an override file is specified then a source override file will be looked " +"for with an extension of .src. The --source-override option can be used to " +"change the source override file that will be used." +msgstr "" +"Wenn eine Override-Datei angegeben ist, wird nach einer Quellen-Override-" +"Datei mit einer .src-Dateiendung gesucht. Die Option --source-override kann " +"benutzt werden, um die Quellen-Override-Datei, die benutzt wird, zu ??ndern." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:97 +msgid "contents" +msgstr "contents" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:99 +msgid "" +"The <literal>contents</literal> command generates a contents file from a " +"directory tree. It takes the given directory and recursively searches it " +"for .deb files, and reads the file list from each file. It then sorts and " +"writes to stdout the list of files matched to packages. Directories are not " +"written to the output. If multiple packages own the same file then each " +"package is separated by a comma in the output." +msgstr "" +"Der <literal>contents</literal>-Befehl generiert eine Inhaltsdatei aus einem " +"Verzeichnisbaum. Er nimmt ein vorgegebenes Verzeichnis und durchsucht es " +"rekursiv nach .deb-Dateien und liest die Dateiliste von jeder Datei. Dann " +"sortiert er die Liste der passenden Pakete und schreibt sie nach stdout. " +"Verzeichnisse werden nicht in die Ausgabe geschrieben. Falls mehrere Pakete " +"die gleiche Datei besitzen, dann befindet sich jedes Paket durch Komma " +"getrennt in der Ausgabe." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:109 +msgid "release" +msgstr "release" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:111 +msgid "" +"The <literal>release</literal> command generates a Release file from a " +"directory tree. It recursively searches the given directory for Packages, " +"Packages.gz, Packages.bz2, Sources, Sources.gz, Sources.bz2, Release and " +"md5sum.txt files. It then writes to stdout a Release file containing an MD5 " +"digest and SHA1 digest for each file." +msgstr "" +"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 " +"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:118 +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>." +msgstr "" +"Werte f??r zus??tzliche Metadatenfelder in der Release-Datei werden den " +"entsprechenden Variablen unter <literal>APT::FTPArchive::Release</literal> " +"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>Description</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:128 +msgid "generate" +msgstr "generate" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:130 +msgid "" +"The <literal>generate</literal> command is designed to be runnable from a " +"cron script and builds indexes according to the given config file. The " +"config language provides a flexible means of specifying which index files " +"are built from which directories, as well as providing a simple means of " +"maintaining the required settings." +msgstr "" +"Der <literal>generate</literal>-Befehl wurde entworfen, um von einem Cron-" +"Skript ausf??hrbar zu sein und bildet Indizes, die der angegebenen " +"Konfigurationsdatei entsprechen. Die Konfigurationssprache stellt eine " +"flexible M??glichkeit bereit, um anzugeben, welche Indexdateien von welchen " +"Verzeichnissen gebildet wurden, ebenso wie sie eine einfache M??glichkeit " +"zur Verwaltung der erforderlichen Einstellungen bereitstellt." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:137 apt-get.8.xml:292 +msgid "clean" +msgstr "clean" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:139 +msgid "" +"The <literal>clean</literal> command tidies the databases used by the given " +"configuration file by removing any records that are no longer necessary." +msgstr "" +"Der <literal>clean</literal>-Befehl r??umt die Datenbanken auf, die von der " +"angegebenen Konfigurationsdatei benutzt wurden, indem es nicht l??nger n??" +"tige Datens??tze entfernt." + +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:145 +msgid "The Generate Configuration" +msgstr "Die Generate-Konfiguration" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:147 +msgid "" +"The <literal>generate</literal> command uses a configuration file to " +"describe the archives that are going to be generated. It follows the typical " +"ISC configuration format as seen in ISC tools like bind 8 and dhcpd. &apt-" +"conf; contains a description of the syntax. Note that the generate " +"configuration is parsed in sectional manner, but &apt-conf; is parsed in a " +"tree manner. This only effects how the scope tag is handled." +msgstr "" +"Der <literal>generate</literal>-Befehl benutzt eine Konfigurationsdatei, um " +"die Archive zu beschreiben, die generiert werden sollen. Es folgt dem " +"typischen ISC-Konfigurationsformat, wie es in ISC-Werkzeugen wie Bind 8 oder " +"DHCP gesehen werden kann. &apt-conf; enth??lt eine Beschreibung der Syntax. " +"Beachten Sie, dass die generate-Konfiguration abschnittsweise ausgewertet " +"wird, &apt-conf; aber baumartig ausgewertet wird. Dies hat nur Auswirkungen, " +"wenn die Markierung ??scope?? behandelt wird." + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:155 +msgid "" +"The generate configuration has 4 separate sections, each described below." +msgstr "" +"Die generate-Konfiguration hat vier getrennte Abschnitte, jeder ist " +"unterhalb beschrieben" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:157 +msgid "Dir Section" +msgstr "Dir-Abschnitt" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:159 +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." +msgstr "" +"Der <literal>Dir</literal>-Abschnitt definiert die Vorgabeverzeichnisse, die " +"zum Orten der ben??tigten Dateien w??hrend des Generierungsprozesses " +"gebraucht werden. Diese Verzeichnisse werden bestimmten relativen Pfaden, " +"die in sp??teren Abschnitten definiert werden, vorangestellt, um einen " +"vollst??ndigen absoluten Pfad zu bilden." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:164 +msgid "ArchiveDir" +msgstr "ArchiveDir" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:166 +msgid "" +"Specifies the root of the FTP archive, in a standard Debian configuration " +"this is the directory that contains the <filename>ls-LR</filename> and dist " +"nodes." +msgstr "" +"Gibt die Wurzel des FTP-Archivs an. In einer Debian-Standardkonfiguration " +"ist das das Verzeichnis, das die <filename>ls-LR</filename>- und dist-Knoten " +"enth??lt." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:171 +msgid "OverrideDir" +msgstr "OverrideDir" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:173 +msgid "Specifies the location of the override files." +msgstr "Gibt den Ort der Override-Dateien an" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:176 +msgid "CacheDir" +msgstr "CacheDir" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:178 +msgid "Specifies the location of the cache files" +msgstr "Gibt den Ort der Zwischenspeicherdateien an" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:181 +msgid "FileListDir" +msgstr "FileListDir" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:183 +msgid "" +"Specifies the location of the file list files, if the <literal>FileList</" +"literal> setting is used below." +msgstr "" +"Gibt den Ort der Dateilistendateien an, wenn die <literal>FileList</literal> " +"unterhalb gesetzt ist." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:189 +msgid "Default Section" +msgstr "Vorgabe-Abschnitt" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:191 +msgid "" +"The <literal>Default</literal> section specifies default values, and " +"settings that control the operation of the generator. Other sections may " +"override these defaults with a per-section setting." +msgstr "" +"Der <literal>Default</literal>-Abschnitt gibt Vorgabewerte an und " +"Einstellungen, die den Betrieb des Generators steuern. Andere Abschnitte k??" +"nnen diese Vorgaben mit einer Einstellung pro Abschnitt ??berschreiben." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:195 +msgid "Packages::Compress" +msgstr "Packages::Compress" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:197 +msgid "" +"Sets the default compression schemes to use for the Package index files. It " +"is a string that contains a space separated list of at least one of: '.' (no " +"compression), 'gzip' and 'bzip2'. The default for all compression schemes is " +"'. gzip'." +msgstr "" +"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??." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:203 +msgid "Packages::Extensions" +msgstr "Packages::Extensions" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:205 +msgid "" +"Sets the default list of file extensions that are package files. This " +"defaults to '.deb'." +msgstr "" +"Setzt die Vorgabeliste von Dateierweiterungen, die Paketdateien sind. " +"Vorgabe ist ??.deb??." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:209 +msgid "Sources::Compress" +msgstr "Sources::Compress" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:211 +msgid "" +"This is similar to <literal>Packages::Compress</literal> except that it " +"controls the compression for the Sources files." +msgstr "" +"Dies ist <literal>Packages::Compress</literal> ??hnlich, au??er dass es die " +"Kompression der Quelldateien steuert." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:215 +msgid "Sources::Extensions" +msgstr "Sources::Extensions" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:217 +msgid "" +"Sets the default list of file extensions that are source files. This " +"defaults to '.dsc'." +msgstr "" +"Setzt die Vorgabeliste von Dateierweiterungen, die Quelldateien sind. " +"Vorgabe ist ??.dsc??." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:221 +msgid "Contents::Compress" +msgstr "Contents::Compress" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:223 +msgid "" +"This is similar to <literal>Packages::Compress</literal> except that it " +"controls the compression for the Contents files." +msgstr "" +"Dies ist <literal>Packages::Compress</literal> ??hnlich, au??er dass es die " +"Kompression der Inhaltsdateien steuert." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:227 +msgid "DeLinkLimit" +msgstr "DeLinkLimit" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:229 +msgid "" +"Specifies the number of kilobytes to delink (and replace with hard links) " +"per run. This is used in conjunction with the per-section <literal>External-" +"Links</literal> setting." +msgstr "" +"Gibt die Anzahl von Kilobytes an, die pro Durchlauf delinkt (und durch " +"Hardlinks ersetzt) werden sollen. Dies wird in Verbindung mit der " +"<literal>External-Links</literal>-Einstellung pro Abschnitt benutzt." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:234 +msgid "FileMode" +msgstr "FileMode" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:236 +msgid "" +"Specifies the mode of all created index files. It defaults to 0644. All " +"index files are set to this mode with no regard to the umask." +msgstr "" +"Gibt die Rechte f??r alle erstellten Indexdateien an. Vorgabe ist 0644. Alle " +"Indexdateien werden ohne Beachtung von umask auf diese Rechte gesetzt." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:243 +msgid "TreeDefault Section" +msgstr "TreeDefault-Abschnitt" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:245 +msgid "" +"Sets defaults specific to <literal>Tree</literal> sections. All of these " +"variables are substitution variables and have the strings $(DIST), " +"$(SECTION) and $(ARCH) replaced with their respective values." +msgstr "" +"Setzt Vorgaben speziell f??r <literal>Tree</literal>-Abschnitte. All diese " +"Variablen sind Platzhaltervariablen und haben die Zeichenketten $(DIST), " +"$(SECTION) und $(ARCH) durch ihre jeweiligen Werte ersetzt." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:250 +msgid "MaxContentsChange" +msgstr "MaxContentsChange" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:252 +msgid "" +"Sets the number of kilobytes of contents files that are generated each day. " +"The contents files are round-robined so that over several days they will all " +"be rebuilt." +msgstr "" +"Setzt die Anzahl der Kilobytes der Inhaltdateien, die jeden Tag generiert " +"werden. Die Inhaltdateien werden reihum ersetzt, so dass sie ??ber mehrere " +"Tage alle neu gebildet werden." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:257 +msgid "ContentsAge" +msgstr "ContentsAge" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:259 +msgid "" +"Controls the number of days a contents file is allowed to be checked without " +"changing. If this limit is passed the mtime of the contents file is updated. " +"This case can occur if the package file is changed in such a way that does " +"not result in a new contents file [override edit for instance]. A hold off " +"is allowed in hopes that new .debs will be installed, requiring a new file " +"anyhow. The default is 10, the units are in days." +msgstr "" +"Steuert die Anzahl der Tage, die eine Inhaltsdatei erlaubt ist ohne ??" +"nderung gepr??ft zu werden. Wenn die Grenze ??berschritten ist, wird die " +"mtime der Inhaltsdatei aktualisiert. Dieser Fall kann auftreten, wenn die " +"Package-Datei auf einem Weg ge??ndert wurde, der nicht in einer neuen " +"Inhaltsdatei resultierte [??berschreibendes Bearbeiten zum Beispiel]. Ein " +"Aufhalten ist erlaubt, in der Hoffnung dass neue .debs installiert werden, " +"die sowieso eine neue Datei ben??tigen. Die Vorgabe ist 10, die Einheiten " +"sind Tage." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:268 +msgid "Directory" +msgstr "Directory" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:270 +msgid "" +"Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/" +"$(SECTION)/binary-$(ARCH)/</filename>" +msgstr "" +"Setzt den Beginn des .deb-Verzeichnisbaumes. Vorgabe ist <filename>$(DIST)/" +"$(SECTION)/binary-$(ARCH)/</filename>" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:274 +msgid "SrcDirectory" +msgstr "SrcDirectory" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:276 +msgid "" +"Sets the top of the source package directory tree. Defaults to <filename>" +"$(DIST)/$(SECTION)/source/</filename>" +msgstr "" +"Setzt den Beginn des Quellpaketverzeichnisbaumes. Vorgabe ist <filename>" +"$(DIST)/$(SECTION)/source/</filename>" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:280 apt-ftparchive.1.xml:406 +msgid "Packages" +msgstr "Packages" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:282 +msgid "" +"Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" +"binary-$(ARCH)/Packages</filename>" +msgstr "" +"Setzt die Ausgabe-Packages-Datei. Vorgabe ist <filename>$(DIST)/$(SECTION)/" +"binary-$(ARCH)/Packages</filename>" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:286 apt-ftparchive.1.xml:411 +msgid "Sources" +msgstr "Sources" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:288 +msgid "" +"Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" +"source/Sources</filename>" +msgstr "" +"Setzt die Ausgabe-Packages-Datei. Vorgabe ist <filename>$(DIST)/$(SECTION)/" +"source/Sources</filename>" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:292 +msgid "InternalPrefix" +msgstr "InternalPrefix" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:294 +msgid "" +"Sets the path prefix that causes a symlink to be considered an internal link " +"instead of an external link. Defaults to <filename>$(DIST)/$(SECTION)/</" +"filename>" +msgstr "" +"Setzt die Pfad-Pr??fix, die bewirkt, dass ein symbolischer Verweis wie ein " +"interner anstatt wie ein externer Verweis behandelt wird. Vorgabe ist " +"<filename>$(DIST)/$(SECTION)/</filename>" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:299 apt-ftparchive.1.xml:417 +msgid "Contents" +msgstr "Contents" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:301 +msgid "" +"Sets the output Contents file. Defaults to <filename>$(DIST)/Contents-$(ARCH)" +"</filename>. If this setting causes multiple Packages files to map onto a " +"single Contents file (such as the default) then <command>apt-ftparchive</" +"command> will integrate those package files together automatically." +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 " +"Vorgabe ist), dann wird <command>apt-ftparchive</command> diese Dateien " +"automatisch integrieren." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:308 +msgid "Contents::Header" +msgstr "Contents::Header" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:310 +msgid "Sets header file to prepend to the contents output." +msgstr "Setzt die Kopfdatendatei, um sie der Inhaltsausgabe voranzustellen." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:313 apt-ftparchive.1.xml:442 +msgid "BinCacheDB" +msgstr "BinCacheDB" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:315 +msgid "" +"Sets the binary cache database to use for this section. Multiple sections " +"can share the same database." +msgstr "" +"Setzt die Programmzwischenspeicherdatenbank zur Benutzung in diesem " +"Abschnitt. Mehrere Abschnitte k??nnen sich die gleiche Datenbank teilen." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:319 +msgid "FileList" +msgstr "FileList" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:321 +msgid "" +"Specifies that instead of walking the directory tree, <command>apt-" +"ftparchive</command> should read the list of files from the given file. " +"Relative files names are prefixed with the archive directory." +msgstr "" +"Gibt an, dass <command>apt-ftparchive</command> die Liste der Dateien aus " +"der vorgegebenen Datei liest, anstatt den Verzeichnisbaum zu durchlaufen. " +"Relativen Dateinamen wird das Archivverzeichnis vorangestellt." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:326 +msgid "SourceFileList" +msgstr "SourceFileList" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:328 +msgid "" +"Specifies that instead of walking the directory tree, <command>apt-" +"ftparchive</command> should read the list of files from the given file. " +"Relative files names are prefixed with the archive directory. This is used " +"when processing source indexes." +msgstr "" +"Gibt an, dass <command>apt-ftparchive</command> die Liste der Dateien aus " +"der vorgegebenen Datei liest, anstatt den Verzeichnisbaum zu durchlaufen. " +"Relativen Dateinamen wird das Archivverzeichnis vorangestellt. Dies wird " +"benutzt, wenn Quellindizes verarbeitet werden." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:336 +msgid "Tree Section" +msgstr "Tree-Abschnitt" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:338 +msgid "" +"The <literal>Tree</literal> section defines a standard Debian file tree " +"which consists of a base directory, then multiple sections in that base " +"directory and finally multiple Architectures in each section. The exact " +"pathing used is defined by the <literal>Directory</literal> substitution " +"variable." +msgstr "" +"Der <literal>Tree</literal>-Abschnitt definiert einen Standard-Debian-" +"Dateibaum, der aus einem Basisverzeichnis, dann mehreren Abschnitten in " +"diesem Basisverzeichnis und am Ende, mehreren Architekturen in jedem " +"Abschnitt besteht. Die genaue benutzte Pfadeinstellung ist durch die " +"<literal>Directory</literal>-Ersetzungsvariable definiert." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:343 +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>." +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>." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:348 +msgid "" +"All of the settings defined in the <literal>TreeDefault</literal> section " +"can be use in a <literal>Tree</literal> section as well as three new " +"variables." +msgstr "" +"Alle im <literal>TreeDefault</literal>-Abschnitt definierten Einstellungen " +"k??nnen in einem <literal>Tree</literal>-Abschnitt, sowie als drei neue " +"Variablen benutzt werden." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:351 +msgid "" +"When processing a <literal>Tree</literal> section <command>apt-ftparchive</" +"command> performs an operation similar to:" +msgstr "" +"Wenn ein <literal>Tree</literal>-Abschnitt bearbeitet wird, f??hrt " +"<command>apt-ftparchive</command> eine Operation aus, die folgender ??hnelt:" + +# report, that this string is missing in man page +#. type: Content of: <refentry><refsect1><refsect2><para><informalexample><programlisting> +#: apt-ftparchive.1.xml:354 +#, 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 j in Architekturen do\n" +" Generiere for DIST=Geltungsbereich SECTION=i ARCH=j\n" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:360 +msgid "Sections" +msgstr "Abschnitte" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:362 +msgid "" +"This is a space separated list of sections which appear under the " +"distribution, typically this is something like <literal>main contrib non-" +"free</literal>" +msgstr "" +"Dies ist eine durch Leerzeichen getrennte Liste der Abschnitte, die unter " +"der Distribution erscheint, typischerweise etwas wie <literal>main contrib " +"non-free</literal>" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:367 +msgid "Architectures" +msgstr "Architekturen" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:369 +msgid "" +"This is a space separated list of all the architectures that appear under " +"search section. The special architecture 'source' is used to indicate that " +"this tree has a source archive." +msgstr "" +"Dies ist eine durch Leerzeichen getrennte Liste aller Architekturen, die " +"unter dem Suchabschnitt erscheinen. Die spezielle Architektur ??source?? " +"wird benutzt, um anzugeben, dass dieser Baum ein Quellarchiv besitzt." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:374 apt-ftparchive.1.xml:422 +msgid "BinOverride" +msgstr "BinOverride" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:376 +msgid "" +"Sets the binary override file. The override file contains section, priority " +"and maintainer address information." +msgstr "" +"Setzt die Programm-Override-Datei. Die Override-Datei enth??lt Abschnitt, " +"Priorit??t und Adressinformationen des Betreuers." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:380 apt-ftparchive.1.xml:427 +msgid "SrcOverride" +msgstr "SrcOverride" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:382 +msgid "" +"Sets the source override file. The override file contains section " +"information." +msgstr "" +"Setzt die Quell-Override-Datei. Die Override-Datei enth??lt " +"Abschnittsinformationen." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:386 apt-ftparchive.1.xml:432 +msgid "ExtraOverride" +msgstr "ExtraOverride" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:388 apt-ftparchive.1.xml:434 +msgid "Sets the binary extra override file." +msgstr "Setzt die zus??tzliche Programm-Override-Datei." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:391 apt-ftparchive.1.xml:437 +msgid "SrcExtraOverride" +msgstr "SrcExtraOverride" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:393 apt-ftparchive.1.xml:439 +msgid "Sets the source extra override file." +msgstr "Setzt die zus??tzliche Quell-Override-Datei." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt-ftparchive.1.xml:398 +msgid "BinDirectory Section" +msgstr "BinDirectory-Abschnitt" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt-ftparchive.1.xml:400 +msgid "" +"The <literal>bindirectory</literal> section defines a binary directory tree " +"with no special structure. The scope tag specifies the location of the " +"binary directory and the settings are similar to the <literal>Tree</literal> " +"section with no substitution variables or <literal>Section</" +"literal><literal>Architecture</literal> settings." +msgstr "" +"Der <literal>bindirectory</literal>-Abschnitt definiert einen " +"Programmverzeichnisbaum ohne spezielle Struktur. Die scope-Markierung gibt " +"den Ort des Programmverzeichnisses an und die Einstellungen sind denen des " +"<literal>Tree</literal>-Abschnitts ohne Platzhaltervariablen oder " +"<literal>Abschnitt</literal><literal>Architektur</literal> ??hnlich." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:408 +msgid "Sets the Packages file output." +msgstr "Setzt die Packages-Dateiausgabe." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:413 +msgid "" +"Sets the Sources file output. At least one of <literal>Packages</literal> or " +"<literal>Sources</literal> is required." +msgstr "" +"Setzt die Sources-Dateiausgabe. Entweder <literal>Packages</literal> oder " +"<literal>Sources</literal> ist erforderlich." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:419 +msgid "Sets the Contents file output. (optional)" +msgstr "Setzt die Contents-Dateiausgabe. (optional)" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:424 +msgid "Sets the binary override file." +msgstr "Setzt die Programm-Override-Datei." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:429 +msgid "Sets the source override file." +msgstr "Setzt die Quell-Override-Datei." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:444 +msgid "Sets the cache DB." +msgstr "Setzt die Zwischenspeicherdatenbank." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:447 +msgid "PathPrefix" +msgstr "PathPrefix" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:449 +msgid "Appends a path to all the output paths." +msgstr "H??ngt einen Pfad an alle Ausgabepfade an." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:452 +msgid "FileList, SourceFileList" +msgstr "FileList, SourceFileList" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:454 +msgid "Specifies the file list file." +msgstr "Gibt die Dateilistendatei an." + +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:461 +msgid "The Binary Override File" +msgstr "Die Programm-Override-Datei " + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:462 +msgid "" +"The binary override file is fully compatible with &dpkg-scanpackages;. It " +"contains 4 fields separated by spaces. The first field is the package name, " +"the second is the priority to force that package to, the third is the the " +"section to force that package to and the final field is the maintainer " +"permutation field." +msgstr "" +"Die Programm-Override-Datei ist vollst??ndig zu &dpkg-scanpackages; " +"kompatibel. Sie enth??lt vier durch Leerzeichen getrennte Felder. Das erste " +"Feld ist der Paketname, das zweite ist die Priorit??t zu der das Paket " +"erzwungen wird, das dritte ist der Abschnittzu der das Paket erzwungen wird " +"und das letzte Feld ist das Betreuerumsetzungsfeld." + +#. type: Content of: <refentry><refsect1><para><literallayout> +#: apt-ftparchive.1.xml:468 +#, no-wrap +msgid "old [// oldn]* => new" +msgstr "alt [// oldn]* => neu" + +#. type: Content of: <refentry><refsect1><para><literallayout> +#: apt-ftparchive.1.xml:470 +#, no-wrap +msgid "new" +msgstr "neu" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:467 +msgid "" +"The general form of the maintainer field is: <placeholder type=" +"\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" " +"id=\"1\"/> The first form allows a double-slash separated list of old email " +"addresses to be specified. If any of those are found then new is substituted " +"for the maintainer field. The second form unconditionally substitutes the " +"maintainer field." +msgstr "" +"Die allgemeine Form des Betreuerfelds ist: <placeholder type=\"literallayout" +"\" id=\"0\"/> oder einfach <placeholder type=\"literallayout\" id=\"1\"/>. " +"Die erste Form erlaubt es, eine durch Doppelschr??gstrich getrennte Liste " +"alter E-Mail-Adressen anzugegeben. Wenn eine davon gefunden wird, wird die " +"neue f??r das Betreuerfeld ersetzt. Die zweite Form ersetzt das Betreuerfeld " +"bedingungslos." + +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:478 +msgid "The Source Override File" +msgstr "Die Quell-Override-Datei" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:480 +msgid "" +"The source override file is fully compatible with &dpkg-scansources;. It " +"contains 2 fields separated by spaces. The first fields is the source " +"package name, the second is the section to assign it." +msgstr "" +"Die Quell-Override-Datei ist vollst??ndig kompatibel zu &dpkg-scansources;. " +"Sie enth??lt zwei durch Leerzeichen getrennte Felder. Das erste Feld ist der " +"Quellpaketname, das zweite ist der Abschnitt, dem er zugeordnet ist." + +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:485 +msgid "The Extra Override File" +msgstr "Die zus??tzlich Override-Datei" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:487 +msgid "" +"The extra override file allows any arbitrary tag to be added or replaced in " +"the output. It has 3 columns, the first is the package, the second is the " +"tag and the remainder of the line is the new value." +msgstr "" +"Die zus??tzlich Override-Datei erlaubt jeder beliebigen Markierung zur " +"Ausgabe hinzugef??gt oder darin ersetzt zu werden. Sie hat drei Spalten. Die " +"erste ist das Paket, die zweite ist die Markierung und der Rest der Zeile " +"ist der neue Wert." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:496 +msgid "<option>--md5</option>" +msgstr "<option>--md5</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:498 +msgid "" +"Generate MD5 sums. This defaults to on, when turned off the generated index " +"files will not have MD5Sum fields where possible. Configuration Item: " +"<literal>APT::FTPArchive::MD5</literal>" +msgstr "" +"Generiert MD5-Summen. Dies ist standardm????ig an, wenn es ausgeschaltet " +"ist, haben die generierten Indexdateien keine MD5Sum-Felder, sofern dies m??" +"glich ist. Konfigurationselement: <literal>APT::FTPArchive::MD5</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:503 +msgid "<option>--db</option>" +msgstr "<option>--db</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:505 +msgid "" +"Use a binary caching DB. This has no effect on the generate command. " +"Configuration Item: <literal>APT::FTPArchive::DB</literal>." +msgstr "" +"Benutzt eine Programmzwischenspeicherdatenbank. Dies hat keine Auswirkung " +"auf den generate-Befehl. Konfigurationselement: <literal>APT::FTPArchive::" +"DB</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:511 +msgid "" +"Quiet; produces output suitable for logging, omitting progress indicators. " +"More q's will produce more quiet up to a maximum of 2. You can also use " +"<option>-q=#</option> to set the quiet level, overriding the configuration " +"file. Configuration Item: <literal>quiet</literal>." +msgstr "" +"Still; erzeugt eine Ausgabe, die f??r Protokollierung geeignet ist und " +"Fortschrittsanzeiger wegl??sst. Mehr ??q??s unterdr??cken mehr Ausgaben, bis " +"zu einem Maximum von 2. Sie k??nnen au??erdem <option>-q=#</option> " +"benutzen, um die Stillestufe zu setzen, was die Konfigurationsdatei ??" +"berschreibt. Konfigurationselement: <literal>quiet</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:517 +msgid "<option>--delink</option>" +msgstr "<option>--delink</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:519 +msgid "" +"Perform Delinking. If the <literal>External-Links</literal> setting is used " +"then this option actually enables delinking of the files. It defaults to on " +"and can be turned off with <option>--no-delink</option>. Configuration " +"Item: <literal>APT::FTPArchive::DeLinkAct</literal>." +msgstr "" +"F??hrt Delinking aus. Wenn die <literal>External-Links</literal>-Einstellung " +"benutzt wird, schaltet diese Option das Delinking zu Dateien ein. " +"Standardm????ig ist es an und kann mit <option>--no-delink</option> " +"ausgeschaltet werden. Konfigurationselement: <literal>APT::FTPArchive::" +"DeLinkAct</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:525 +msgid "<option>--contents</option>" +msgstr "<option>--contents</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:527 +msgid "" +"Perform contents generation. When this option is set and package indexes are " +"being generated with a cache DB then the file listing will also be extracted " +"and stored in the DB for later use. When using the generate command this " +"option also allows the creation of any Contents files. The default is on. " +"Configuration Item: <literal>APT::FTPArchive::Contents</literal>." +msgstr "" +"F??hrt Inhaltsgenerierung durch. Wenn diese Option gesetzt ist und " +"Paketindizes mit einer Zwischenspeicherdatenbank generiert werden, dann wird " +"die Dateiliste auch extrahiert und f??r sp??tere Benutzung in der Datenbank " +"gespeichert. Wenn der generate-Befehl benutzt wird, erlaubt diese Option au??" +"erdem die Erzeugung beliebiger Contents-Dateien. Die Vorgabe ist an. " +"Konfigurationselement: <literal>APT::FTPArchive::Contents</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:535 +msgid "<option>--source-override</option>" +msgstr "<option>--source-override</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:537 +msgid "" +"Select the source override file to use with the <literal>sources</literal> " +"command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</" +"literal>." +msgstr "" +"W??hlt die Quell-Override-Datei, die mit dem <literal>sources</literal>-" +"Befehl benutzt wird. Konfigurationselement: <literal>APT::FTPArchive::" +"SourceOverride</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-ftparchive.1.xml:541 +msgid "<option>--readonly</option>" +msgstr "<option>--readonly</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-ftparchive.1.xml:543 +msgid "" +"Make the caching databases read only. Configuration Item: <literal>APT::" +"FTPArchive::ReadOnlyDB</literal>." +msgstr "" +"Gibt der Zwischenspeicherdatenbank nur Lesezugriff. Konfigurationselement: " +"<literal>APT::FTPArchive::ReadOnlyDB</literal>." + +#. type: Content of: <refentry><refsect1><title> +#: apt-ftparchive.1.xml:552 apt.conf.5.xml:962 apt_preferences.5.xml:462 +#: sources.list.5.xml:181 +msgid "Examples" +msgstr "Beispiele" + +#. type: Content of: <refentry><refsect1><para><programlisting> +#: apt-ftparchive.1.xml:558 +#, no-wrap +msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" +msgstr "<command>apt-ftparchive</command> Pakete <replaceable>Verzeichnis</replaceable> | <command>gzip</command> > <filename>Pakete.gz</filename>\n" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:554 +msgid "" +"To create a compressed Packages file for a directory containing binary " +"packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" +msgstr "" +"Um eine gepackte Paketdatei f??r ein Verzeichnis zu erstellen, das " +"Programmpakete (.deb) enth??lt: <placeholder type=\"programlisting\" id=\"0" +"\"/>" + +#. type: Content of: <refentry><refsect1><para> +#: apt-ftparchive.1.xml:568 +msgid "" +"<command>apt-ftparchive</command> returns zero on normal operation, decimal " +"100 on error." +msgstr "" +"<command>apt-ftparchive</command> gibt bei normalen Operationen 0 zur??ck, " +"dezimal 100 bei Fehlern." + +#. The last update date +#. type: Content of: <refentry><refentryinfo> +#: apt-get.8.xml:13 +msgid "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>08 " +"November 2008</date>" +msgstr "" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>8. " +"November 2008</date>" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-get.8.xml:22 apt-get.8.xml:29 +msgid "apt-get" +msgstr "apt-get" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-get.8.xml:30 +msgid "APT package handling utility -- command-line interface" +msgstr "APT-Werkzeug f??r den Umgang mit Paketen -- Befehlszeilenschnittstelle" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-get.8.xml:36 +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>" +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" +"\"><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> </" +"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 " +"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:126 +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;." +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;." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:135 apt-key.8.xml:123 +msgid "update" +msgstr "update" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:136 +msgid "" +"<literal>update</literal> is used to resynchronize the package index files " +"from their sources. The indexes of available packages are fetched from the " +"location(s) specified in <filename>/etc/apt/sources.list</filename>. For " +"example, when using a Debian archive, this command retrieves and scans the " +"<filename>Packages.gz</filename> files, so that information about new and " +"updated packages is available. An <literal>update</literal> should always be " +"performed before an <literal>upgrade</literal> or <literal>dist-upgrade</" +"literal>. Please be aware that the overall progress meter will be incorrect " +"as the size of the package files cannot be known in advance." +msgstr "" +"<literal>update</literal> wird benutzt, um die Paketindexdatei wieder mit " +"ihren Quellen zu synchronisieren. Die Indizes verf??gbarer Pakete werden von " +"den in <filename>/etc/apt/sources.list</filename> angegebenen Orten geladen. " +"Wenn Sie zum Beispiel ein Debian-Archiv benutzen, erneuert dieser Befehl die " +"<filename>Packages.gz</filename>-Dateien und wertet sie aus, so dass " +"Informationen ??ber neue und aktualisierte Pakete verf??gbar sind. Ein " +"<literal>update</literal> sollte immer vor einem <literal>upgrade</literal> " +"oder <literal>dist-upgrade</literal> ausgef??hrt werden. Bitte seien Sie " +"sich bewusst, dass die Gesamtfortschrittsanzeige nicht richtig sein wird, da " +"die Gr????e der Pakete nicht im voraus bekannt ist." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:147 +msgid "upgrade" +msgstr "upgrade" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:148 +msgid "" +"<literal>upgrade</literal> is used to install the newest versions of all " +"packages currently installed on the system from the sources enumerated in " +"<filename>/etc/apt/sources.list</filename>. Packages currently installed " +"with new versions available are retrieved and upgraded; under no " +"circumstances are currently installed packages removed, or packages not " +"already installed retrieved and installed. New versions of currently " +"installed packages that cannot be upgraded without changing the install " +"status of another package will be left at their current version. An " +"<literal>update</literal> must be performed first so that <command>apt-get</" +"command> knows that new versions of packages are available." +msgstr "" +"<literal>upgrade</literal> wird benutzt, um die neusten Versionen aller " +"aktuell auf dem System installierten Pakete aus den in <filename>/etc/apt/" +"sources.list</filename> aufgez??hlten Quellen zu installieren. Aktuell " +"installierte Pakete mit verf??gbaren neuen Versionen werden heruntergeladen " +"und das Upgrade durchgef??hrt. Unter keinen Umst??nden werden derzeit " +"installierte Pakete entfernt oder nicht installierte Pakete heruntergeladen " +"und installiert. Neue Versionen von aktuell installierten Paketen von denen " +"kein Upgrade durchgef??hrt werden kann, ohne den Installationsstatus eines " +"anderen Paketes zu ??ndern, werden in ihrer aktuellen Version bleiben. " +"Zuerst muss ein <literal>update</literal> durchgef??hrt werden, so dass " +"<command>apt-get</command> die neuen Versionen der verf??gbaren Pakete kennt." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:160 +msgid "dselect-upgrade" +msgstr "dselect-upgrade" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:161 +msgid "" +"<literal>dselect-upgrade</literal> is used in conjunction with the " +"traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</" +"literal> follows the changes made by &dselect; to the <literal>Status</" +"literal> field of available packages, and performs the actions necessary to " +"realize that state (for instance, the removal of old and the installation of " +"new packages)." +msgstr "" +"<literal>dselect-upgrade</literal> wird zusammen mit der traditionellen " +"Debian-Oberfl??che &dselect; benutzt. <literal>dselect-upgrade</literal> " +"folgt den durch &dselect; am <literal>Status</literal>-Feld verf??gbarer " +"Pakete gemachten ??nderungen und f??hrt die notwendigen Aktionen durch, um " +"diesen Status zu realisieren (zum Beispiel das Entfernen von alten und " +"Installieren von neuen Paketen)." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:170 +msgid "dist-upgrade" +msgstr "dist-upgrade" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:171 +msgid "" +"<literal>dist-upgrade</literal> in addition to performing the function of " +"<literal>upgrade</literal>, also intelligently handles changing dependencies " +"with new versions of packages; <command>apt-get</command> has a \"smart\" " +"conflict resolution system, and it will attempt to upgrade the most " +"important packages at the expense of less important ones if necessary. So, " +"<literal>dist-upgrade</literal> command may remove some packages. The " +"<filename>/etc/apt/sources.list</filename> file contains a list of locations " +"from which to retrieve desired package files. See also &apt-preferences; " +"for a mechanism for overriding the general settings for individual packages." +msgstr "" +"<literal>dist-upgrade</literal> f??hrt zus??tzlich zu der Funktion von " +"<literal>upgrade</literal> intelligente Handhabung von Abh??ngigkeits??" +"nderungen mit neuen Versionen von Paketen durch. <command>apt-get</command> " +"hat ein ??intelligentes?? Konfliktaufl??sungssystem und es wird versuchen, " +"Upgrades der wichtigsten Pakete, wenn n??tig zu Lasten der weniger " +"wichtigen, zu machen. So k??nnte der <literal>dist-upgrade</literal>-Befehl " +"einige Pakete entfernen. Die <filename>/etc/apt/sources.list</filename>-" +"Datei enth??lt eine Liste mit Orten, von denen gew??nschte Paketdateien " +"abgerufen werden. Siehe auch &apt-preferences; f??r einen Mechanismus zum ??" +"berschreiben der allgemeinen Einstellungen f??r einzelne Pakete." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:183 +msgid "install" +msgstr "install" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:185 +msgid "" +"<literal>install</literal> is followed by one or more packages desired for " +"installation or upgrading. Each package is a package name, not a fully " +"qualified filename (for instance, in a Debian GNU/Linux system, libc6 would " +"be the argument provided, not <literal>libc6_1.9.6-2.deb</literal>). All " +"packages required by the package(s) specified for installation will also be " +"retrieved and installed. The <filename>/etc/apt/sources.list</filename> " +"file is used to locate the desired packages. If a hyphen is appended to the " +"package name (with no intervening space), the identified package will be " +"removed if it is installed. Similarly a plus sign can be used to designate " +"a package to install. These latter features may be used to override " +"decisions made by apt-get's conflict resolution system." +msgstr "" +"<literal>install</literal> wird gefolgt von einem oder mehreren gew??nschten " +"Paketen zur Installation oder zum Upgrade. Jedes Paket ist ein Paketname, " +"kein vollst??ndig zusammengesetzter Dateiname (zum Beispiel w??re in einem ??" +"Debian GNU/Linux??-System libc6 das bereitgestellte Argument, nicht " +"<literal>libc6_1.9.6-2.deb</literal>). Alle von den zur Installation " +"angegebenen Paketen ben??tigten Pakete werden zus??tzlich heruntergeladen " +"und installiert. Die <filename>/etc/apt/sources.list</filename>-Datei wird " +"benutzt, um die gew??nschten Pakete zu finden. Wenn ein Bindestrich an den " +"Paketnamen (ohne Leerzeichen dazwischen) angeh??ngt ist, wird das erkannte " +"Pakete entfernt, falls es installiert ist. ??hnlich kann ein Pluszeichen " +"benutzt werden, um ein Paket zum Installieren vorzumerken. Diese letzteren " +"Funktionen k??nnen benutzt werden, um Entscheidungen zu ??berschreiben, die " +"vom Konfliktaufl??sungssystem von apt-get getroffen wurden." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:203 +msgid "" +"A specific version of a package can be selected for installation by " +"following the package name with an equals and the version of the package to " +"select. This will cause that version to be located and selected for install. " +"Alternatively a specific distribution can be selected by following the " +"package name with a slash and the version of the distribution or the Archive " +"name (stable, testing, unstable)." +msgstr "" +"Eine bestimmte Version eines Paketes kann durch den Paketnamen gefolgt von " +"einem Gleichheitszeichen und der Version des Paketes zur Installation " +"ausgew??hlt werden. Dies bewirkt, dass diese Version gesucht und zum " +"Installieren ausgew??hlt wird. Alternativ kann eine bestimmte Distribution " +"durch den Paketnamen gefolgt von einem Schr??gstrich und der Version der " +"Distribution oder des Archivnamens (stable, testing, unstable) ausgew??hlt " +"werden." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:210 +msgid "" +"Both of the version selection mechanisms can downgrade packages and must be " +"used with care." +msgstr "" +"Beide Mechanismen der Versionsauswahl k??nnen ein Downgrade von Paketen " +"durchf??hren und m??ssen mit Vorsicht gehandhabt werden." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:213 +msgid "" +"This is also the target to use if you want to upgrade one or more already-" +"installed packages without upgrading every package you have on your system. " +"Unlike the \"upgrade\" target, which installs the newest version of all " +"currently installed packages, \"install\" will install the newest version of " +"only the package(s) specified. Simply provide the name of the package(s) " +"you wish to upgrade, and if a newer version is available, it (and its " +"dependencies, as described above) will be downloaded and installed." +msgstr "" +"Dies ist au??erdem die bevorzugt zu benutzende Art, wenn Sie Sie ein Upgrade " +"eines oder mehrerer bereits installierter Pakete durchf??hren m??chten, ohne " +"ein Upgrade aller Pakete, die Sie auf Ihrem System haben, durchzuf??hren. " +"Anders als das Ziel von ??upgrade??, das die neusten Versionen aller aktuell " +"installierten Pakete installiert, wird ??install?? nur die neusten Versionen " +"der angegebenen Pakete installieren. Geben Sie einfach den Namen des Paketes " +"an, von dem Sie ein Upgrade durchf??hren m??chten und wenn eine neuere " +"Version verf??gbar ist, wird sie (und ihre Abh??ngigkeiten, wie oben " +"beschrieben) heruntergeladen und installiert." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:224 +msgid "" +"Finally, the &apt-preferences; mechanism allows you to create an alternative " +"installation policy for individual packages." +msgstr "" +"Letztendlich erlaubt Ihnen der &apt-preferences;-Mechanismus eine " +"alternative Installationsrichtlinie f??r eigene Pakete zu erzeugen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:228 +msgid "" +"If no package matches the given expression and the expression contains one " +"of '.', '?' or '*' then it is assumed to be a POSIX regular expression, and " +"it is applied to all package names in the database. Any matches are then " +"installed (or removed). Note that matching is done by substring so 'lo.*' " +"matches 'how-lo' and 'lowest'. If this is undesired, anchor the regular " +"expression with a '^' or '$' character, or create a more specific regular " +"expression." +msgstr "" +"Wenn keine Pakete dem angegebenen Ausdruck entsprechen und der Ausdruck " +"entweder ??.??,??,??,????? oder ??*?? enth??lt, dann wird vermutet, dass es " +"sich um einen regul??ren POSIX-Ausdruck handelt und er wird auf alle " +"Paketnamen in der Datenbank angewandt. Jeder Treffer wird dann installiert " +"(oder entfernt). Beachten Sie, dass nach ??bereinstimmenden " +"Zeichenkettenteilen gesucht wird, so dass ??lo.*?? auf ??how-lo?? und ??" +"lowest?? passt. Wenn dies nicht gew??nscht wird, h??ngen Sie an den regul??" +"ren Ausdruck ein ??^??- oder ??$??-Zeichen, um genauere regul??re Ausdruck " +"zu erstellen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:237 +msgid "remove" +msgstr "remove" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:238 +msgid "" +"<literal>remove</literal> is identical to <literal>install</literal> except " +"that packages are removed instead of installed. Note the removing a package " +"leaves its configuration files in system. If a plus sign is appended to the " +"package name (with no intervening space), the identified package will be " +"installed instead of removed." +msgstr "" +"<literal>remove</literal> ist identisch mit <literal>install</literal>, mit " +"der Ausnahme, dass Pakte entfernt anstatt installiert werden. Beachten Sie, " +"dass das Entfernen von Paketen deren Konfigurationsdateien im System bel??" +"sst. Wenn ein Pluszeichen an den Paketnamen angeh??ngt wird (ohne " +"Leerzeichen dazwischen) wird das erkannte Paket installiert anstatt entfernt." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:245 +msgid "purge" +msgstr "purge" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:246 +msgid "" +"<literal>purge</literal> is identical to <literal>remove</literal> except " +"that packages are removed and purged (any configuration files are deleted " +"too)." +msgstr "" +"<literal>purge</literal> entspricht <literal>remove</literal> mit der " +"Ausnahme, dass Pakete entfernt und vollst??ndig gel??scht werden (jegliche " +"Konfigurationsdateien werden mitgel??scht)." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:250 +msgid "source" +msgstr "source" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:251 +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 while respect the " +"default release, set with the option <literal>APT::Default-Release</" +"literal>, the <option>-t</option> option or per package with with the " +"<literal>pkg/release</literal> syntax, if possible." +msgstr "" +"<literal>source</literal> veranlasst <command>apt-get</command> dazu, " +"Paketquellen zu laden. APT wird die verf??gbaren Pakete ??berpr??fen, um zu " +"entscheiden, welche Paketquellen geladen werden. Es wird dann die neueste " +"Version der Paketquelle finden und in das aktuelle Verzeichnis " +"herunterladen. Dabei ber??cksichtigt es das Vorgabe-Release, das mit der " +"Option <literal>APT::Default-Release</literal>, der Option <option>-t</" +"option> oder pro Paket mit der <literal>pkg/release</literal>-Syntax gesetzt " +"wurde, wenn m??glich." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:259 +msgid "" +"Source packages are tracked separately from binary packages via <literal>deb-" +"src</literal> type lines in the &sources-list; file. This means that you " +"will need to add such a line for each repository you want to get sources " +"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 "" +"Paketquellen werden von Programmpaket getrennt ??ber <literal>deb-src</" +"literal>-Typzeilen in der &sources-list;-Datei nachverfolgt. Das bedeutet, " +"dass Sie f??r jedes Depot, aus dem Sie Quellen erhalten wollen, eine solche " +"Zeile hinzuf??gen m??ssen. Wenn Sie dies nicht tun, werden Sie eine andere " +"als die passende (neuere, ??ltere oder keine) Quellenversion erhalten, die " +"Sie installiert haben oder installieren k??nnten." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:266 +msgid "" +"If the <option>--compile</option> options is specified then the package will " +"be compiled to a binary .deb using <command>dpkg-buildpackage</command>, if " +"<option>--download-only</option> is specified then the source package will " +"not be unpacked." +msgstr "" +"Wenn die <option>--compile</option>-Option angegeben ist, dann wird das " +"Paket unter Benutzung von <command>dpkg-buildpackage</command> zu einem bin??" +"ren .deb kompiliert, wenn <option>--download-only</option> angegeben ist, " +"wird das Quellpaket nicht entpackt." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:271 +msgid "" +"A specific source version can be retrieved by postfixing the source name " +"with an equals and then the version to fetch, similar to the mechanism used " +"for the package files. This enables exact matching of the source package " +"name and version, implicitly enabling the <literal>APT::Get::Only-Source</" +"literal> option." +msgstr "" +"Eine bestimmte Quellversion kann durch Voranstellen eines " +"Gleichheitszeichens vor den Paketnamen und dann der Version zum " +"Herunterladen erhalten werde, ??hnlich dem Mechanismus, der f??r " +"Paketdateien benutzt wird. Dies erm??glicht exakte ??bereinstimmung von " +"Quellpaketname und -Version und impliziert das Einschalten der<literal>APT::" +"Get::Only-Source</literal>-Option." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:277 +msgid "" +"Note that source packages are not tracked like binary packages, they exist " +"only in the current directory and are similar to downloading source tar " +"balls." +msgstr "" +"Beachten Sie, dass Quellpakete nicht wie normale Programmpakete nachverfolgt " +"werden, sie existieren nur im aktuellen Verzeichnis und sind " +"heruntergeladenen Tarballs ??hnlich." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:282 +msgid "build-dep" +msgstr "build-dep" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:283 +msgid "" +"<literal>build-dep</literal> causes apt-get to install/remove packages in an " +"attempt to satisfy the build dependencies for a source package." +msgstr "" +"<literal>build-dep</literal> veranlasst apt-get, Pakete zu installieren/" +"entfernen, um zu versuchen, die Bauabh??ngigkeiten eines Quellpakets zu erf??" +"llen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:287 +msgid "check" +msgstr "check" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:288 +msgid "" +"<literal>check</literal> is a diagnostic tool; it updates the package cache " +"and checks for broken dependencies." +msgstr "" +"<literal>check</literal> ist ein Diagnosewerkzeug. Es aktualisiert den " +"Paketzwischenspeicher und pr??ft, ob besch??digte Abh??ngigkeiten vorliegen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:293 +msgid "" +"<literal>clean</literal> clears out the local repository of retrieved " +"package files. It removes everything but the lock file from " +"<filename>&cachedir;/archives/</filename> and <filename>&cachedir;/archives/" +"partial/</filename>. When APT is used as a &dselect; method, <literal>clean</" +"literal> is run automatically. Those who do not use dselect will likely " +"want to run <literal>apt-get clean</literal> from time to time to free up " +"disk space." +msgstr "" +"<literal>clean</literal> bereinigt das lokale Depot von heruntergeladenen " +"Paketdateien. Es entfernt alles au??er der Sperrdatei aus " +"<filename>&cachedir;/archives/</filename> und <filename>&cachedir;/archives/" +"partial/</filename>. Wenn APT als eine &dselect;-Methode benutzt wird, wird " +"<literal>clean</literal> automatisch ausgef??hrt. Diejenigen, die Dselect " +"nicht benutzen, werden <literal>apt-get clean</literal> wahrscheinlich von " +"Zeit zu Zeit ausf??hren, um Plattenplatz freizugeben." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:302 +msgid "autoclean" +msgstr "autoclean" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:303 +msgid "" +"Like <literal>clean</literal>, <literal>autoclean</literal> clears out the " +"local repository of retrieved package files. The difference is that it only " +"removes package files that can no longer be downloaded, and are largely " +"useless. This allows a cache to be maintained over a long period without it " +"growing out of control. The configuration option <literal>APT::Clean-" +"Installed</literal> will prevent installed packages from being erased if it " +"is set to off." +msgstr "" +"Wie <literal>clean</literal> bereinigt <literal>autoclean</literal> das " +"lokale Depot von heruntergeladenen Paketdateien. Der Unterschied besteht " +"darin, dass es nur Pakete entfernt, die nicht mehr heruntergeladen werden k??" +"nnen und gr????tenteils nutzlos sind. Dies erlaubt es, einen " +"Zwischenspeicher ??ber eine lange Zeitspanne zu betreuen, ohne dass er " +"unkontrolliert anw??chst. Die Konfigurationsoption <literal>APT::Clean-" +"Installed</literal> wird installierte Pakete vor der L??schung bewahren, " +"wenn sie auf off gesetzt ist." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:312 +msgid "autoremove" +msgstr "autoremove" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:313 +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." +msgstr "" +"<literal>autoremove</literal> wird benutzt, um Pakete, die automatisch " +"installiert wurden, um Abh??ngigkeiten f??r einige Pakete zu erf??llen und " +"und die nicht mehr ben??tigt werden, zu entfernen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:323 apt-get.8.xml:429 +msgid "<option>--no-install-recommends</option>" +msgstr "<option>--no-install-recommends</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:324 +msgid "" +"Do not consider recommended packages as a dependency for installing. " +"Configuration Item: <literal>APT::Install-Recommends</literal>." +msgstr "" +"Empfohlene Pakete nicht als Abh??ngigkeit f??r die Installation betrachten. " +"Konfigurationselement: <literal>APT::Install-Recommends</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:328 +msgid "<option>--download-only</option>" +msgstr "<option>--download-only</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:329 +msgid "" +"Download only; package files are only retrieved, not unpacked or installed. " +"Configuration Item: <literal>APT::Get::Download-Only</literal>." +msgstr "" +"Nur herunterladen; Paketdateien werde nur heruntergeladen, nicht entpackt " +"oder installiert. Konfigurationselement: <literal>APT::Get::Download-Only</" +"literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:333 +msgid "<option>--fix-broken</option>" +msgstr "<option>--fix-broken</option>" + +# s/Any Package that are specified/Any package that is specified/ +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:334 +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>." +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 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 Abh??" +"ngigkeitsstruktur eines Systems so fehlerhaft ist, dass ein manuelles " +"Eingreifen erforderlich ist (was normalerweise bedeutet, dass &dselect; oder " +"<command>dpkg --remove</command> benutzt wird, um einige der fehlerhaften " +"Pakete zu beseitigen). Wenn Sie die Option zusammen mit <option>-m</option> " +"benutzen, k??nnte das in einigen Situationen zu Fehlern f??hren. " +"Konfigurationselement: <literal>APT::Get::Fix-Broken</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:347 +msgid "<option>--ignore-missing</option>" +msgstr "<option>--ignore-missing</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:348 +msgid "<option>--fix-missing</option>" +msgstr "<option>--fix-missing</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:349 +msgid "" +"Ignore missing packages; If packages cannot be retrieved or fail the " +"integrity check after retrieval (corrupted package files), hold back those " +"packages and handle the result. Use of this option together with <option>-f</" +"option> may produce an error in some situations. If a package is selected " +"for installation (particularly if it is mentioned on the command line) and " +"it could not be downloaded then it will be silently held back. " +"Configuration Item: <literal>APT::Get::Fix-Missing</literal>." +msgstr "" +"Fehlende Pakete ignorieren; Wenn Pakete nicht heruntergeladen werden k??nnen " +"oder die Integrit??tspr??fung nach dem Herunterladen fehlschl??gt " +"(fehlerhafte Paketdateien), werden diese Pakete zur??ckgehalten und das " +"Ergebnis verarbeitet. Die Benutzung dieser Option zusammen mit <option>-f</" +"option> kann in einigen Situationen zu Fehlern f??hren. Wenn ein Paket zur " +"Installation ausgew??hlt ist (besonders, wenn es auf der Befehlszeile " +"genannt wurde) und es nicht heruntergeladen werden kann, wird es " +"stillschweigend zur??ckgehalten. Konfigurationselement: <literal>APT::Get::" +"Fix-Missing</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:359 +msgid "<option>--no-download</option>" +msgstr "<option>--no-download</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:360 +msgid "" +"Disables downloading of packages. This is best used with <option>--ignore-" +"missing</option> to force APT to use only the .debs it has already " +"downloaded. Configuration Item: <literal>APT::Get::Download</literal>." +msgstr "" +"Schaltet das Herunterladen von Paketen aus. Dies wird am besten mit " +"<option>--ignore-missing</option> benutzt, um APT zu zwingen, nur die .debs " +"zu benutzten, die es bereits heruntergeladenen hat. Konfigurationselement: " +"<literal>APT::Get::Download</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:367 +msgid "" +"Quiet; produces output suitable for logging, omitting progress indicators. " +"More q's will produce more quiet up to a maximum of 2. You can also use " +"<option>-q=#</option> to set the quiet level, overriding the configuration " +"file. Note that quiet level 2 implies <option>-y</option>, you should never " +"use -qq without a no-action modifier such as -d, --print-uris or -s as APT " +"may decided to do something you did not expect. Configuration Item: " +"<literal>quiet</literal>." +msgstr "" +"Still; erzeugt eine Ausgabe, die f??r Protokollierung geeignet ist und " +"Fortschrittsanzeiger wegl??sst. Mehr ??q??s unterdr??cken mehr Ausgaben, bis " +"zu einem Maximum von 2. Sie k??nnen au??erdem <option>-q=#</option> " +"benutzen, um die Stillestufe zu setzen, was die Konfigurationsdatei ??" +"berschreibt. Beachten Sie, dass Stillestufe 2 <option>-y</option> " +"impliziert. Sie sollten niemals -qq ohne einen keine-Aktion-Umwandler, wie -" +"d, --print-uris oder -s benutzen, da APT entscheiden k??nnte, etwas zu tun, " +"das Sie nicht erwarten. Konfigurationselement: <literal>quiet</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:377 +msgid "<option>--simulate</option>" +msgstr "<option>--simulate</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:379 +msgid "<option>--dry-run</option>" +msgstr "<option>--dry-run</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:382 +msgid "" +"No action; perform a simulation of events that would occur but do not " +"actually change the system. Configuration Item: <literal>APT::Get::" +"Simulate</literal>." +msgstr "" +"Keine Aktion; f??hrt eine Simulation von Ereignissen aus, die eintreten w??" +"rden, aber das aktuelle System nicht ver??ndern. Konfigurationselement: " +"<literal>APT::Get::Simulate</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:386 +msgid "" +"Simulation run as user will deactivate locking (<literal>Debug::NoLocking</" +"literal>) automatic. Also a notice will be displayed indicating that this " +"is only a simulation, if the option <literal>APT::Get::Show-User-Simulation-" +"Note</literal> is set (Default: true). Neither NoLocking nor the notice " +"will be triggered if run as root (root should know what he is doing without " +"further warnings by <literal>apt-get</literal>)." +msgstr "" +"Ausf??hrung der Simulation als normaler Anwender wird das Sperren " +"(<literal>Debug::NoLocking</literal>) automatisch deaktivieren. Au??erdem " +"wird eine Mitteilung angezeigt, die angibt, dass dies nur eine Simulation " +"ist, wenn die Option <literal>APT::Get::Show-User-Simulation-Note</literal> " +"gesetzt ist (Vorgabe ist true). Weder NoLocking noch die Mitteilung werden " +"ausgel??st, wenn es als root ausgef??hrt wird (root sollte ohne weitere " +"Warnungen von <literal>apt-get</literal> wissen, was er tut)." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:392 +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)." +msgstr "" +"Simulieren gibt eine Serie von Zeilen aus, von denen jede eine Dpkg-" +"Operation darstellt: Konfigurieren (Conf), Entfernen (Remv), Entpacken " +"(Inst). Eckige Klammern zeigen besch??digte Pakete an und ein leeres Paar " +"eckiger Klammern bedeutet Unterbrechungen, die keine Folgen haben (selten)." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:399 +msgid "<option>-y</option>" +msgstr "<option>-y</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:399 +msgid "<option>--yes</option>" +msgstr "<option>--yes</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:400 +msgid "<option>--assume-yes</option>" +msgstr "<option>--assume-yes</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:401 +msgid "" +"Automatic yes to prompts; assume \"yes\" as answer to all prompts and run " +"non-interactively. If an undesirable situation, such as changing a held " +"package, trying to install a unauthenticated package or removing an " +"essential package occurs then <literal>apt-get</literal> will abort. " +"Configuration Item: <literal>APT::Get::Assume-Yes</literal>." +msgstr "" +"Automatisches ??Ja?? auf Anfragen; Versucht ??Ja?? auf alle Anfragen zu " +"antworten und ohne Eingaben zu laufen. Wenn eine unerw??nschte Situation " +"eintritt, wie ein gehaltenes Paket zu ??ndern, ein nicht authentifiziert " +"Paket zu installieren oder ein essentielles Paket zu entfernen, dann wird " +"<literal>apt-get</literal> abgebrochen. Konfigurationselement: <literal>APT::" +"Get::Assume-Yes</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:408 +msgid "<option>-u</option>" +msgstr "<option>-u</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:408 +msgid "<option>--show-upgraded</option>" +msgstr "<option>--show-upgraded</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:409 +msgid "" +"Show upgraded packages; Print out a list of all packages that are to be " +"upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>." +msgstr "" +"Zeigt Pakete, von denen ein Upgrade durchgef??hrt werden soll; Gibt eine " +"Liste aller Pakete aus, von denen ein Upgrade gemacht wurde. " +"Konfigurationselement: <literal>APT::Get::Show-Upgraded</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:414 +msgid "<option>-V</option>" +msgstr "<option>-V</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:414 +msgid "<option>--verbose-versions</option>" +msgstr "<option>--verbose-versions</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:415 +msgid "" +"Show full versions for upgraded and installed packages. Configuration Item: " +"<literal>APT::Get::Show-Versions</literal>." +msgstr "" +"Zeigt vollst??ndige Versionen f??r Pakete, von denen ein Upgrade durchgef??" +"hrt oder die installiert wurden. Konfigurationselement: <literal>APT::Get::" +"Show-Versions</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:419 +msgid "<option>-b</option>" +msgstr "<option>-b</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:419 +msgid "<option>--compile</option>" +msgstr "<option>--compile</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:420 +msgid "<option>--build</option>" +msgstr "<option>--build</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:421 +msgid "" +"Compile source packages after downloading them. Configuration Item: " +"<literal>APT::Get::Compile</literal>." +msgstr "" +"Kompiliert Quellpakete, nachdem sie heruntergeladen wurden. " +"Konfigurationselement: <literal>APT::Get::Compile</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:425 +msgid "<option>--install-recommends</option>" +msgstr "<option>--install-recommends</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:426 +msgid "Also install recommended packages." +msgstr "Installiert au??erdem empfohlene Pakete." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:430 +msgid "Do not install recommended packages." +msgstr "Keine empfohlenen Pakete installieren." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:433 +msgid "<option>--ignore-hold</option>" +msgstr "<option>--ignore-hold</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:434 +msgid "" +"Ignore package Holds; This causes <command>apt-get</command> to ignore a " +"hold placed on a package. This may be useful in conjunction with " +"<literal>dist-upgrade</literal> to override a large number of undesired " +"holds. Configuration Item: <literal>APT::Ignore-Hold</literal>." +msgstr "" +"Ignoriert zur??ckhalten des Paketes; Dies veranlasst <command>apt-get</" +"command>, ein f??r das Paket gesetztes ??Halten?? zu ignorieren. Dies kann " +"zusammen mit <literal>dist-upgrade</literal> n??tzlich sein, um eine gro??e " +"Anzahl ungew??nschter ??Halten?? zu ??berschreiben. Konfigurationselement: " +"<literal>APT::Ignore-Hold</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:440 +msgid "<option>--no-upgrade</option>" +msgstr "<option>--no-upgrade</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:441 +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>." +msgstr "" +"Kein Upgrade von Paketen durchf??hren; Wenn es zusammen mit " +"<literal>install</literal> benutzt wird, wird <literal>no-upgrade</literal> " +"auf der Befehlszeile ein Upgrade von Paketen verhindern, wenn sie bereits " +"installiert sind. Konfigurationselement: <literal>APT::Get::Upgrade</" +"literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:447 +msgid "<option>--force-yes</option>" +msgstr "<option>--force-yes</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:448 +msgid "" +"Force yes; This is a dangerous option that will cause apt to continue " +"without prompting if it is doing something potentially harmful. It should " +"not be used except in very special situations. Using <literal>force-yes</" +"literal> can potentially destroy your system! Configuration Item: " +"<literal>APT::Get::force-yes</literal>." +msgstr "" +"??Ja?? erzwingen; Dies ist eine gef??hrliche Option, die APT veranlasst, " +"ohne Nachfrage fortzufahren, wenn es etwas m??glicherweise sch??dliches tut. " +"Es sollte nicht benutzt werden, au??er in ganz besonderen Situationen. " +"<literal>force-yes</literal> zu benutzen, kann m??glicherweise ihr System " +"zerst??ren! Konfigurationselement: <literal>APT::Get::force-yes</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:455 +msgid "<option>--print-uris</option>" +msgstr "<option>--print-uris</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:456 +msgid "" +"Instead of fetching the files to install their URIs are printed. Each URI " +"will have the path, the destination file name, the size and the expected md5 " +"hash. Note that the file name to write to will not always match the file " +"name on the remote site! This also works with the <literal>source</literal> " +"and <literal>update</literal> commands. When used with the <literal>update</" +"literal> command the MD5 and size are not included, and it is up to the user " +"to decompress any compressed files. Configuration Item: <literal>APT::Get::" +"Print-URIs</literal>." +msgstr "" +"Anstatt die Dateien herunterzuladen, werden ihre URIs ausgegeben. Jede URI " +"wird den Pfad, den Zieldateinamen, die Gr????e und den erwarteten md5-Hash " +"enthalten. Beachten Sie, dass der zu schreibende Dateiname nicht immer dem " +"Dateinamen auf der entfernt gelegenen Seite entspricht. Dies funktioniert " +"auch mit den Befehlen <literal>source</literal> und <literal>update</" +"literal>. Wenn es mit dem Befehl <literal>update</literal> benutzt wird, " +"sind MD5 und Gr????e nicht enthalten und es ist Aufgabe des Benutzers, " +"komprimierte Dateien zu dekomprimieren. Konfigurationselement: <literal>APT::" +"Get::Print-URIs</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:466 +msgid "<option>--purge</option>" +msgstr "<option>--purge</option>" + +# s/equivalent for/equivalent to the/ +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:467 +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>." +msgstr "" +"??remove?? ??purge?? f??r alles zu entfernende benutzen. Ein Stern (??*??) " +"wird bei Paketen angezeigt, die zum vollst??ndigen Entfernen vorgemerkt " +"sind. <option>remove --purge</option> entspricht dem Befehl <option>purge</" +"option>. Konfigurationselement: <literal>APT::Get::Purge</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:474 +msgid "<option>--reinstall</option>" +msgstr "<option>--reinstall</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:475 +msgid "" +"Re-Install packages that are already installed and at the newest version. " +"Configuration Item: <literal>APT::Get::ReInstall</literal>." +msgstr "" +"Paket erneut installieren, die bereits installiert und in der neuesten " +"Version sind. Konfigurationselement: <literal>APT::Get::ReInstall</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:479 +msgid "<option>--list-cleanup</option>" +msgstr "<option>--list-cleanup</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:480 +msgid "" +"This option defaults to on, use <literal>--no-list-cleanup</literal> to turn " +"it off. When on <command>apt-get</command> will automatically manage the " +"contents of <filename>&statedir;/lists</filename> to ensure that obsolete " +"files are erased. The only reason to turn it off is if you frequently " +"change your source list. Configuration Item: <literal>APT::Get::List-" +"Cleanup</literal>." +msgstr "" +"Diese Option ist standardm????ig eingeschaltet. Um sie auszuschalten, " +"benutzen Sie <literal>--no-list-cleanup</literal>. Wenn eingeschaltet, wird " +"<command>apt-get</command> den Inhalt von <filename>&statedir;/lists</" +"filename> automatisch verwalten, um sicherzustellen, dass veraltete Dateien " +"gel??scht werden. Nur das h??ufige ??ndern der Quelllisten stellt den " +"einzigen Grund zum Ausschalten der Option dar.Konfigurationselement: " +"<literal>APT::Get::List-Cleanup</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:489 +msgid "<option>--target-release</option>" +msgstr "<option>--target-release</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:490 +msgid "<option>--default-release</option>" +msgstr "<option>--default-release</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:491 +msgid "" +"This option controls the default input to the policy engine, it creates a " +"default pin at priority 990 using the specified release string. This " +"overrides the general settings in <filename>/etc/apt/preferences</" +"filename>. Specifically pinned packages are not affected by the value of " +"this option. In short, this option lets you have simple control over which " +"distribution packages will be retrieved from. Some common examples might be " +"<option>-t '2.1*'</option>, <option>-t unstable</option> or <option>-t sid</" +"option>. Configuration Item: <literal>APT::Default-Release</literal>; see " +"also the &apt-preferences; manual page." +msgstr "" +"Diese Option steuert die standardm????ige Eingabe an die Einheit zur " +"Durchsetzung der Richtlinien (??policy??), sie erstellt eine Vorgabe-Pin mit " +"Priorit??t 990 unter Benutzung der angegebenen Release-Zeichenkette. Dies ??" +"berschreibt die allgemeinen Einstellungen in <filename>/etc/apt/preferences</" +"filename>. Pakete mit speziellem Pinning sind nicht vom Wert dieser Option " +"betroffen. Kurz gesagt, gibt Ihnen diese Option einfache Kontrolle dar??ber, " +"welche Distributions-Pakete heruntergeladen werden sollen. Einige typische " +"Beispiele k??nnten <option>-t '2.1*'</option>, <option>-t unstable</option> " +"oder <option>-t sid</option> sein. Konfigurationselement: <literal>APT::" +"Default-Release</literal>; Lesen Sie auch die &apt-preferences;-" +"Handbuchseite." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:504 +msgid "<option>--trivial-only</option>" +msgstr "<option>--trivial-only</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:506 +msgid "" +"Only perform operations that are 'trivial'. Logically this can be considered " +"related to <option>--assume-yes</option>, where <option>--assume-yes</" +"option> will answer yes to any prompt, <option>--trivial-only</option> will " +"answer no. Configuration Item: <literal>APT::Get::Trivial-Only</literal>." +msgstr "" +"Nur Operationen ausf??hren, die ??trivial?? sind. Logischerweise kann dies " +"in Betracht bezogen auf <option>--assume-yes</option> sein, wobei <option>--" +"assume-yes</option> auf jede Frage mit ??Ja?? und <option>--trivial-only</" +"option> mit ??Nein?? antworten wird. Konfigurationselement: <literal>APT::" +"Get::Trivial-Only</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:512 +msgid "<option>--no-remove</option>" +msgstr "<option>--no-remove</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:513 +msgid "" +"If any packages are to be removed apt-get immediately aborts without " +"prompting. Configuration Item: <literal>APT::Get::Remove</literal>." +msgstr "" +"Wenn irgendwelche Pakete entfernt werden sollen, bricht apt-get sofort ohne " +"Nachfrage ab. Konfigurationselement: <literal>APT::Get::Remove</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:518 +msgid "<option>--auto-remove</option>" +msgstr "<option>--auto-remove</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:519 +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>." +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>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:525 +msgid "<option>--only-source</option>" +msgstr "<option>--only-source</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:526 +msgid "" +"Only has meaning for the <literal>source</literal> and <literal>build-dep</" +"literal> commands. Indicates that the given source names are not to be " +"mapped through the binary table. This means that if this option is " +"specified, these commands will only accept source package names as " +"arguments, rather than accepting binary package names and looking up the " +"corresponding source package. Configuration Item: <literal>APT::Get::Only-" +"Source</literal>." +msgstr "" +"Hat nur eine Bedeutung f??r die Befehle <literal>source</literal> und " +"<literal>build-dep</literal>. Zeigt an, dass die angegebenen Quellnamen " +"nicht durch die Programmtabelle ermittelt werden. Dies bedeutet, das dieser " +"Befehl, wenn diese Option angegeben ist, nur Quellpaketnamen als Argumente " +"akzeptiert, anstatt Programmpakete zu akzeptieren und nach den " +"entsprechenden Quellpaketen zu suchen. Konfigurationselement: <literal>APT::" +"Get::Only-Source</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:536 +msgid "<option>--diff-only</option>" +msgstr "<option>--diff-only</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:536 +msgid "<option>--dsc-only</option>" +msgstr "<option>--dsc-only</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:536 +msgid "<option>--tar-only</option>" +msgstr "<option>--tar-only</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:537 +msgid "" +"Download only the diff, dsc, or tar file of a source archive. Configuration " +"Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" +"literal>, and <literal>APT::Get::Tar-Only</literal>." +msgstr "" +"Nur die diff-, dsc-, oder tar-Dateien eines Quellarchivs herunterladen. " +"Konfigurationselemente: <literal>APT::Get::Diff-Only</literal>, " +"<literal>APT::Get::Dsc-Only</literal> und <literal>APT::Get::Tar-Only</" +"literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:542 +msgid "<option>--arch-only</option>" +msgstr "<option>--arch-only</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:543 +msgid "" +"Only process architecture-dependent build-dependencies. Configuration Item: " +"<literal>APT::Get::Arch-Only</literal>." +msgstr "" +"Nur architekturabh??ngige Bauabh??ngigkeiten verarbeiten. " +"Konfigurationselement: <literal>APT::Get::Arch-Only</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-get.8.xml:547 +msgid "<option>--allow-unauthenticated</option>" +msgstr "<option>--allow-unauthenticated</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-get.8.xml:548 +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::" +"AllowUnauthenticated</literal>." +msgstr "" +"Ignorieren, wenn Pakete nicht authentifiziert werden k??nnen und nicht " +"danach fragen. Dies ist f??r Werkzeuge wie pbuilder n??tzlich. " +"Konfigurationselement: <literal>APT::Get::AllowUnauthenticated</literal>." + +#. type: Content of: <refentry><refsect1><variablelist> +#: apt-get.8.xml:561 +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> +#: apt-get.8.xml:570 +msgid "" +"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " +"&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" +"preferences;, the APT Howto." +msgstr "" +"&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " +"&apt-config;, &apt-secure;, Die APT-Benutzeranleitung in &guidesdir;, &apt-" +"preferences;, das APT-Howto." + +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:576 +msgid "" +"<command>apt-get</command> returns zero on normal operation, decimal 100 on " +"error." +msgstr "" +"<command>apt-get</command> gibt bei normalen Operationen 0 zur??ck, dezimal " +"100 bei Fehlern." + +#. type: Content of: <refentry><refsect1><title> +#: apt-get.8.xml:579 +msgid "ORIGINAL AUTHORS" +msgstr "ORIGINALAUTOREN" + +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:580 +msgid "&apt-author.jgunthorpe;" +msgstr "&apt-author.jgunthorpe;" + +#. type: Content of: <refentry><refsect1><title> +#: apt-get.8.xml:583 +msgid "CURRENT AUTHORS" +msgstr "AKTUELLE AUTOREN" + +#. type: Content of: <refentry><refsect1><para> +#: apt-get.8.xml:585 +msgid "&apt-author.team;" +msgstr "&apt-author.team;" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-key.8.xml:14 apt-key.8.xml:21 +msgid "apt-key" +msgstr "apt-key" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-key.8.xml:22 +msgid "APT key management utility" +msgstr "APT-Schl??sselverwaltungsdienstprogramm" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-key.8.xml:28 +msgid "" +"<command>apt-key</command> <arg><replaceable>command</replaceable>/</arg> " +"<arg rep=\"repeat\"><option><replaceable>arguments</replaceable></option></" +"arg>" +msgstr "" +"<command>apt-key</command> <arg><replaceable>Befehl</replaceable>/</arg> " +"<arg rep=\"repeat\"><option><replaceable>Argumente</replaceable></option></" +"arg>" + +#. type: Content of: <refentry><refsect1><para> +#: apt-key.8.xml:36 +msgid "" +"<command>apt-key</command> is used to manage the list of keys used by apt to " +"authenticate packages. Packages which have been authenticated using these " +"keys will be considered trusted." +msgstr "" +"<command>apt-key</command> wird benutzt, um eine Liste von Schl??sseln zu " +"verwalten, die APT benutzt, um Pakete zu authentifizieren. Pakete, die durch " +"Benutzung dieser Schl??ssel authentifiziert wurden, werden als vertrauensw??" +"rdig betrachtet." + +#. type: Content of: <refentry><refsect1><title> +#: apt-key.8.xml:42 +msgid "Commands" +msgstr "Befehle" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:44 +msgid "add <replaceable>filename</replaceable>" +msgstr "add <replaceable>Dateiname</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:48 +msgid "" +"Add a new key to the list of trusted keys. The key is read from " +"<replaceable>filename</replaceable>, or standard input if " +"<replaceable>filename</replaceable> is <literal>-</literal>." +msgstr "" +"Einen neuen Schl??ssel zur Liste der vertrauensw??rdigen Schl??ssel hinzuf??" +"gen. Der Schl??ssel wird aus <replaceable>Dateiname</replaceable> gelesen " +"oder, wenn <replaceable>Dateiname</replaceable> <literal>-</literal> ist, " +"von der Standardeingabe." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:56 +msgid "del <replaceable>keyid</replaceable>" +msgstr "del <replaceable>Schl??ssel-ID</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:60 +msgid "Remove a key from the list of trusted keys." +msgstr "" +"Einen Schl??ssel von der Liste der vertrauensw??rdigen Schl??ssel entfernen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:67 +msgid "export <replaceable>keyid</replaceable>" +msgstr "export <replaceable>Schl??ssel-ID</replaceable>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:71 +msgid "Output the key <replaceable>keyid</replaceable> to standard output." +msgstr "" +"Den Schl??ssel <replaceable>Schl??ssel-ID</replaceable> auf der " +"Standardausgabe ausgeben." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:78 +msgid "exportall" +msgstr "exportall" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:82 +msgid "Output all trusted keys to standard output." +msgstr "Alle vertrauensw??rdigen Schl??ssel auf der Standardausgabe ausgeben." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:89 +msgid "list" +msgstr "list" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:93 +msgid "List trusted keys." +msgstr "Vertrauensw??rdige Schl??ssel auflisten." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:100 +msgid "finger" +msgstr "finger" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:104 +msgid "List fingerprints of trusted keys." +msgstr "Fingerabdr??cke vertrauensw??rdiger Schl??ssel auflisten." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:111 +msgid "adv" +msgstr "adv" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:115 +msgid "" +"Pass advanced options to gpg. With adv --recv-key you can download the " +"public key." +msgstr "" +"Erweitere Optionen an gpg weiterleiten. Mit adv --recv-key k??nnen Sie den ??" +"ffentlichen Schl??ssel herunterladen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:127 +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 nicht l??nger g??ltig sind." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:140 +msgid "<filename>/etc/apt/trusted.gpg</filename>" +msgstr "<filename>/etc/apt/trusted.gpg</filename>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:141 +msgid "Keyring of local trusted keys, new keys will be added here." +msgstr "" +"Schl??sselring der lokalen vertrauensw??rdigen Schl??ssel, neue Schl??ssel " +"werden hier hinzugef??gt." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:144 +msgid "<filename>/etc/apt/trustdb.gpg</filename>" +msgstr "<filename>/etc/apt/trustdb.gpg</filename>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:145 +msgid "Local trust database of archive keys." +msgstr "Lokale Datenbank vertrauensw??rdiger Archivschl??ssel." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:148 +msgid "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>" +msgstr "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:149 +msgid "Keyring of Debian archive trusted keys." +msgstr "Schl??sselring vertrauensw??rdiger Schl??ssel des Debian-Archivs." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-key.8.xml:152 +msgid "" +"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" +msgstr "" +"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-key.8.xml:153 +msgid "Keyring of Debian archive removed trusted keys." +msgstr "" +"Schl??sselring entfernter vertrauensw??rdiger Schl??ssel des Debian-Archivs." + +#. type: Content of: <refentry><refsect1><para> +#: apt-key.8.xml:164 +msgid "&apt-get;, &apt-secure;" +msgstr "&apt-get;, &apt-secure;" + +#. The last update date +#. type: Content of: <refentry><refentryinfo> +#: apt-mark.8.xml:13 +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>9. " +"August 2009</date>" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-mark.8.xml:22 apt-mark.8.xml:29 +msgid "apt-mark" +msgstr "apt-mark" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-mark.8.xml:30 +msgid "mark/unmark a package as being automatically-installed" +msgstr "" +"ein Paket als automatisch installiert markieren oder diese Markierung " +"entfernen" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-mark.8.xml:36 +msgid "" +" <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>" +msgstr "" +" <command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-" +"f=<replaceable>DATEINAME</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>Paket</replaceable></arg> </" +"arg> <arg choice=\"plain\">showauto</arg> </group>" + +#. type: Content of: <refentry><refsect1><para> +#: apt-mark.8.xml:53 +msgid "" +"<command>apt-mark</command> will change whether a package has been marked as " +"being automatically installed." +msgstr "" +"<command>apt-mark</command> wird ??ndern, ob ein Paket als automatisch " +"installiert markiert ist." + +#. type: Content of: <refentry><refsect1><para> +#: apt-mark.8.xml:57 +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 by e.g. <command>apt-get</command> or <command>aptitude</command>." +msgstr "" +"Wenn Sie die Installation eines Paketes anfordern und andere Pakete " +"installiert werden, um dessen Abh??ngigkeiten zu erf??llen, werden die Abh??" +"ngigkeiten als automatisch installiert markiert. Sobald keine manuell " +"installierten Pakete mehr von diesen automatisch installierten Paketen abh??" +"ngen, werden sie z.B durch <command>apt-get</command> oder " +"<command>aptitude</command> entfernt." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:65 +msgid "markauto" +msgstr "markauto" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:66 +msgid "" +"<literal>markauto</literal> is used to mark a package as being automatically " +"installed, which will cause the package to be removed when no more manually " +"installed packages depend on this package." +msgstr "" +"<literal>markauto</literal> wird benutzt, um ein Paket als automatisch " +"installiert zu markieren, was veranlasst, dass das Paket entfernt wird, wenn " +"keine manuell installierten Pakete von ihm abh??ngen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:73 +msgid "unmarkauto" +msgstr "unmarkauto" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:74 +msgid "" +"<literal>unmarkauto</literal> is used to mark a package as being manually " +"installed, which will prevent the package from being automatically removed " +"if no other packages depend on it." +msgstr "" +"<literal>markauto</literal> wird benutzt, um ein Paket als manuell " +"installiert zu markieren, was verhindert, dass das Paket automatisch " +"entfernt wird, wenn kein anderes Paket von ihm abh??ngt." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:81 +msgid "showauto" +msgstr "showauto" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:82 +msgid "" +"<literal>showauto</literal> is used to print a list of manually installed " +"packages with each package on a new line." +msgstr "" +"<literal>showauto</literal> wird benutzt, um eine Liste manuell " +"installierter Pakete mit einem Paket in jeder neuen Zeile, auszugeben." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:93 +msgid "" +"<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>" +msgstr "" +"<option>-f=<filename><replaceable>DATEINAME</replaceable></filename></option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:94 +msgid "" +"<option>--file=<filename><replaceable>FILENAME</replaceable></filename></" +"option>" +msgstr "" +"<option>--file=<filename><replaceable>DATEINAME</replaceable></filename></" +"option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:97 +msgid "" +"Read/Write package stats from <filename><replaceable>FILENAME</replaceable></" +"filename> instead of the default location, which is " +"<filename>extended_status</filename> in the directory defined by the " +"Configuration Item: <literal>Dir::State</literal>." +msgstr "" +"Paketstatus von <filename><replaceable>DATEINAME</replaceable></filename> " +"lesen/schreiben, anstatt vom Standardort, der <filename>extended_status</" +"filename> im von Konfigurationselement <literal>Dir::State</literal> " +"definierten Verzeichnis, ist." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:103 +msgid "<option>-h</option>" +msgstr "<option>-h</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:104 +msgid "<option>--help</option>" +msgstr "<option>--help</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:105 +msgid "Show a short usage summary." +msgstr "Eine kurze Zusammenfassung anzeigen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:111 +msgid "<option>-v</option>" +msgstr "<option>-v</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:112 +msgid "<option>--version</option>" +msgstr "<option>--version</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:113 +msgid "Show the program version." +msgstr "Die Programmversion anzeigen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-mark.8.xml:124 +msgid "<filename>/var/lib/apt/extended_states</filename>" +msgstr "<filename>/var/lib/apt/extended_states</filename>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-mark.8.xml:125 +msgid "" +"Status list of auto-installed packages. Configuration Item: <literal>Dir::" +"State</literal> sets the path to the <filename>extended_states</filename> " +"file." +msgstr "" +"Statusliste automatisch installierter Pakete. Konfigurationselement: " +"<literal>Dir::State</literal> setzt den Pfad zur Datei " +"<filename>extended_states</filename>." + +#. type: Content of: <refentry><refsect1><para> +#: apt-mark.8.xml:134 +msgid "&apt-get;,&aptitude;,&apt-conf;" +msgstr "&apt-get;,&aptitude;,&apt-conf;" + +#. type: Content of: <refentry><refsect1><para> +#: apt-mark.8.xml:138 +msgid "" +"<command>apt-mark</command> returns zero on normal operation, non-zero on " +"error." +msgstr "" +"<command>apt-mark</command> gibt bei normalen Operationen Null zur??ck, bei " +"Fehlern nicht Null." + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-secure.8.xml:14 apt-secure.8.xml:36 +msgid "apt-secure" +msgstr "apt-secure" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-secure.8.xml:37 +msgid "Archive authentication support for APT" +msgstr "Archivauthentifizierungsunterst??tzung f??r APT" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:42 +msgid "" +"Starting with version 0.6, <command>apt</command> contains code that does " +"signature checking of the Release file for all archives. This ensures that " +"packages in the archive can't be modified by people who have no access to " +"the Release file signing key." +msgstr "" +"Beginnend mit Version 0.6 enth??lt <command>apt</command> Code, der die " +"Signatur der Release-Datei f??r alle Archive pr??ft. Dies stellt sicher, " +"dass Pakete im Archiv nicht von Leuten ge??ndert werden k??nnen, die keinen " +"Zugriff auf den Signierschl??ssel der Release-Datei haben." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:50 +msgid "" +"If a package comes from a archive without a signature or with a signature " +"that apt does not have a key for that package is considered untrusted and " +"installing it will result in a big warning. <command>apt-get</command> will " +"currently only warn for unsigned archives, future releases might force all " +"sources to be verified before downloading packages from them." +msgstr "" +"Wenn ein Paket aus einem Archiv ohne Signatur stammt oder einem mit " +"Signatur, f??r das APT keinen Schl??ssel hat, wird dieses Paket als nicht " +"vertrauensw??rdig angesehen und es zu installieren, f??hrt zu einer gro??en " +"Warnung. <command>apt-get</command> wird aktuell nur bei nicht signierten " +"Archiven warnen, zuk??nftige Releases k??nnten die Pr??fung aller Quellen " +"vor dem Herunterladen von Paketen von dort erzwingen." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:59 +msgid "" +"The package frontends &apt-get;, &aptitude; and &synaptic; support this new " +"authentication feature." +msgstr "" +"Die Paketoberfl??chen &apt-get;, &aptitude; und &synaptic; unterst??tzen " +"diese neue Authentifizierungsfunktion." + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml:64 +msgid "Trusted archives" +msgstr "Vertrauensw??rdige Archive" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:67 +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." +msgstr "" +"Eine Kette des Vertrauens von einem APT-Archiv zum Endanwender wird durch " +"verschiedene Schritte erreicht. <command>apt-secure</command> ist der letzte " +"Schritt in dieser Kette. Einem Archiv zu vertrauen bedeutet nicht, dass das " +"Paket, dem Sie vertrauen, keinen schadhaften Code enth??lt, aber es " +"bedeutet, dass Sie dem Archivbetreuer vertrauen. Der Archivbetreuer ist daf??" +"r verantwortlich, dass er die Korrektheit der Integrit??t des Archivs " +"sicherstellt." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:75 +msgid "" +"apt-secure does not review signatures at a package level. If you require " +"tools to do this you should look at <command>debsig-verify</command> and " +"<command>debsign</command> (provided in the debsig-verify and devscripts " +"packages respectively)." +msgstr "" +"apt-secure ??berpr??ft keine Signaturen auf einer Ebene des Pakets. Falls " +"Sie ein Werkzeug ben??tigen, das dies tut, sollten Sie einen Blick auf " +"<command>debsig-verify</command> und <command>debsign</command> werfen " +"(bereitgestellt von den Paketen debsig-verify beziehungsweise devscripts)." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:82 +msgid "" +"The chain of trust in Debian starts when a maintainer uploads a new package " +"or a new version of a package to the Debian archive. This upload in order to " +"become effective needs to be signed by a key of a maintainer within the " +"Debian maintainer's keyring (available in the debian-keyring package). " +"Maintainer's keys are signed by other maintainers following pre-established " +"procedures to ensure the identity of the key holder." +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-keyring) " +"signiert werden. Betreuerschl??ssel werden von anderen Betreuern gem???? " +"vorbestimmter Regeln signiert, um die Identit??t des Schl??sselinhabers " +"sicherzustellen." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:92 +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." +msgstr "" +"Sobald das hochgeladenen Paket ??berpr??ft und in das Archiv hinzugef??gt " +"wurde, wird die Betreuersignatur entfernt, eine MD5-Summe des Pakets " +"berechnet und in die Paketdatei getan. Dann werden die MD5-Summen aller " +"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." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:102 +msgid "" +"Any end user can check the signature of the Release file, extract the MD5 " +"sum of a package from it and compare it with the MD5 sum of the package he " +"downloaded. Prior to version 0.6 only the MD5 sum of the downloaded Debian " +"package was checked. Now both the MD5 sum and the signature of the Release " +"file are checked." +msgstr "" +"Jeder Endanwender kann die Signatur der Release-Datei pr??fen, die MD5-Summe " +"eines Paketes daraus entpacken und mit der MD5-Summe des Pakets vergleichen, " +"das er heruntergeladen hat. Vor Version 0.6 wurde nur die MD5-Summe des " +"heruntergeladenen Debian-Pakets gepr??ft. Nun werden sowohl die MD5-Summe " +"als auch die Signatur der Release-Datei gepr??ft." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:109 +msgid "" +"Notice that this is distinct from checking signatures on a per package " +"basis. It is designed to prevent two possible attacks:" +msgstr "" +"Beachten Sie, dass dies verschieden von gepr??ften Signaturen auf Paketbasis " +"ist. Es wurde entworfen, um zwei m??gliche Angriffe zu verhindern:" + +#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: apt-secure.8.xml:114 +msgid "" +"<literal>Network \"man in the middle\" attacks</literal>. Without signature " +"checking, a malicious agent can introduce himself in the package download " +"process and provide malicious software either by controlling a network " +"element (router, switch, etc.) or by redirecting traffic to a rogue server " +"(through arp or DNS spoofing attacks)." +msgstr "" +"<literal>Network \"man in the middle\" attacks</literal>. Ohne Signaturpr??" +"fung kann ein sch??dlicher Mittelsmann sich selbst in das Herunterladen von " +"Paketen einbringen und Schadsoftware bereitstellen. Dies kann entweder durch " +"Kontrolle eines Netzwerkelements (Router, Switch, etc.) oder durch Umleiten " +"des Netzverkehrs zu einem b??sartigen Server (durch ARP- oder DNS-" +"Manipulationsangriffe) erfolgen." + +#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: apt-secure.8.xml:122 +msgid "" +"<literal>Mirror network compromise</literal>. Without signature checking, a " +"malicious agent can compromise a mirror host and modify the files in it to " +"propagate malicious software to all users downloading packages from that " +"host." +msgstr "" +"<literal>Mirror network compromise</literal>. Ohne Signaturpr??fung kann " +"ein sch??dlicher Mittelsmann einen Spiegelserver kompromittieren und die " +"Dateien darauf ver??ndern, um sch??dliche Software an alle Anwender zu " +"verbreiten, die Pakete von diesem Rechner herunterladen." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:129 +msgid "" +"However, it does not defend against a compromise of the Debian master server " +"itself (which signs the packages) or against a compromise of the key used to " +"sign the Release files. In any case, this mechanism can complement a per-" +"package signature." +msgstr "" +"Es sch??tzt jedoch nicht gegen eine Kompromittierung des Haupt-Debian-" +"Servers selbst (der die Pakete signiert) oder gegen eine Kompromittierung " +"des Schl??ssels, der zum Signieren der Release-Dateien benutzt wird. In " +"jedem Fall kann dieser Mechanismus eine Signatur pro Paket erg??nzen." + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml:135 +msgid "User configuration" +msgstr "Benutzerkonfiguration" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:137 +msgid "" +"<command>apt-key</command> is the program that manages the list of keys used " +"by apt. It can be used to add or remove keys although an installation of " +"this release will automatically provide the default Debian archive signing " +"keys used in the Debian package repositories." +msgstr "" +"<command>apt-key</command> ist das Programm, das die Liste der von APT " +"verwendeten Schl??ssel verwaltet. Es kann benutzt werden, um Schl??ssel " +"hinzuzuf??gen oder zu entfernen, obwohl eine Installation dieses Releases " +"automatisch die Standard-Debian-Archivsignierschl??ssel bereitstellt, die in " +"den Debian-Paketdepots benutzt werden." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:144 +msgid "" +"In order to add a new key you need to first download it (you should make " +"sure you are using a trusted communication channel when retrieving it), add " +"it with <command>apt-key</command> and then run <command>apt-get update</" +"command> so that apt can download and verify the <filename>Release.gpg</" +"filename> files from the archives you have configured." +msgstr "" +"Um einen neuen Schl??ssel hinzuzuf??gen, m??ssen Sie ihn zuerst " +"herunterladen (Sie sollten sicherstellen, dass Sie einen vertrauensw??rdigen " +"Kommunikationskanal benutzen, wenn Sie ihn herunterladen), ihn mit " +"<command>apt-key</command> hinzuf??gen und dann <command>apt-get update</" +"command> ausf??hren, so dass APT die <filename>Release.gpg</filename>-" +"Dateien der von Ihnen konfigurierten Archive herunterladen und pr??fen kann." + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml:153 +msgid "Archive configuration" +msgstr "Archivkonfiguration" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:155 +msgid "" +"If you want to provide archive signatures in an archive under your " +"maintenance you have to:" +msgstr "" +"Wenn Sie Archivsignaturen in einem von Ihnen betreuten Archiv zur Verf??gung " +"stellen m??chten, m??ssen Sie:" + +#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: apt-secure.8.xml:160 +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)." +msgstr "" +"<literal>Create a toplevel Release file</literal>, wenn es nicht bereits " +"existiert. Sie k??nnen dies tun, indem Sie <command>apt-ftparchive release</" +"command> (aus apt-utils) ausf??hren." + +#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: apt-secure.8.xml:165 +msgid "" +"<literal>Sign it</literal>. You can do this by running <command>gpg -abs -o " +"Release.gpg Release</command>." +msgstr "" +"<literal>Sign it</literal>. Sie k??nnen dies tun, indem Sie <command>gpg -" +"abs -o Release.gpg Release</command> ausf??hren." + +#. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> +#: apt-secure.8.xml:168 +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." +msgstr "" +"<literal>Publish the key fingerprint</literal>, derart, dass Ihre Anwender " +"wissen, welchen Schl??ssel sie importieren m??ssen, um die Dateien im Archiv " +"zu authentifizieren." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:175 +msgid "" +"Whenever the contents of the archive changes (new packages are added or " +"removed) the archive maintainer has to follow the first two steps previously " +"outlined." +msgstr "" +"Immer wenn sich die Inhalte des Archivs ??ndern (neue Pakete hinzugef??gt " +"oder entfernt werden), muss der Archivbetreuen den beiden zuerst skizzierten " +"Schritten folgen." + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:183 +msgid "" +"&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " +"&debsign; &debsig-verify;, &gpg;" +msgstr "" +"&apt-conf;, &apt-get;, &sources-list;, &apt-key;, &apt-ftparchive;, " +"&debsign; &debsig-verify;, &gpg;" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:187 +msgid "" +"For more background information you might want to review the <ulink url=" +"\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7.en.html" +"\">Debian Security Infrastructure</ulink> chapter of the Securing Debian " +"Manual (available also in the harden-doc package) and the <ulink url=" +"\"http://www.cryptnet.net/fdp/crypto/strong_distro.html\" >Strong " +"Distribution HOWTO</ulink> by V. Alex Brennen." +msgstr "" +"Um weitere Hintergrundinformationen zu erhalten, k??nnen Sie die <ulink url=" +"\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7.de.html\">Die " +"Infrastruktur f??r Sicherheit in Debian</ulink>-Kapitel des Handbuchs ??" +"Anleitung zum Absichern von Debian?? (auch verf??gbar im Paket harden-doc) " +"und dem <ulink url=\"http://www.cryptnet.net/fdp/crypto/strong_distro.html\" " +">Strong Distribution HOWTO</ulink> von V. Alex Brennen lesen." + +#. type: Content of: <refentry><refsect1><title> +#: apt-secure.8.xml:200 +msgid "Manpage Authors" +msgstr "Autoren der Handbuchseite" + +#. type: Content of: <refentry><refsect1><para> +#: apt-secure.8.xml:202 +#, fuzzy +#| msgid "" +#| "This man-page is based on the work of Javier Fern??ndez-Sanguino Pe??a, " +#| "Isaac Jones, Colin Walters, Florian Weimer and Michael Vogt." +msgid "" +"This man-page is based on the work of Javier Fernández-Sanguino Peña, Isaac " +"Jones, Colin Walters, Florian Weimer and Michael Vogt." +msgstr "" +"Diese Handbuchseite basiert auf der Arbeit von Javier Fern??ndez-Sanguino " +"Pe??a, Isaac Jones, Colin Walters, Florian Weimer und Michael Vogt." + +#. type: Content of: <refentry><refnamediv><refname> +#: apt-sortpkgs.1.xml:22 apt-sortpkgs.1.xml:29 +msgid "apt-sortpkgs" +msgstr "apt-sortpkgs" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt-sortpkgs.1.xml:30 +msgid "Utility to sort package index files" +msgstr "Werkzeug zum Sortieren von Paketindexdateien" + +#. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> +#: apt-sortpkgs.1.xml:36 +msgid "" +"<command>apt-sortpkgs</command> <arg><option>-hvs</option></arg> " +"<arg><option>-o=<replaceable>config string</replaceable></option></arg> " +"<arg><option>-c=<replaceable>file</replaceable></option></arg> <arg choice=" +"\"plain\" rep=\"repeat\"><replaceable>file</replaceable></arg>" +msgstr "" +"<command>apt-sortpkgs</command> <arg><option>-hvs</option></arg> " +"<arg><option>-o=<replaceable>Konfigurationszeichenkette</replaceable></" +"option></arg> <arg><option>-c=<replaceable>Datei</replaceable></option></" +"arg> <arg choice=\"plain\" rep=\"repeat\"><replaceable>Datei</replaceable></" +"arg>" + +#. type: Content of: <refentry><refsect1><para> +#: apt-sortpkgs.1.xml:45 +msgid "" +"<command>apt-sortpkgs</command> will take an index file (Source index or " +"Package index) and sort the records so that they are ordered by the package " +"name. It will also sort the internal fields of each record according to the " +"internal sorting rules." +msgstr "" +"<command>apt-sortpkgs</command> nimmt eine Indexdatei (Quell- oder " +"Paketindex) und sortiert die Datens??tze nach Paketnamen. Es wird au??erdem " +"die internen Felder jedes Datensatzes gem???? interner Sortierregeln " +"sortieren." + +#. type: Content of: <refentry><refsect1><para> +#: apt-sortpkgs.1.xml:51 +msgid "All output is sent to stdout, the input must be a seekable file." +msgstr "" +"Alle Ausgaben werden an stdout gesendet, die Eingabe muss eine durchsuchbare " +"Datei sein." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt-sortpkgs.1.xml:58 +msgid "<option>--source</option>" +msgstr "<option>--source</option>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt-sortpkgs.1.xml:60 +msgid "" +"Use Source index field ordering. Configuration Item: <literal>APT::" +"SortPkgs::Source</literal>." +msgstr "" +"Quellindexfeldanordnung benutzen. Konfigurationselement: <literal>APT::" +"SortPkgs::Source</literal>." + +#. type: Content of: <refentry><refsect1><para> +#: apt-sortpkgs.1.xml:74 +msgid "" +"<command>apt-sortpkgs</command> returns zero on normal operation, decimal " +"100 on error." +msgstr "" +"<command>apt-sortpkgs</command> gibt bei normalen Operationen 0 zur??ck, " +"dezimal 100 bei Fehlern." + +#. The last update date +#. type: Content of: <refentry><refentryinfo> +#: apt.conf.5.xml:13 +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>" +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>" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt.conf.5.xml:28 apt.conf.5.xml:35 +msgid "apt.conf" +msgstr "apt.conf" + +#. type: Content of: <refentry><refmeta><manvolnum> +#: apt.conf.5.xml:29 apt_preferences.5.xml:22 sources.list.5.xml:23 +msgid "5" +msgstr "5" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt.conf.5.xml:36 +msgid "Configuration file for APT" +msgstr "Konfigurationsdatei f??r APT" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:40 +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> ist die Hauptkonfigurationsdatei f??r die APT-" +"Werkzeugsammlung. Alle Werkzeuge benutzen die Konfigurationsdatei und einen " +"gemeinsamen Befehlszeilenauswerter, um eine einheitliche Umgebung " +"bereitzustellen. Wenn ein APT-Werkzeug startet, liest es die in der " +"Umgebungsvariablen <envar>APT_CONFIG</envar> (falls vorhanden) angegebene " +"Konfiguration, dann die Dateien in <literal>Dir::Etc::Parts</literal>, dann " +"die durch <literal>Dir::Etc::main</literal> angegebene Konfigurationsdatei " +"und ??bernimmt am Ende die Befehlszeilenoptionen, um " +"Konfigurationsdirektiven zu ??berschreiben und m??glicherweise sogar weitere " +"Konfigurationsdateien zu laden." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:50 +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." +msgstr "" +"Die Konfigurationsdatei ist in einem Baum mit Optionen organisiert, die in " +"funktionellen Gruppen organisiert sind. Optionsspezifikation wird mit einer " +"doppelten Doppelpunktschreibweise angegeben, zum Beispiel ist <literal>APT::" +"Get::Assume-Yes</literal> eine Option innerhalb der APT-Werkzeuggruppe f??r " +"das Werkzeug Get. Optionen werden nicht von ihren Elterngruppe geerbt." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:56 +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:" +msgstr "" +"Syntaktisch ist die Konfigurationssprache dem nachempfunden, was die ISC-" +"Werkzeuge, wie bind und dhcp, benutzen. Zeilen, die mit <literal>//</" +"literal> beginnen, werden als Kommentar betrachtet (und ignoriert), ebenso " +"wie jeglicher Text zwischen <literal>/*</literal> und <literal>*/</literal>, " +"wie bei C/C++-Kommentaren. Jede Zeile hat die Form <literal>APT::Get::Assume-" +"Yes \"true\";</literal>. Das abschlie??ende Semikolon wird ben??tigt und " +"Klammern sind optional. Ein neuer Geltungsbereich kann mit geschweiften " +"Klammern ge??ffnet werden, wie:" + +#. type: Content of: <refentry><refsect1><informalexample><programlisting> +#: apt.conf.5.xml:66 +#, no-wrap +msgid "" +"APT {\n" +" Get {\n" +" Assume-Yes \"true\";\n" +" Fix-Broken \"true\";\n" +" };\n" +"};\n" +msgstr "" +"APT {\n" +" Get {\n" +" Assume-Yes \"true\";\n" +" Fix-Broken \"true\";\n" +" };\n" +"};\n" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:74 +msgid "" +"with newlines placed to make it more readable. Lists can be created by " +"opening a scope and including a single string enclosed in quotes followed by " +"a semicolon. Multiple entries can be included, each separated by a semicolon." +msgstr "" +"mit eingef??gten Zeilenumbr??chen, um es leserlicher zu gestalten. Listen k??" +"nnen erstellt werden, indem ein Geltungsbereich ge??ffnet wird und eine " +"einzelne, von Anf??hrungszeichen, denen ein Semikolon folgt, eingeschlossene " +"Zeichenkette eingef??gt wird. Es k??nnen mehrere Eintr??ge eingef??gt " +"werden, jeweils getrennt durch ein Semikolon." + +#. type: Content of: <refentry><refsect1><informalexample><programlisting> +#: apt.conf.5.xml:79 +#, no-wrap +msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" +msgstr "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:82 +msgid "" +"In general the sample configuration file in <filename>&docdir;examples/apt." +"conf</filename> &configureindex; is a good guide for how it should look." +msgstr "" +"Im Allgemeinen bietet die Beispielkonfigurationsdatei in <filename>&docdir;" +"examples/apt.conf</filename> &configureindex; eine gute Anleitung, wie dies " +"aussehen k??nnte." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:86 +msgid "" +"The names of the configuration items are not case-sensitive. So in the " +"previous example you could use <literal>dpkg::pre-install-pkgs</literal>." +msgstr "" +"Die Namen der Konfigurationselemente sind nicht von Gro??- und " +"Kleinschreibung abh??ngig. Deshalb k??nnten Sie im vorherigen Beispiel auch " +"<literal>dpkg::pre-install-pkgs</literal> benutzen." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:89 +msgid "" +"Names for the configuration items are optional if a list is defined as it " +"can be see in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. " +"If you don't specify a name a new entry will simply add a new option to the " +"list. If you specify a name you can override the option as every other " +"option by reassigning a new value to the option." +msgstr "" +"Namen f??r die Konfigurationsdatei sind optional, wenn eine Liste, wie sie " +"im Beispiel <literal>DPkg::Pre-Install-Pkgs</literal> oberhalb gesehen " +"werden kann, definiert ist. Wenn Sie keinen neuen Namen angeben, wird ein " +"neuer Eintrag der Liste lediglich eine neue Option hinzuf??gen. Wenn Sie " +"einen Namen eingeben, k??nnen Sie die Option, wie jede andere Option, ??" +"berschreiben, indem Sie der Option erneut einen neuen Wert zuweisen." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:94 +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 descendants are erased. (Note that these " +"lines also need to end with a semicolon.)" +msgstr "" +"Es sind die beiden Spezialf??lle <literal>#include</literal> und " +"<literal>#clear</literal> erlaubt: <literal>#include</literal> wird die " +"angegebene Datei einf??gen au??er, wenn der Dateiname mit einem Schr??" +"gstrich endet, dann wird das ganze Verzeichnis eingef??gt. <literal>#clear</" +"literal> wird benutzt, um einen Teil des Konfigurationsbaums zu l??schen. " +"Das angegebene Element und alle davon absteigenden Elemente werden gel??" +"scht. (Beachten Sie, dass diese Zeilen auch mit einem Semikolon enden m??" +"ssen.)" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:101 +msgid "" +"The #clear command is the only way to delete a list or a complete scope. " +"Reopening a scope or the ::-style described below will <emphasis>not</" +"emphasis> override previously written entries. Only options can be " +"overridden by addressing a new value to it - lists and scopes can't be " +"overridden, only cleared." +msgstr "" +"Der #clear-Befehl ist der einzige Weg, eine Liste oder einen kompletten " +"Geltungsbereich zu l??schen. Erneutes ??ffnen eines Geltungsbereichs oder " +"der unten beschriebene ::-Stil werden vorherige Eintr??ge <emphasis>nicht</" +"emphasis> ??berschreiben. Optionen k??nnen nur ??berschrieben werden, indem " +"ein neuer Wert an sie adressiert wird ??? Listen und Geltungsbereiche k??" +"nnen nicht ??berschrieben, sondern nur bereinigt werden." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:106 +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. (As you might " +"suspect: The scope syntax can't be used on the command line.)" +msgstr "" +"Alle APT-Werkzeuge bringen eine Option -o mit, die es einer beliebigen " +"Installationsdirektiven erlaubt, auf der Befehlszeile angegeben zu werden. " +"Die Syntax ist ein vollst??ndiger Optionsname (<literal>APT::Get::Assume-" +"Yes</literal> zum Beispiel), gefolgt von einem Gleichheitszeichen und dann " +"dem neuen Wert der Option. Listen k??nnen ebenfalls durch Anh??ngen von " +"abschlie??enden :: zur Namensliste hinzugef??gt werden. (Wenn Ihnen das " +"merkw??rdig vorkommt: Die Geltungsbereichs-Syntax kann nicht auf der " +"Befehlszeile benutzt werden.)" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:113 +msgid "" +"Note that you can use :: only for appending one item per line to a list and " +"that you should not use it in combination with the scope syntax. (The scope " +"syntax implicit insert ::) Using both syntaxes together will trigger a bug " +"which some users unfortunately relay on: An option with the unusual name " +"\"<literal>::</literal>\" which acts like every other option with a name. " +"These introduces many problems including that a user who writes multiple " +"lines in this <emphasis>wrong</emphasis> syntax in the hope to append to a " +"list will gain the opposite as only the last assignment for this option " +"\"<literal>::</literal>\" will be used. Upcoming APT versions will raise " +"errors and will stop working if they encounter this misuse, so please " +"correct such statements now as long as APT doesn't complain explicit about " +"them." +msgstr "" +"Beachten Sie, dass Sie :: nur benutzen k??nnen, um ein Element pro Zeile an " +"eine Liste anzuh??ngen und dass Sie es nicht nicht in Verbindung mit einer " +"Geltungsbereichs-Syntax benutzen sollten. (Die Geltungsbereichssysyntax f??" +"gt implizit :: ein) Die Benutzung der Syntax von beiden zusammen wird einen " +"Fehler ausl??sen, den einige Anwender ung??nstigerweise weitergeben an eine " +"Option mit dem un??blichen Namen ??<literal>::</literal>??, der wie jede " +"andere Option mit einem Namen agiert. Dies leitet viele Probleme ein, " +"einschlie??lich, dass der Anwender, der mehrere Zeilen in dieser " +"<emphasis>falschen</emphasis> Syntax in der Hoffnung etwas an die Liste " +"anzuh??ngen schreibt, das Gegenteil von nur der letzten Zuweisung zu diese " +"Option ??<literal>::</literal>?? erreicht. Bevorstehende APT-Versionen " +"werden Fehler ausgeben und die Arbeit stoppen, wenn sie auf diese falsche " +"Verwendung sto??en. Korrigieren Sie deshalb nun solche Anweisungen, solange " +"sich APT nicht explizit dar??ber beklagt." + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:125 +msgid "The APT Group" +msgstr "Die APT-Gruppe" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:126 +msgid "" +"This group of options controls general APT behavior as well as holding the " +"options for all of the tools." +msgstr "" +"Diese Gruppe von Optionen steuert das allgemeine Verhalten von APT, ebenso " +"wie es die Optionen f??r alle Werkzeuge enth??lt." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:130 +msgid "Architecture" +msgstr "Architecture" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:131 +msgid "" +"System Architecture; sets the architecture to use when fetching files and " +"parsing package lists. The internal default is the architecture apt was " +"compiled for." +msgstr "" +"Systemarchitektur; Setzt die Architektur die benutzt wird, wenn Dateien " +"heruntergeladen und Paketlisten ausgewertet werden. Die interne Vorgabe ist " +"die Architektur f??r die APT kompiliert wurde." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:136 +msgid "Default-Release" +msgstr "Default-Release" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:137 +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;." +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;." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:141 +msgid "Ignore-Hold" +msgstr "Ignore-Hold" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:142 +msgid "" +"Ignore Held packages; This global option causes the problem resolver to " +"ignore held packages in its decision making." +msgstr "" +"Halten von Paketen ignorieren; Diese globale Option veranlasst den Probleml??" +"ser, gehaltene Pakete beim Treffen von Entscheidungen zu ignorieren." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:146 +msgid "Clean-Installed" +msgstr "Clean-Installed" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:147 +msgid "" +"Defaults to on. When turned on the autoclean feature will remove any " +"packages which can no longer be downloaded from the cache. If turned off " +"then packages that are locally installed are also excluded from cleaning - " +"but note that APT provides no direct means to reinstall them." +msgstr "" +"Standardm????ig auf on (ein). Wenn es auf on gesetzt wird, wird die " +"automatische Bereinigungsfunktion alle Pakete entfernen, die nicht l??nger " +"aus dem Zwischenspeicher heruntergeladen werden k??nnen. Wenn es auf off " +"gesetzt wird, dann werden au??erden die Pakete, die lokal installiert sind, " +"vom Bereinigen ausgeschlossen ??? beachten Sie jedoch, dass APT keine " +"direkten M??glichkeiten bereitstellt, um sie erneut zu installieren." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:153 +msgid "Immediate-Configure" +msgstr "Immediate-Configure" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:154 +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 "" +"Sofortkonfiguration ausschalten; Diese gef??hrliche Option schaltet einigen " +"Befehlscode von APT aus, um es zu veranlassen, Dpkg seltener aufzurufen. " +"Dies zu tun, k??nnte auf besonders langsamen Einzelbenutzersystemen n??tig " +"sein, ist aber gef??hrlich und k??nnte Paketinstallationsskripte zum " +"Scheitern oder schlimmeren veranlassen. Benutzen Sie es auf eigene Gefahr." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:161 +msgid "Force-LoopBreak" +msgstr "Force-LoopBreak" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:162 +msgid "" +"Never Enable this option unless you -really- know what you are doing. It " +"permits APT to temporarily remove an essential package to break a Conflicts/" +"Conflicts or Conflicts/Pre-Depend loop between two essential packages. SUCH " +"A LOOP SHOULD NEVER EXIST AND IS A GRAVE BUG. This option will work if the " +"essential packages are not tar, gzip, libc, dpkg, bash or anything that " +"those packages depend on." +msgstr "" +"Schalten Sie diese Option niemals ein, au??er wenn Sie -wirklich- wissen, " +"was Sie tun. Es erlaubt APT tempor??r ein essentielles Paket zu entfernen, " +"um eine Conflicts/Conflicts- oder Conflicts/Pre-Depend-Schleife zwischen " +"zwei essentiellen Paketen zu unterbrechen. SOLCH EINE SCHLEIFE SOLLTE " +"NIEMALS EXISTIEREN UND IST EIN SCHWERWIEGENDER FEHLER. Diese Option wird " +"funktionieren, wenn die essentiellen Pakete nicht tar, gzip, libc, dpkg, " +"bash oder etwas, was davon abh??ngt, sind." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:170 +msgid "Cache-Limit" +msgstr "Cache-Limit" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:171 +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 benutzt eine Zwischenspeicherdatei mit fester Gr????e, um die ??verf??" +"gbar??-Informationen zu speichern. Dies setzt die Gr????e dieses " +"Zwischenspeichers (in Bytes)." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:175 +msgid "Build-Essential" +msgstr "Build-Essential" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:176 +msgid "Defines which package(s) are considered essential build dependencies." +msgstr "" +"Definiert, welche(s) Paket(e) als essentielle Bauabh??ngigkeiten betrachtet " +"werde." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:179 +msgid "Get" +msgstr "Get" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:180 +msgid "" +"The Get subsection controls the &apt-get; tool, please see its documentation " +"for more information about the options here." +msgstr "" +"Der Get-Unterabschnitt steuert das &apt-get;-Werkzeug. Lesen Sie bitte " +"dessen Dokumentation, um weitere Informationen ??ber die Optionen hier zu " +"erhalten." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:184 +msgid "Cache" +msgstr "Cache" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:185 +msgid "" +"The Cache subsection controls the &apt-cache; tool, please see its " +"documentation for more information about the options here." +msgstr "" +"Der Cache-Unterabschnitt steuert das &apt-cache;-Werkzeug. Lesen Sie bitte " +"dessen Dokumentation, um weitere Informationen ??ber die Optionen hier zu " +"erhalten." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:189 +msgid "CDROM" +msgstr "CDROM" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:190 +msgid "" +"The CDROM subsection controls the &apt-cdrom; tool, please see its " +"documentation for more information about the options here." +msgstr "" +"Der CDROM-Unterabschnitt steuert das &apt-cdrom;-Werkzeug. Lesen Sie bitte " +"dessen Dokumentation, um weitere Informationen ??ber die Optionen hier zu " +"erhalten." + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:196 +msgid "The Acquire Group" +msgstr "Die Erwerbgruppe" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:201 +msgid "PDiffs" +msgstr "PDiffs" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:202 +msgid "" +"Try to download deltas called <literal>PDiffs</literal> for Packages or " +"Sources files instead of downloading whole ones. True by default." +msgstr "" +"Versuchen, Deltas, die <literal>PDiffs</literal> genannt werden, f??r Paket- " +"oder Quelldateien herunterzuladen, statt der kompletten Dateien. Vorgabe ist " +"True." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:207 +msgid "Queue-Mode" +msgstr "Queue-Mode" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:208 +msgid "" +"Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" +"literal> or <literal>access</literal> which determines how APT parallelizes " +"outgoing connections. <literal>host</literal> means that one connection per " +"target host will be opened, <literal>access</literal> means that one " +"connection per URI type will be opened." +msgstr "" +"Warteschlangenmodus; <literal>Queue-Mode</literal> kann entweder " +"<literal>host</literal> oder <literal>access</literal> sein, wodurch " +"festgelegt wird, wie APT ausgehende Verbindungen parallelisiert. " +"<literal>host</literal> bedeutet, dass eine Verbindung pro Zielrechner ge??" +"ffnet wird, <literal>access</literal> bedeutet, dass eine Verbindung pro URI-" +"Art ge??ffnet wird." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:215 +msgid "Retries" +msgstr "Retries" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:216 +msgid "" +"Number of retries to perform. If this is non-zero APT will retry failed " +"files the given number of times." +msgstr "" +"Anzahl der auszuf??hrenden erneuten Versuche. Wenn dies nicht Null ist, wird " +"APT fehlgeschlagene Dateien in der angegebenen Zahl erneut versuchen." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:220 +msgid "Source-Symlinks" +msgstr "Source-Symlinks" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:221 +msgid "" +"Use symlinks for source archives. If set to true then source archives will " +"be symlinked when possible instead of copying. True is the default." +msgstr "" +"Symbolische Verweise f??r Quellarchive benutzen. Wenn dies auf true gesetzt " +"ist, werden Quellarchive, wenn m??glich, symbolisch verkn??pft, anstatt " +"kopiert zu werden. True ist die Vorgabe." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:225 sources.list.5.xml:139 +msgid "http" +msgstr "http" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:226 +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. If no one of the above settings is specified, " +"<envar>http_proxy</envar> environment variable will be used." +msgstr "" +"HTTP-URIs; http::Proxy ist der zu benutzende Standard-HTTP-Proxy. Er wird " +"standardm????ig in der Form <literal>http://[[Anwender][:Passwort]@]Host[:" +"Port]/</literal> angegeben. Durch Host-Proxies kann au??erdem in der Form " +"<literal>http::Proxy::<host></literal> mit dem speziellen Schl??" +"sselwort <literal>DIRECT</literal> angegeben werden, dass keine Proxies " +"benutzt werden. Falls keine der obigen Einstellungen angegeben wurde, wird " +"die Umgebungsvariable <envar>http_proxy</envar> benutzt." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:234 +msgid "" +"Three settings are provided for cache control with HTTP/1.1 compliant proxy " +"caches. <literal>No-Cache</literal> tells the proxy to not use its cached " +"response under any circumstances, <literal>Max-Age</literal> is sent only " +"for index files and tells the cache to refresh its object if it is older " +"than the given number of seconds. Debian updates its index files daily so " +"the default is 1 day. <literal>No-Store</literal> specifies that the cache " +"should never store this request, it is only set for archive files. This may " +"be useful to prevent polluting a proxy cache with very large .deb files. " +"Note: Squid 2.0.2 does not support any of these options." +msgstr "" +"F??r die Steuerung des Zwischenspeichers mit HTTP/1.1-konformen Proxy-" +"Zwischenspeichern stehen drei Einstellungen zur Verf??gung. <literal>No-" +"Cache</literal> teilt dem Proxy mit, dass er unter keinen Umst??nden seine " +"zwischengespeicherten Antworten benutzen soll, <literal>Max-Age</literal> " +"wird nur f??r Indexdateien gesendet und sagt dem Zwischenspeicher, dass er " +"seine Objekte erneuern soll, die ??lter als die angegebene Zahl in Sekunden " +"sind. Debian aktualisiert seine Indexdateien t??glich, so dass die Vorgabe " +"ein Tag ist. <literal>No-Store</literal> gibt an, dass der Zwischenspeicher " +"diese Anfragen niemals speichern soll, es ist nur f??r Archivdateien " +"gesetzt. Dies k??nnte n??tzlich sein, um Verunreinigungen des Proxy-" +"Zwischenspeichers mit sehr gro??en .deb-Dateien zu verhindern. Beachten Sie: " +"Squid 2.0.2 unterst??tzt keine dieser Optionen." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:244 apt.conf.5.xml:301 +msgid "" +"The option <literal>timeout</literal> sets the timeout timer used by the " +"method, this applies to all things including connection timeout and data " +"timeout." +msgstr "" +"Die Option <literal>timeout</literal> stellt den Zeitnehmer f??r die Zeit??" +"berschreitung ein, die von der Methode benutzt wird. Dies wird auf alle " +"Dinge, einschlie??lich Verbindungs- und Datenzeit??berschreitungen, " +"angewandt." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:247 +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." +msgstr "" +"Eine Einstellung wird bereitgestellt, um die Tiefe der Warteschlange in F??" +"llen zu steuern, in denen der andere Server nicht RFC-konform oder " +"fehlerhaft (so wie Squid 2.0.2) ist. <literal>Acquire::http::Pipeline-Depth</" +"literal> kann ein Wert von 0 bis 5 sein, der anzeigt, wie viele ausstehende " +"Anfragen APT senden soll. Ein Wert von Null MUSS angegeben werden, falls der " +"andere Server nicht ordnungsgem???? auf TCP-Verbindungen wartet ??? " +"anderenfalls werden fehlerhafte Daten erscheinen. Rechner, die dies " +"erfordern, versto??en gegen RFC 2068." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:255 +msgid "" +"The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" +"literal> which accepts integer values in kilobyte. The default value is 0 " +"which deactivates the limit and tries uses as much as possible of the " +"bandwidth (Note that this option implicit deactivates the download from " +"multiple servers at the same time.)" +msgstr "" +"Die benutzte Bandbreite kann durch <literal>Acquire::http::Dl-Limit</" +"literal> eingeschr??nkt werden, was Ganzzahlwerte in Kilobyte akzeptiert. " +"Der Vorgabewert ist 0, was die Beschr??nkung ausschaltet und versucht, " +"soviel wie m??glich von der Bandbreite zu benutzen. (Beachten Sie, dass " +"diese Optionen implizit das Herunterladen von mehreren Servern zur gleichen " +"Zeit deaktiviert.)" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:261 +msgid "https" +msgstr "https" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:262 +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." +msgstr "" +"HTTPS-URIs. Zwischenspeichersteuerung und Proxy-Optionen entsprehen denen " +"der <literal>http</literal>-Methode. Die Option <literal>Pipeline-Depth</" +"literal> wird noch nicht unterst??tzt." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:266 +msgid "" +"<literal>CaInfo</literal> suboption specifies place of file that holds info " +"about trusted certificates. <literal><host>::CaInfo</literal> is " +"corresponding per-host option. <literal>Verify-Peer</literal> boolean " +"suboption determines whether verify server's host certificate against " +"trusted certificates or not. <literal><host>::Verify-Peer</literal> " +"is corresponding per-host option. <literal>Verify-Host</literal> boolean " +"suboption determines whether verify server's hostname or not. <literal><" +"host>::Verify-Host</literal> is corresponding per-host option. " +"<literal>SslCert</literal> determines what certificate to use for client " +"authentication. <literal><host>::SslCert</literal> is corresponding " +"per-host option. <literal>SslKey</literal> determines what private key to " +"use for client authentication. <literal><host>::SslKey</literal> is " +"corresponding per-host option. <literal>SslForceVersion</literal> overrides " +"default SSL version to use. Can contain 'TLSv1' or 'SSLv3' string. " +"<literal><host>::SslForceVersion</literal> is corresponding per-host " +"option." +msgstr "" +"Die Unteroption <literal>CaInfo</literal> gibt den Ort an, an dem " +"Informationen ??ber vertrauensw??rdige Zertifikate bereitgehalten werden. " +"<literal><host>::CaInfo</literal> ist die entsprechende per-Host-" +"Option. Die boolsche Unteroption <literal>Verify-Peer</literal> entscheidet, " +"ob das Host-Zertifikat des Servers mit den vertrauensw??rdigen Zertifikaten " +"gepr??ft wird oder nicht. <literal><host>::Verify-Peer</literal> ist " +"die entsprechende per-Host-Option. Die boolsche Unteroption <literal>Verify-" +"Host</literal> entscheidet, ob der Host-Name des Servers gepr??ft wird oder " +"nicht. <literal><host>::Verify-Host</literal> ist die entsprechende " +"per-Host-Option. <literal>SslCert</literal> entscheidet, welches Zertifikat " +"zur Client-Authentifizierung benutzt wird. <literal><host>::SslCert</" +"literal> ist die entsprechende per-Host-Option. <literal>SslKey</literal> " +"entscheidet, welche privaten Schl??ssel f??r die Client-Authentifizierung " +"benutzt werden. <literal><host>::SslKey</literal> ist die " +"entsprechende per-Host-Option. <literal>SslForceVersion</literal> ??" +"berschreibt die zu benutzende Standard-SSL-Version. Es kann die " +"Zeichenketten ??TLSv1?? oder ??SSLv3?? enthalten. <literal><host>::" +"SslForceVersion</literal> ist die entsprechende per-Host-Option." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:284 sources.list.5.xml:150 +msgid "ftp" +msgstr "ftp" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:285 +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 " +"proxies can also be specified by using the form <literal>ftp::Proxy::<" +"host></literal> with the special keyword <literal>DIRECT</literal> " +"meaning to use no proxies. If no one of the above settings is specified, " +"<envar>ftp_proxy</envar> environment variable will be used. 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." +msgstr "" +"FTP-URIs; ftp::Proxy ist der zu benutzende Standard-FTP-Proxy. Er wird " +"standardm????ig in der Form <literal>ftp://[[Anwender][:Passwort]@]Host[:" +"Port]/</literal> angegeben. pro-Host-Proxys kann au??erdem in der Form " +"<literal>ftp::Proxy::<host></literal> angegeben werden. Hierbei " +"bedeutet das spezielle Schl??sselwort <literal>DIRECT</literal>, dass keine " +"Proxys benutzt werden. Falls keine der obigen Einstellungen angegeben wurde, " +"wird die Umgebungsvariable <envar>ftp_proxy</envar> benutzt. Um einen FTP-" +"Proxy zu benutzen, m??ssen Sie in der Konfigurationsdatei das Skript " +"<literal>ftp::ProxyLogin</literal> setzen. Dieser Eintrag gibt die Befehle " +"an, die gesendet werden m??ssen, um dem Proxy-Server mitzuteilen, womit er " +"sich verbinden soll. Um ein Beispiel zu erhalten, wie das gemacht wird, " +"lesen Sie bitte &configureindex;. Die Platzhaltervariablen sind <literal>" +"$(PROXY_USER)</literal>, <literal>$(PROXY_PASS)</literal>, <literal>" +"$(SITE_USER)</literal>, <literal>$(SITE_PASS)</literal>, <literal>$(SITE)</" +"literal> und <literal>$(SITE_PORT)</literal>. Jede wird von ihrem " +"entsprechenden URI-Bestandteil genommen." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:304 +msgid "" +"Several settings are provided to control passive mode. Generally it is safe " +"to leave passive mode on, it works in nearly every environment. However " +"some situations require that passive mode be disabled and port mode ftp used " +"instead. This can be done globally, for connections that go through a proxy " +"or for a specific host (See the sample config file for examples)." +msgstr "" +"Mehrere Einstellungen werden zum Steuern des passiven Modus bereitgestellt. " +"Generell ist es sicher, den passiven Modus eingeschaltet zu lassen, er " +"funktioniert in nahezu jeder Umgebung. Jedoch erfordern einige Situationen, " +"dass der passive Modus ausgeschaltet und stattdessen Port-Modus-FTP benutzt " +"wird. Dies kann global f??r Verbindungen gemacht werden, die durch einen " +"Proxy oder ??ber einen bestimmten Host gehen (Lesen Sie die " +"Beispielskonfiguration, um Beispiele zu erhalten)." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:311 +msgid "" +"It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" +"envar> environment variable to a http url - see the discussion of the http " +"method above for syntax. You cannot set this in the configuration file and " +"it is not recommended to use FTP over HTTP due to its low efficiency." +msgstr "" +"Es ist m??glich FTP ??ber HTTP zu leiten, indem die Umgebungsvariable " +"<envar>ftp_proxy</envar> auf eine HTTP-Url gesetzt wird ??? lesen Sie die " +"Besprechung der HTTP-Methode oberhalb bez??glich der Syntax. Sie k??nnen " +"dies nicht in der Konfigurationsdatei setzen und es wird wegen der geringen " +"Effizienz nicht empfohlen FTP ??ber HTTP zu benutzen." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:316 +msgid "" +"The setting <literal>ForceExtended</literal> controls the use of RFC2428 " +"<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " +"false, which means these commands are only used if the control connection is " +"IPv6. Setting this to true forces their use even on IPv4 connections. Note " +"that most FTP servers do not support RFC2428." +msgstr "" +"Die Einstellung <literal>ForceExtended</literal> steuert die Benutzung der " +"RFC2428-Befehle <literal>EPSV</literal> und <literal>EPRT</literal>. Die " +"Vorgabe ist false, was bedeutet, dass diese Befehle nur benutzt werden, wenn " +"die Steuerverbindung IPv6 ist. Dies auf true zu stellen erzwingt die " +"Benutzung selbst auf IPv4-Verbindungen. Beachten Sie, dass die wenigsten FTP-" +"Server RFC2428 unterst??tzen." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:323 sources.list.5.xml:132 +msgid "cdrom" +msgstr "cdrom" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> +#: apt.conf.5.xml:329 +#, no-wrap +msgid "\"/cdrom/\"::Mount \"foo\";" +msgstr "\"/cdrom/\"::Mount \"foo\";" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:324 +msgid "" +"CDROM URIs; the only setting for CDROM URIs is the mount point, " +"<literal>cdrom::Mount</literal> which must be the mount point for the CDROM " +"drive as specified in <filename>/etc/fstab</filename>. It is possible to " +"provide alternate mount and unmount commands if your mount point cannot be " +"listed in the fstab (such as an SMB mount and old mount packages). The " +"syntax is to put <placeholder type=\"literallayout\" id=\"0\"/> within the " +"cdrom block. It is important to have the trailing slash. Unmount commands " +"can be specified using UMount." +msgstr "" +"CDROM-URIs; Die einzige Einstellung f??r CDROM-URIs ist der Einh??ngepunkt " +"<literal>cdrom::Mount</literal>, der der Einh??ngepunkt des CDROM-Laufwerks " +"sein muss, wie er in <filename>/etc/fstab</filename> angegeben wurde. Es ist " +"m??glich alternative Ein- und Aush??ngebefehle anzugeben, falls Ihr Einh??" +"ngepunkt nicht in der fstab aufgelistet werden kann (so wie beim Einh??ngen " +"per SMB und alten Mount-Paketen). Die Syntax besteht darin, <placeholder " +"type=\"literallayout\" id=\"0\"/> in den CDROM-Block einzuf??gen. Der " +"abschlie??ende Schr??gstrich ist wichtig. Aush??ngebefehle k??nnen per " +"UMount angegeben werden." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:334 +msgid "gpgv" +msgstr "gpgv" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:335 +msgid "" +"GPGV URIs; the only option for GPGV URIs is the option to pass additional " +"parameters to gpgv. <literal>gpgv::Options</literal> Additional options " +"passed to gpgv." +msgstr "" +"GPGV-URIs; Die einzige Option f??r GPGV-URIs ist die Option zus??tzliche " +"Parameter an gpgv weiterzuleiten. <literal>gpgv::Options</literal> Zus??" +"tzliche Parameter werden an gpgv weitergeleitet." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: apt.conf.5.xml:340 +msgid "CompressionTypes" +msgstr "CompressionTypes" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> +#: apt.conf.5.xml:346 +#, no-wrap +msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" +msgstr "Acquire::CompressionTypes::<replaceable>Dateierweiterung</replaceable> \"<replaceable>Methodenname</replaceable>\";" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:341 +msgid "" +"List of compression types which are understood by the acquire methods. " +"Files like <filename>Packages</filename> can be available in various " +"compression formats. Per default the acquire methods can decompress " +"<command>bzip2</command>, <command>lzma</command> and <command>gzip</" +"command> compressed files, with this setting more formats can be added on " +"the fly or the used method can be changed. The syntax for this is: " +"<placeholder type=\"synopsis\" id=\"0\"/>" +msgstr "" +"Die List der Kompressionstypen die von den ??aquire??-Methoden verstanden " +"werden. Dateien wie <filename>Packages</filename> k??nnen in verschiedenen " +"Kompressionsformaten verf??gbar sein. Standardm????ig k??nnen die ??aquire??-" +"Methoden <command>bzip2</command>-, <command>lzma</command>- und " +"<command>gzip</command>-komprimierte Dateien dekomprimieren. Mit dieser " +"Einstellung k??nnen spontan weiter Formate hinzugef??gt oder die benutzte " +"Methode ge??ndert werden. Die Syntax daf??r lautet: <placeholder type=" +"\"synopsis\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> +#: apt.conf.5.xml:351 +#, no-wrap +msgid "Acquire::CompressionTypes::Order:: \"gz\";" +msgstr "Acquire::CompressionTypes::Order:: \"gz\";" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> +#: apt.conf.5.xml:354 +#, no-wrap +msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" +msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:347 +msgid "" +"Also the <literal>Order</literal> subgroup can be used to define in which " +"order the acquire system will try to download the compressed files. The " +"acquire system will try the first and proceed with the next compression type " +"in this list on error, so to prefer one over the other type simple add the " +"preferred type at first - not already added default types will be added at " +"run time to the end of the list, so e.g. <placeholder type=\"synopsis\" id=" +"\"0\"/> can be used to prefer <command>gzip</command> compressed files over " +"<command>bzip2</command> and <command>lzma</command>. If <command>lzma</" +"command> should be preferred over <command>gzip</command> and " +"<command>bzip2</command> the configure setting should look like this " +"<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 "" +"Au??erdem kann die Untergruppe <literal>Order</literal> benutzt werden, um " +"zu definieren, in welcher Reihenfolge das ??aquire??-System die " +"komprimierten Dateien herunterzuladen versucht. Das ??aquire??-System wird " +"die erste versuchen und mit dem n??chsten Kompressionstyp in dieser Liste " +"bei einem Fehler fortfahren. Um daher einen nach dem anderen Typ " +"vorzuziehen, f??gen Sie einfach den bevorzugten Typ zuerst in die Liste ??? " +"noch nicht hinzugef??gte Standardtypen werden zur Laufzeit an das Ende der " +"Liste angeh??ngt, so kann z.B. <placeholder type=\"synopsis\"id=\"0\"/> " +"verwandt werden, um <command>gzip</command>-komprimierte Dateien ??ber " +"<command>bzip2</command> und <command>lzma</command> zu bevorzugen. Falls " +"<command>lzma</command> vor <command>gzip</command> und <command>bzip2</" +"command> vorgezogen werden soll, sollte die Konfigurationseinstellung so " +"aussehen: <placeholder type=\"synopsis\" id=\"1\"/>. Es ist nicht n??tig " +"<literal>bz2</literal> explizit zur Liste hinzuzuf??gen, da es automatisch " +"hinzuf??gt wird." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> +#: apt.conf.5.xml:358 +#, no-wrap +msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" +msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:356 +msgid "" +"Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</" +"replaceable></literal> will be checked: If this setting exists the method " +"will only be used if this file exists, e.g. for the bzip2 method (the " +"inbuilt) setting is <placeholder type=\"literallayout\" id=\"0\"/> Note also " +"that list entries specified on the command line will be added at the end of " +"the list specified in the configuration files, but before the default " +"entries. To prefer a type in this case over the ones specified in in the " +"configuration files you can set the option direct - not in list style. This " +"will not override the defined list, it will only prefix the list with this " +"type." +msgstr "" +"Beachten Sie, dass <literal>Dir::Bin::<replaceable>Methodenname</" +"replaceable></literal> zur Laufzeit gepr??ft wird: Falls diese Einstellung " +"existiert, wird die Methode nur benutzt, wenn die Datei existiert, z.B. f??r " +"die (integrierte) bzip2-Methode ist die Einstellung <placeholder type=" +"\"literallayout\" id=\"0\"/>. Beachten Sie, dass diese auf der Befehlszeile " +"eingegebenen Eintr??ge an das Ende der Liste angeh??ngt werden, die in den " +"Konfigurationsdateien angegeben wurde, aber vor den Vorgabeeintr??gen. Um " +"einen Eintrag in diesem Fall vor einem, ??ber die in der Konfigurationsdatei " +"angegebenen, zu bevorzugen, k??nnen Sie diese Option direkt setzen ??? nicht " +"im Listenstil. Dies wird die definierte Liste nicht ??berschreiben, es wird " +"diesen Typ nur vor die Liste setzen." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:363 +msgid "" +"While it is possible to add an empty compression type to the order list, but " +"APT in its current version doesn't understand it correctly and will display " +"many warnings about not downloaded files - these warnings are most of the " +"time false negatives. Future versions will maybe include a way to really " +"prefer uncompressed files to support the usage of local mirrors." +msgstr "" +"Obwohl es m??glich ist, einen leeren Komprimierungstyp zu der " +"Reihenfolgenliste hinzuzuf??gen, versteht dies APT in der aktuellen Version " +"nicht richtig und wird viele Warnungen wegen nicht heruntergeladener Dateien " +"anzeigen ??? diese Warnungen sind meistens inkorrekte Treffer. Zuk??nftige " +"Versionen werden m??glicherweise eine M??glichkeit enthalten, um wirklich " +"unkomprimierte Dateien vorzuziehen, um den Gebrauch lokaler Spiegel zu " +"unterst??tzen." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:197 +msgid "" +"The <literal>Acquire</literal> group of options controls the download of " +"packages and the URI handlers. <placeholder type=\"variablelist\" id=\"0\"/>" +msgstr "" +"Die <literal>Acquire</literal>-Gruppe der Optionen steuert das Herunterladen " +"von Paketen und die URI-Steuerprogramme. <placeholder type=\"variablelist\" " +"id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:372 +msgid "Directories" +msgstr "Verzeichnisse" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:374 +msgid "" +"The <literal>Dir::State</literal> section has directories that pertain to " +"local state information. <literal>lists</literal> is the directory to place " +"downloaded package lists in and <literal>status</literal> is the name of the " +"dpkg status file. <literal>preferences</literal> is the name of the APT " +"preferences file. <literal>Dir::State</literal> contains the default " +"directory to prefix on all sub items if they do not start with <filename>/</" +"filename> or <filename>./</filename>." +msgstr "" +"Der <literal>Dir::State</literal>-Abschnitt hat Verzeichnisse, die zu " +"lokalen Statusinformationen geh??ren. <literal>lists</literal> ist das " +"Verzeichnis, in das heruntergeladene Paketlisten platziert werden und " +"<literal>status</literal> ist der Name der Dpkg-Statusdatei. " +"<literal>preferences</literal> ist der Name der APT-Einstellungsdatei. " +"<literal>Dir::State</literal> enth??lt das Standardverzeichnis, das allen " +"Unterelementen vorangestellt wird, falls sie nicht mit <filename>/</" +"filename> oder <filename>./</filename> beginnen." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:381 +msgid "" +"<literal>Dir::Cache</literal> contains locations pertaining to local cache " +"information, such as the two package caches <literal>srcpkgcache</literal> " +"and <literal>pkgcache</literal> as well as the location to place downloaded " +"archives, <literal>Dir::Cache::archives</literal>. Generation of caches can " +"be turned off by setting their names to be blank. This will slow down " +"startup but save disk space. It is probably preferred to turn off the " +"pkgcache rather than the srcpkgcache. Like <literal>Dir::State</literal> the " +"default directory is contained in <literal>Dir::Cache</literal>" +msgstr "" +"<literal>Dir::Cache</literal> enth??lt Orte, die zu lokalen " +"Zwischenspeicherinformationen geh??ren, so wie die beiden " +"Paketzwischenspeicher <literal>srcpkgcache</literal> und <literal>pkgcache</" +"literal>, sowie der Ort, an den heruntergeladene Archive platziert werden, " +"<literal>Dir::Cache::archives</literal>. Die Generierung von " +"Zwischenspeichern kann ausgeschaltet werden, indem ihre Namen leer gelassen " +"werden. Dies wird den Start verlangsamen, aber Plattenplatz sparen. Es ist " +"vermutlich vorzuziehen, statt des ??pkgcache??s den ??srcpkgcache?? " +"auszuschalten. Wie <literal>Dir::State</literal> ist das Standardverzeichnis " +"in <literal>Dir::Cache</literal> enthalten." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:390 +msgid "" +"<literal>Dir::Etc</literal> contains the location of configuration files, " +"<literal>sourcelist</literal> gives the location of the sourcelist and " +"<literal>main</literal> is the default configuration file (setting has no " +"effect, unless it is done from the config file specified by " +"<envar>APT_CONFIG</envar>)." +msgstr "" +"<literal>Dir::Etc</literal> enth??lt den Ort der Konfigurationsdateien, " +"<literal>sourcelist</literal> gibt den Ort der Quellliste und <literal>main</" +"literal> ist die Standardkonfigurationsdatei (Einstellung hat keine " +"Auswirkung, au??er wenn sie aus der in <envar>APT_CONFIG</envar> angegebenen " +"Konfigurationsdatei erfolgt)." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:396 +msgid "" +"The <literal>Dir::Parts</literal> setting reads in all the config fragments " +"in lexical order from the directory specified. After this is done then the " +"main config file is loaded." +msgstr "" +"Die <literal>Dir::Parts</literal>-Einstellung liest in allen " +"Konfigurationsteilen in lexikalischer Reihenfolge vom angegebenen " +"Verzeichnis. Nachdem dies geschehen ist, wird die Hauptkonfigurationsdatei " +"geladen." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:400 +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>bzip2</literal>, <literal>lzma</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." +msgstr "" +"Auf bin??re Programme wird von <literal>Dir::Bin</literal> verwiesen. " +"<literal>Dir::Bin::Methods</literal> gibt den Ort des " +"Methodensteuerungsprogramms an und <literal>gzip</literal>, <literal>bzip2</" +"literal>, <literal>lzma</literal>, <literal>dpkg</literal>, <literal>apt-" +"get</literal>, <literal>dpkg-source</literal>, <literal>dpkg-buildpackage</" +"literal> und <literal>apt-cache</literal> geben den Ort des jeweiligen " +"Programms an." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:408 +msgid "" +"The configuration item <literal>RootDir</literal> has a special meaning. If " +"set, all paths in <literal>Dir::</literal> will be relative to " +"<literal>RootDir</literal>, <emphasis>even paths that are specified " +"absolutely</emphasis>. So, for instance, if <literal>RootDir</literal> is " +"set to <filename>/tmp/staging</filename> and <literal>Dir::State::status</" +"literal> is set to <filename>/var/lib/dpkg/status</filename>, then the " +"status file will be looked up in <filename>/tmp/staging/var/lib/dpkg/status</" +"filename>." +msgstr "" +"Das Konfigurationselement <literal>RootDir</literal> hat eine besondere " +"Bedeutung. Falls es gesetzt ist, sind alle Pfad relativ zu <literal>RootDir</" +"literal>, <emphasis>sogar Pfade, die absolut angegeben wurden</emphasis>. So " +"wird zum Beispiel, wenn <literal>RootDir</literal> auf <filename>/tmp/" +"staging</filename> und <literal>Dir::State::status</literal> auf <filename>/" +"var/lib/dpkg/status</filename> gesetzt ist, nach der Statusdatei in " +"<filename>/tmp/staging/var/lib/dpkg/status</filename> nachgesehen." + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:421 +msgid "APT in DSelect" +msgstr "APT in DSelect" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:423 +msgid "" +"When APT is used as a &dselect; method several configuration directives " +"control the default behaviour. These are in the <literal>DSelect</literal> " +"section." +msgstr "" +"Wenn APT als eine &dselect;-Methode benutzt wird, steuern mehrere " +"Konfigurationsdirektiven das Standardverhalten. Diese stehen im Abschnitt " +"<literal>DSelect</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:427 +msgid "Clean" +msgstr "Clean" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:428 +msgid "" +"Cache Clean mode; this value may be one of always, prompt, auto, pre-auto " +"and never. always and prompt will remove all packages from the cache after " +"upgrading, prompt (the default) does so conditionally. auto removes only " +"those packages which are no longer downloadable (replaced with a new version " +"for instance). pre-auto performs this action before downloading new " +"packages." +msgstr "" +"Zwischenspeicherbereinigungsmodus; Dieser Wert kann entweder always, prompt, " +"auto, pre-auto oder never sein. always und prompt werden, nachdem das " +"Upgrade durchgef??hrt wurde, alle Pakete aus dem Zwischenspeicher entfernen, " +"prompt (die Vorgabe) tut dies bedingt. auto entfernt nur jene Pakete, die " +"nicht l??nger heruntergeladen werden k??nnen (zum Beispiel, weil sie durch " +"eine neue Version ersetzt wurden). pre-auto f??hrt diese Aktion vor dem " +"Herunterladen neuer Pakete durch." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:437 +msgid "" +"The contents of this variable is passed to &apt-get; as command line options " +"when it is run for the install phase." +msgstr "" +"Die Inhalte dieser Variablen werden als Befehlszeilenoptionen an &apt-get; ??" +"bermittelt, wenn es f??r die Installationsphase durchlaufen wird." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:441 +msgid "Updateoptions" +msgstr "Updateoptions" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:442 +msgid "" +"The contents of this variable is passed to &apt-get; as command line options " +"when it is run for the update phase." +msgstr "" +"Die Inhalte dieser Variable werden als Befehlszeilenoptionen an &apt-get; ??" +"bermittelt, wenn es f??r die Aktualisierungsphase durchlaufen wird." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:446 +msgid "PromptAfterUpdate" +msgstr "PromptAfterUpdate" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:447 +msgid "" +"If true the [U]pdate operation in &dselect; will always prompt to continue. " +"The default is to prompt only on error." +msgstr "" +"Falls true, wird die Aktualisierungsoption [U] in &dselect; immer " +"nachfragen, um fortzufahren. Vorgabe ist es, nur bei Fehlern nachzufragen." + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:453 +msgid "How APT calls dpkg" +msgstr "Wie APT Dpkg aufruft" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:454 +msgid "" +"Several configuration directives control how APT invokes &dpkg;. These are " +"in the <literal>DPkg</literal> section." +msgstr "" +"Mehrere Konfigurationsdirektiven steuern, wie APT &dpkg; aufruft. Diese " +"stehen im Abschnitt <literal>DPkg</literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:459 +msgid "" +"This is a list of options to pass to dpkg. The options must be specified " +"using the list notation and each list item is passed as a single argument to " +"&dpkg;." +msgstr "" +"Dies ist eine Liste von Optionen, die an Dpkg ??bermittelt werden. Die " +"Optionen m??ssen unter Benutzung der Listenschreibweise angegeben werden und " +"jedes Listenelement wird als einzelnes Argument an &dpkg; ??bermittelt." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:464 +msgid "Pre-Invoke" +msgstr "Pre-Invoke" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:464 +msgid "Post-Invoke" +msgstr "Post-Invoke" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:465 +msgid "" +"This is a list of shell commands to run before/after invoking &dpkg;. Like " +"<literal>options</literal> this must be specified in list notation. The " +"commands are invoked in order using <filename>/bin/sh</filename>, should any " +"fail APT will abort." +msgstr "" +"Dies ist eine Liste von Shell-Befehlen, die vor/nach dem Aufruf von &dpkg; " +"ausgef??hrt werden. Wie <literal>options</literal> muss dies in " +"Listenschreibweise angegeben werden. Die Befehle werden der Reihenfolge nach " +"mit <filename>/bin/sh</filename> aufgerufen, sollte einer fehlschlagen, wird " +"APT abgebrochen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:471 +msgid "Pre-Install-Pkgs" +msgstr "Pre-Install-Pkgs" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:472 +msgid "" +"This is a list of shell commands to run before invoking dpkg. Like " +"<literal>options</literal> this must be specified in list notation. The " +"commands are invoked in order using <filename>/bin/sh</filename>, should any " +"fail APT will abort. APT will pass to the commands on standard input the " +"filenames of all .deb files it is going to install, one per line." +msgstr "" +"Dies ist eine Liste von Shell-Befehlen, die vor dem Aufruf von Dpkg ausgef??" +"hrt werden. Wie <literal>options</literal> muss dies in Listenschreibweise " +"angegeben werden. Die Befehle werden der Reihenfolge nach mit <filename>/bin/" +"sh</filename> aufgerufen, sollte einer fehlschlagen, wird APT abgebrochen. " +"APT wird den Befehlen auf der Standardeingabe die Dateinamen aller .deb-" +"Dateien, die es installieren wird, ??bergeben, einen pro Zeile." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:478 +msgid "" +"Version 2 of this protocol dumps more information, including the protocol " +"version, the APT configuration space and the packages, files and versions " +"being changed. Version 2 is enabled by setting <literal>DPkg::Tools::" +"options::cmd::Version</literal> to 2. <literal>cmd</literal> is a command " +"given to <literal>Pre-Install-Pkgs</literal>." +msgstr "" +"Version 2 dieses Protokolls gibt mehr Informationen aus, einschlie??lich der " +"Protokollversion, dem APT-Konfigurationsraum und den Paketen, Dateien und " +"den Versionen, die ge??ndert werden. Version 2 wird durch Setzen von " +"<literal>DPkg::Tools::options::cmd::Version</literal> auf 2 eingeschaltet. " +"<literal>cmd</literal> ist ein Befehl, der an <literal>Pre-Install-Pkgs</" +"literal> gegeben wird." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:485 +msgid "Run-Directory" +msgstr "Run-Directory" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:486 +msgid "" +"APT chdirs to this directory before invoking dpkg, the default is <filename>/" +"</filename>." +msgstr "" +"APT wechselt mit chdir in dieses Verzeichnis, bevor Dpkg aufgerufen wird, " +"die Vorgabe ist <filename>/</filename>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:490 +msgid "Build-options" +msgstr "Build-options" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:491 +msgid "" +"These options are passed to &dpkg-buildpackage; when compiling packages, the " +"default is to disable signing and produce all binaries." +msgstr "" +"Diese Optionen werden an &dpkg-buildpackage; beim Kompilieren von Paketen ??" +"bermittelt. Standardm????ig wird das Signieren augeschaltet und alle " +"Programme werden erstellt." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt.conf.5.xml:496 +msgid "dpkg trigger usage (and related options)" +msgstr "Dpkd-Trigger-Benutzung (und zugeh??riger Optionen)" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt.conf.5.xml:497 +msgid "" +"APT can call dpkg in a way so it can make aggressive use of triggers over " +"multiply calls of dpkg. Without further options dpkg will use triggers only " +"in between his own run. Activating these options can therefore decrease the " +"time needed to perform the install / upgrade. Note that it is intended to " +"activate these options per default in the future, but as it changes the way " +"APT calling dpkg drastically it needs a lot more testing. <emphasis>These " +"options are therefore currently experimental and should not be used in " +"productive environments.</emphasis> Also it breaks the progress reporting so " +"all frontends will currently stay around half (or more) of the time in the " +"100% state while it actually configures all packages." +msgstr "" +"APT kann Dpkg auf eine Art aufrufen, auf die aggressiv Gebrauch von " +"Triggern ??ber mehrere Dpkg-Aufrufe gemacht wird. Ohne weitere Optionen wird " +"Dpkg Trigger nur w??hrend seiner eigenen Ausf??hrung benutzen. Diese " +"Optionen zu benutzen, kann daher die zum Installieren/Upgrade ben??tigte " +"Zeit verk??rzen. Beachten Sie, dass geplant ist, diese Optionen in Zukunft " +"standardm????ig zu aktivieren, aber da es die Art, wie APT Dpkg aufruft, " +"drastisch ??ndert, ben??tigt es noch viele weitere Tests. <emphasis>Diese " +"Optionen sind daher aktuell noch experimentell und sollten nicht in " +"produktiven Umgebungen benutzt werden.</emphasis> Au??erdem unterbricht es " +"die Fortschrittsanzeige, so dass alle Oberfl??chen aktuell in der halben " +"(oder mehr) Zeit auf dem Status 100% stehen, w??hrend es aktuell alle Pakete " +"konfiguriert." + +#. type: Content of: <refentry><refsect1><refsect2><para><literallayout> +#: apt.conf.5.xml:512 +#, no-wrap +msgid "" +"DPkg::NoTriggers \"true\";\n" +"PackageManager::Configure \"smart\";\n" +"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:506 +msgid "" +"Note that it is not guaranteed that APT will support these options or that " +"these options will not cause (big) trouble in the future. If you have " +"understand the current risks and problems with these options, but are brave " +"enough to help testing them create a new configuration file and test a " +"combination of options. Please report any bugs, problems and improvements " +"you encounter and make sure to note which options you have used in your " +"reports. Asking dpkg for help could also be useful for debugging proposes, " +"see e.g. <command>dpkg --audit</command>. A defensive option combination " +"would be <placeholder type=\"literallayout\" id=\"0\"/>" +msgstr "" +"Beachten Sie, dass es nicht gew??hrleistet ist, dass APT diese Optionen " +"unterst??tzen wird oder dass diese Optionen in der Zukunft keinen (gro??" +"en) ??rger machen. Wenn Sie die allgemeinen Risiken und Probleme mit diesen " +"Optionen verstanden haben, aber tapfer genug sind, sie testen zu helfen, " +"erstellen Sie eine neue Konfigurationsdatei und testen Sie eine Kombination " +"von Optionen. Bitte berichten Sie auf Englisch jegliche Fehler, Probleme und " +"Verbesserungen, denen Sie begegnen und stellen Sie sicher, dass Sie alle von " +"Ihnen benutzten Optionen in Ihren Berichten vermerken. Zum Zweck der " +"Fehlersuche k??nnte es au??erdem n??tzlich sein, Dpkg um Hilfe zu fragen. " +"Lesen Sie z.B. <command>dpkg --audit</command>. Eine defensive " +"Optionenkombination w??re <placeholder type=\"literallayout\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt.conf.5.xml:518 +msgid "DPkg::NoTriggers" +msgstr "DPkg::NoTriggers" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:519 +msgid "" +"Add the no triggers flag to all dpkg calls (expect the ConfigurePending " +"call). See &dpkg; if you are interested in what this actually means. In " +"short: dpkg will not run the triggers then this flag is present unless it is " +"explicit called to do so in an extra call. Note that this option exists " +"(undocumented) also in older apt versions with a slightly different meaning: " +"Previously these option only append --no-triggers to the configure calls to " +"dpkg - now apt will add these flag also to the unpack and remove calls." +msgstr "" +"Die keine-Trigger-Markierung zu allen Dpkg-Aufrufen hinzuf??gen (ausgenommen " +"den ConfigurePending-Aufruf). Siehe &dpkg;, wenn Sie interessiert sind, was " +"dies tats??chlich bedeutet. In K??rze: Dpkg wird die Trigger nicht ausf??" +"hren, dann ist diese Markierung vorhanden, au??er sie wird explizit " +"aufgerufen, um dies in einem gesonderten Aufruf zu tun. Beachten Sie, dass " +"diese Option au??erdem in ??lteren APT-Versionen mit einer geringf??gig " +"anderen Bedeutung existiert (nicht dokumentiert): Vorher hing diese Option " +"nur --no-triggers an die Konfigurationsaufrufe f??r Dpkg an ??? nun wird APT " +"diese Markierung au??erdem an die unpack- und remove-Aufrufe anh??ngen." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt.conf.5.xml:526 +msgid "PackageManager::Configure" +msgstr "PackageManager::Configure" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:527 +msgid "" +"Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " +"and \"<literal>no</literal>\". \"<literal>all</literal>\" is the default " +"value and causes APT to configure all packages explicit. The " +"\"<literal>smart</literal>\" way is it to configure only packages which need " +"to be configured before another package can be unpacked (Pre-Depends) and " +"let the rest configure by dpkg with a call generated by the next option. " +"\"<literal>no</literal>\" on the other hand will not configure anything and " +"totally relay on dpkg for configuration (which will at the moment fail if a " +"Pre-Depends is encountered). Setting this option to another than the all " +"value will implicit activate also the next option per default as otherwise " +"the system could end in an unconfigured status which could be unbootable!" +msgstr "" +"G??ltige Werte sind ??<literal>all</literal>??, ??<literal>smart</literal>?? " +"und ??<literal>no</literal>??. ??<literal>all</literal>?? ist der " +"Vorgabewert und veranlasst APT alle Pakete explizit zu konfigurieren. Die " +"Art von ??<literal>smart</literal>?? ist es, nur die Pakete zu " +"konfigurieren, die konfiguriert werden m??ssen, bevor eine anderes Paket " +"entpackt (Pre-Depends) werden kann und den Rest von Dpkg mit einem Aufruf, " +"der von der n??chsten Option generiert wurde, konfigurieren zu lassen. Im " +"Gegensatz dazu wird ??<literal>no</literal>?? nicht konfigurieren und v??" +"llig die Konfiguration von Dpkg weitergeben (die in dem Moment fehlschl??gt, " +"in dem ein Pre-Depends vorkommt). Diese Option auf etwas anderes als all zu " +"setzen, wird au??erdem implizit standardm????ig die n??chste Option " +"aktivieren, da das System anderenfalls in einem nicht konfigurierten Status " +"enden k??nnte, der nicht mehr startbar sein k??nnte." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt.conf.5.xml:537 +msgid "DPkg::ConfigurePending" +msgstr "DPkg::ConfigurePending" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:538 +msgid "" +"If this option is set apt will call <command>dpkg --configure --pending</" +"command> to let dpkg handle all required configurations and triggers. This " +"option is activated automatic per default if the previous option is not set " +"to <literal>all</literal>, but deactivating could be useful if you want to " +"run APT multiple times in a row - e.g. in an installer. In this sceneries " +"you could deactivate this option in all but the last run." +msgstr "" +"Wenn diese Option gesetzt ist, wird APT <command>dpkg --configure --pending</" +"command> aufrufen, um Dpkg alle ben??tigten Konfigurationen und Trigger " +"handhaben zu lassen. Diese Option ist als Vorgabe automatisch aktiviert, " +"wenn die vorherige Option nicht auf <literal>all</literal> gesetzt ist, aber " +"Deaktivieren k??nnte n??tzlich sein, wenn Sie APT mehrmals hintereinander " +"ausf??hren m??chten ??? z.B. in einem Installationsprogramm. In diesen " +"Szenarien k??nnten Sie diese Option au??er in allen au??er der letzten Ausf??" +"hrung deaktivieren." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt.conf.5.xml:544 +msgid "DPkg::TriggersPending" +msgstr "DPkg::TriggersPending" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:545 +msgid "" +"Useful for <literal>smart</literal> configuration as a package which has " +"pending triggers is not considered as <literal>installed</literal> and dpkg " +"treats them as <literal>unpacked</literal> currently which is a dealbreaker " +"for Pre-Dependencies (see debbugs #526774). Note that this will process all " +"triggers, not only the triggers needed to configure this package." +msgstr "" +"N??tzlich f??r <literal>smart</literal>-Konfiguration, da ein Paket mit " +"ausstehenden Triggern nicht als <literal>installed</literal> angesehen wird " +"und Dpkg es als aktuell entpackt betrachtet, was ein Hemmschuh f??r Pre-" +"Dependencies ist (siehe Debian-Fehler #526774). Beachten Sie, dass dies alle " +"Trigger ausf??hrt, nicht nur die Trigger, die zum Konfigurieren dieses " +"Pakets ben??tigt werden." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt.conf.5.xml:550 +msgid "PackageManager::UnpackAll" +msgstr "PackageManager::UnpackAll" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:551 +msgid "" +"As the configuration can be deferred to be done at the end by dpkg it can be " +"tried to order the unpack series only by critical needs, e.g. by Pre-" +"Depends. Default is true and therefore the \"old\" method of ordering in " +"various steps by everything. While both method were present in earlier APT " +"versions the <literal>OrderCritical</literal> method was unused, so this " +"method is very experimental and needs further improvements before becoming " +"really useful." +msgstr "" +"Da die Konfiguration an das Ende von Dpkg verschoben werden kann, kann " +"versucht werden, nur die Entpackserien von kritischen Notwendigkeiten, z.B. " +"von Pre-Depends, anzuweisen. Vorgabe ist true und daher die ??alte?? Methode " +"zum Sortieren nach allem in mehreren Schritten. Obwohl in fr??heren " +"Versionen von APT beide Methoden enthalten waren, wurde die " +"<literal>OrderCritical</literal>-Methode nicht benutzt, so dass diese " +"Methode sehr experimentell ist und weitere Verbesserungen ben??tigt, bevor " +"sie wirklich n??tzlich wird." + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> +#: apt.conf.5.xml:558 +msgid "OrderList::Score::Immediate" +msgstr "OrderList::Score::Immediate" + +#. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> +#: apt.conf.5.xml:566 +#, no-wrap +msgid "" +"OrderList::Score {\n" +"\tDelete 500;\n" +"\tEssential 200;\n" +"\tImmediate 10;\n" +"\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:559 +msgid "" +"Essential packages (and there dependencies) should be configured immediately " +"after unpacking. It will be a good idea to do this quite early in the " +"upgrade process as these these configure calls require currently also " +"<literal>DPkg::TriggersPending</literal> which will run quite a few triggers " +"(which maybe not needed). Essentials get per default a high score but the " +"immediate flag is relatively low (a package which has a Pre-Depends is " +"higher rated). These option and the others in the same group can be used to " +"change the scoring. The following example shows the settings with there " +"default values. <placeholder type=\"literallayout\" id=\"0\"/>" +msgstr "" +"Essentielle Pakete (und ihre Abh??ngigkeiten) sollten sofort nach dem " +"Entpacken konfiguriert werden. Es ist eine gute Idee, dies ziemlich fr??h im " +"Upgrade-Prozess zu tun, da diese Konfigurationsaufrufe aktuell au??erdem " +"<literal>DPkg::TriggersPending</literal> ben??tigen, das eine Reihe von " +"Triggern ausf??hrt (die m??glicherweise nicht gebraucht werden). Essentielle " +"Pakete haben als Vorgabe eine hohe Bewertung, aber die immediate-Markierung " +"ist relativ niedrig (ein Paket, das Pre-Depends hat, wird h??her bewertet). " +"Diese Option und die anderen in der gleichen Gruppe k??nnen benutzt werden, " +"um die Bewertung zu ??ndern. Das folgende Beispiel zeigt die Einstellungen " +"mit ihren Vorgabewerten. <placeholder type=\"literallayout\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:579 +msgid "Periodic and Archives options" +msgstr "Periodische- und Archivoptionen" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:580 +msgid "" +"<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " +"of options configure behavior of apt periodic updates, which is done by " +"<literal>/etc/cron.daily/apt</literal> script. See header of this script for " +"the brief documentation of these options." +msgstr "" +"<literal>APT::Periodic</literal>- und <literal>APT::Archives</literal>-" +"Gruppen von Optionen konfigurieren das Verhalten periodischer APT-" +"Aktualisierungen, die vom Skript <literal>/etc/cron.daily/apt</literal> " +"durchgef??hrt werden. Lesen Sie die Kopfzeilen dieses Skripts, um eine kurze " +"Dokumentation dieser Optionen zu erhalten." + +#. type: Content of: <refentry><refsect1><title> +#: apt.conf.5.xml:588 +msgid "Debug options" +msgstr "Fehlersuchoptionen" + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:590 +msgid "" +"Enabling options in the <literal>Debug::</literal> section will cause " +"debugging information to be sent to the standard error stream of the program " +"utilizing the <literal>apt</literal> libraries, or enable special program " +"modes that are primarily useful for debugging the behavior of <literal>apt</" +"literal>. Most of these options are not interesting to a normal user, but a " +"few may be:" +msgstr "" +"Einschalten von Optionen im Abschnitt <literal>Debug::</literal> wird " +"veranlassen, dass Fehlersuchinformationen an die Standardfehlerausgabe des " +"Programms gesendet werden, das die <literal>apt</literal>-Bibliotheken " +"benutzt oder besondere Programmmodi einschaltet, die in erster Linie f??r " +"das Fehlersuchverhalten von <literal>apt</literal> n??tzlich sind. Die " +"meisten dieser Optionen sind f??r den normalen Anwender uninteressant, aber " +"ein paar k??nnten es sein:" + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.conf.5.xml:601 +msgid "" +"<literal>Debug::pkgProblemResolver</literal> enables output about the " +"decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" +"literal>." +msgstr "" +"<literal>Debug::pkgProblemResolver</literal> schaltet die Ausgabe ??ber die " +"von <literal>dist-upgrade, upgrade, install, remove, purge</literal> " +"getroffenen Entscheidungen ein." + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.conf.5.xml:609 +msgid "" +"<literal>Debug::NoLocking</literal> disables all file locking. This can be " +"used to run some operations (for instance, <literal>apt-get -s install</" +"literal>) as a non-root user." +msgstr "" +"<literal>Debug::NoLocking</literal> schaltet jegliches Sperren von Dateien " +"aus. Dies kann benutzt werden, um einige Operationen (zum Beispiel " +"<literal>apt-get -s install</literal>) als nicht root-Anwender auszuf??hren." + +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.conf.5.xml:618 +msgid "" +"<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " +"time that <literal>apt</literal> invokes &dpkg;." +msgstr "" +"<literal>Debug::pkgDPkgPM</literal> gibt die aktuelle Befehlszeile jedesmal " +"aus, wenn <literal>apt</literal> &dpkg; aufruft." + +#. TODO: provide a +#. motivating example, except I haven't a clue why you'd want +#. to do this. +#. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> +#: apt.conf.5.xml:626 +msgid "" +"<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " +"in CDROM IDs." +msgstr "" +"<literal>Debug::IdentCdrom</literal> schaltet das Einbeziehen von statfs-" +"Daten in CDROM-IDs aus." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:636 +msgid "A full list of debugging options to apt follows." +msgstr "Eine vollst??ndige Liste der Fehlersuchoptionen von APT folgt." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:641 +msgid "<literal>Debug::Acquire::cdrom</literal>" +msgstr "<literal>Debug::Acquire::cdrom</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:645 +msgid "" +"Print information related to accessing <literal>cdrom://</literal> sources." +msgstr "" +"Gibt Informationen aus, die sich auf Zugriffe von <literal>cdrom://</" +"literal>-Quellen beziehen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:652 +msgid "<literal>Debug::Acquire::ftp</literal>" +msgstr "<literal>Debug::Acquire::ftp</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:656 +msgid "Print information related to downloading packages using FTP." +msgstr "" +"Gibt Informationen aus, die sich auf das Herunterladen von Paketen per FTP " +"beziehen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:663 +msgid "<literal>Debug::Acquire::http</literal>" +msgstr "<literal>Debug::Acquire::http</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:667 +msgid "Print information related to downloading packages using HTTP." +msgstr "" +"Gibt Informationen aus, die sich auf das Herunterladen von Paketen per HTTP " +"beziehen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:674 +msgid "<literal>Debug::Acquire::https</literal>" +msgstr "<literal>Debug::Acquire::https</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:678 +msgid "Print information related to downloading packages using HTTPS." +msgstr "" +"Gibt Informationen aus, die sich auf das Herunterladen von Paketen per HTTPS " +"beziehen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:685 +msgid "<literal>Debug::Acquire::gpgv</literal>" +msgstr "<literal>Debug::Acquire::gpgv</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:689 +msgid "" +"Print information related to verifying cryptographic signatures using " +"<literal>gpg</literal>." +msgstr "" +"Gibt Informationen aus, die sich auf das Pr??fen kryptografischer Signaturen " +"mittels <literal>gpg</literal> beziehen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:696 +msgid "<literal>Debug::aptcdrom</literal>" +msgstr "<literal>Debug::aptcdrom</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:700 +msgid "" +"Output information about the process of accessing collections of packages " +"stored on CD-ROMs." +msgstr "" +"Informationen ??ber den Zugriffsprozess auf Paketsammlungen ausgeben, die " +"auf CD-ROMs gespeichert sind." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:707 +msgid "<literal>Debug::BuildDeps</literal>" +msgstr "<literal>Debug::BuildDeps</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:710 +msgid "Describes the process of resolving build-dependencies in &apt-get;." +msgstr "" +"Beschreibt den Prozess der Aufl??sung von Bauabh??ngigkeiten in &apt-get;." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:717 +msgid "<literal>Debug::Hashes</literal>" +msgstr "<literal>Debug::Hashes</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:720 +msgid "" +"Output each cryptographic hash that is generated by the <literal>apt</" +"literal> libraries." +msgstr "" +"Jeden kryptografischen Hash ausgeben, der von den <literal>apt</literal>-" +"Bibliotheken generiert wurde." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:727 +msgid "<literal>Debug::IdentCDROM</literal>" +msgstr "<literal>Debug::IdentCDROM</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:730 +msgid "" +"Do not include information from <literal>statfs</literal>, namely the number " +"of used and free blocks on the CD-ROM filesystem, when generating an ID for " +"a CD-ROM." +msgstr "" +"Keine Informationen von <literal>statfs</literal> einschlie??en, und zwar " +"die Anzahl der benutzten und freien Bl??cke auf dem CD-ROM-Dateisystem, wenn " +"eine ID f??r eine CD-ROM generiert wird." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:738 +msgid "<literal>Debug::NoLocking</literal>" +msgstr "<literal>Debug::NoLocking</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:741 +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 "" +"Jegliches Sperren von Dateien ausschalten. Dies wird zum Beispiel erlauben, " +"dass zwei Instanzen von <quote><literal>apt-get update</literal></quote> zur " +"gleichen Zeit laufen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:749 +msgid "<literal>Debug::pkgAcquire</literal>" +msgstr "<literal>Debug::pkgAcquire</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:753 +msgid "Log when items are added to or removed from the global download queue." +msgstr "" +"Protokollieren, wenn Elemente aus der globalen Warteschlange zum " +"Herunterladen hinzugef??gt oder entfernt werden." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:760 +msgid "<literal>Debug::pkgAcquire::Auth</literal>" +msgstr "<literal>Debug::pkgAcquire::Auth</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:763 +msgid "" +"Output status messages and errors related to verifying checksums and " +"cryptographic signatures of downloaded files." +msgstr "" +"Statusmeldungen und Fehler ausgeben, die sich auf das Pr??fen von Pr??" +"fsummen und kryptografischen Signaturen von heruntergeladenen Dateien " +"beziehen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:770 +msgid "<literal>Debug::pkgAcquire::Diffs</literal>" +msgstr "<literal>Debug::pkgAcquire::Diffs</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:773 +msgid "" +"Output information about downloading and applying package index list diffs, " +"and errors relating to package index list diffs." +msgstr "" +"Informationen ??ber das Herunterladen und Anwenden von Paketindexlisten-" +"Diffs und Fehler, die die Paketindexlisten-Diffs betreffen, ausgeben." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:781 +msgid "<literal>Debug::pkgAcquire::RRed</literal>" +msgstr "<literal>Debug::pkgAcquire::RRed</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:785 +msgid "" +"Output information related to patching apt package lists when downloading " +"index diffs instead of full indices." +msgstr "" +"Informationen ausgeben, die sich auf das Patchen von Paketlisten von APT " +"beziehen, wenn Index-Diffs anstelle vollst??ndiger Indizes heruntergeladen " +"werden." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:792 +msgid "<literal>Debug::pkgAcquire::Worker</literal>" +msgstr "<literal>Debug::pkgAcquire::Worker</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:796 +msgid "" +"Log all interactions with the sub-processes that actually perform downloads." +msgstr "" +"Alle Interaktionen mit Unterprozessen protokollieren, die aktuell Downloads " +"durchf??hren." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:803 +msgid "<literal>Debug::pkgAutoRemove</literal>" +msgstr "<literal>Debug::pkgAutoRemove</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:807 +msgid "" +"Log events related to the automatically-installed status of packages and to " +"the removal of unused packages." +msgstr "" +"Alle Ereignisse protokollieren, die sich auf den automatisch-installiert-" +"Status von Paketen und auf das Entfernen von nicht benutzten Paketen " +"beziehen." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:814 +msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>" +msgstr "<literal>Debug::pkgDepCache::AutoInstall</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:817 +msgid "" +"Generate debug messages describing which packages are being automatically " +"installed to resolve dependencies. This corresponds to the initial auto-" +"install pass performed in, e.g., <literal>apt-get install</literal>, and not " +"to the full <literal>apt</literal> dependency resolver; see <literal>Debug::" +"pkgProblemResolver</literal> for that." +msgstr "" +"Fehlersuchmeldungen generieren, die beschreiben, welche Pakete automatisch " +"installiert werden, um Abh??ngigkeiten aufzul??sen. Dies entspricht dem " +"anfangs durchgef??hrten auto-install-Durchlauf, z.B. in <literal>apt-get " +"install</literal> und nicht dem vollst??ndigen <literal>apt</literal>-Abh??" +"ngigkeitsaufl??ser. Lesen Sie daf??r <literal>Debug::pkgProblemResolver</" +"literal>." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:828 +msgid "<literal>Debug::pkgDepCache::Marker</literal>" +msgstr "<literal>Debug::pkgDepCache::Marker</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:831 +msgid "" +"Generate debug messages describing which package is marked as keep/install/" +"remove while the ProblemResolver does his work. Each addition or deletion " +"may trigger additional actions; they are shown indented two additional space " +"under the original entry. The format for each line is <literal>MarkKeep</" +"literal>, <literal>MarkDelete</literal> or <literal>MarkInstall</literal> " +"followed by <literal>package-name <a.b.c -> d.e.f | x.y.z> (section)" +"</literal> where <literal>a.b.c</literal> is the current version of the " +"package, <literal>d.e.f</literal> is the version considered for installation " +"and <literal>x.y.z</literal> is a newer version, but not considered for " +"installation (because of a low pin score). The later two can be omitted if " +"there is none or if it is the same version as the installed. " +"<literal>section</literal> is the name of the section the package appears in." +msgstr "" +"Generiert Fehlersuchmeldungen, die beschreiben, welches Paket als keep/" +"install/remove markiert ist, w??hren der ProblemResolver seine Arbeit " +"verrichtet. Jedes Hinzuf??gen oder L??schen kann zus??tzliche Aktionen ausl??" +"sen. Sie werden nach zwei einger??ckten Leerzeichen unter dem " +"Originaleintrag angezeigt. Jede Zeile hat das Format <literal>MarkKeep</" +"literal>, <literal>MarkDelete</literal> oder <literal>MarkInstall</literal> " +"gefolgt von <literal>Paketname <a.b.c -> d.e.f | x.y.z> (Abschnitt)" +"</literal> wobei <literal>a.b.c</literal> die aktuelle Version des Paketes " +"ist, <literal>d.e.f</literal> die Version ist, die zur Installation " +"vorgesehen ist und <literal>x.y.z</literal> eine neuere Version ist, die " +"aber nicht zur Installation vorgesehen ist (aufgrund einer niedrigen Pinning-" +"Bewertung). Die letzten beiden k??nnen weggelassen werden, wenn es keine " +"gibt oder wenn sie die gleiche Version haben, wie die, die installiert ist. " +"<literal>section</literal> ist der Name des Abschnitts, in dem das Paket " +"erscheint." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:850 +msgid "<literal>Debug::pkgInitConfig</literal>" +msgstr "<literal>Debug::pkgInitConfig</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:853 +msgid "Dump the default configuration to standard error on startup." +msgstr "" +"Die Vorgabekonfiguration beim Start auf der Standardfehlerausgabe ausgeben." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:860 +msgid "<literal>Debug::pkgDPkgPM</literal>" +msgstr "<literal>Debug::pkgDPkgPM</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:863 +msgid "" +"When invoking &dpkg;, output the precise command line with which it is being " +"invoked, with arguments separated by a single space character." +msgstr "" +"Wenn &dpkg; aufgerufen wird, Ausgabe der genauen Befehlszeile mit der es " +"aufgerufen wurde, mit Argumenten, die durch einzelne Leerzeichen getrennt " +"sind." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:871 +msgid "<literal>Debug::pkgDPkgProgressReporting</literal>" +msgstr "<literal>Debug::pkgDPkgProgressReporting</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:874 +msgid "" +"Output all the data received from &dpkg; on the status file descriptor and " +"any errors encountered while parsing it." +msgstr "" +"Alle von &dpkg; empfangenen Daten ??ber einen Status-Datei-Deskriptor und " +"alle w??hrend deren Auswertung gefundenen Fehler ausgeben." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:881 +msgid "<literal>Debug::pkgOrderList</literal>" +msgstr "<literal>Debug::pkgOrderList</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:885 +msgid "" +"Generate a trace of the algorithm that decides the order in which " +"<literal>apt</literal> should pass packages to &dpkg;." +msgstr "" +"Eine Aufzeichnung des Algorithmus generieren, der ??ber die Reihenfolge " +"entscheidet, in der <literal>apt</literal> Pakete an &dpkg; weiterleiten " +"soll." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:893 +msgid "<literal>Debug::pkgPackageManager</literal>" +msgstr "<literal>Debug::pkgPackageManager</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:897 +msgid "" +"Output status messages tracing the steps performed when invoking &dpkg;." +msgstr "" +"Statusmeldungen ausgeben, die die Schritte nachverfolgen, die beim Aufruf " +"von &dpkg; ausgef??hrt werden." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:904 +msgid "<literal>Debug::pkgPolicy</literal>" +msgstr "<literal>Debug::pkgPolicy</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:908 +msgid "Output the priority of each package list on startup." +msgstr "Die Priorit??t jeder Paketliste beim Start ausgeben." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:914 +msgid "<literal>Debug::pkgProblemResolver</literal>" +msgstr "<literal>Debug::pkgProblemResolver</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:918 +msgid "" +"Trace the execution of the dependency resolver (this applies only to what " +"happens when a complex dependency problem is encountered)." +msgstr "" +"Die Ausf??hrung des Abh??ngigkeitenverfolgers aufzeichnen (dies wird nur auf " +"das angewandt, was geschieht, wenn ein komplexes Abh??ngigkeitsproblem " +"aufgetreten ist)." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:926 +msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>" +msgstr "<literal>Debug::pkgProblemResolver::ShowScores</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:929 +msgid "" +"Display a list of all installed packages with their calculated score used by " +"the pkgProblemResolver. The description of the package is the same as " +"described in <literal>Debug::pkgDepCache::Marker</literal>" +msgstr "" +"Eine Liste aller installierten Pakete mit ihren berechneten Bewertungen, die " +"vom pkgProblemResolver benutzt werden, ausgeben. Die Beschreibung des Pakets " +"ist die gleiche, wie in <literal>Debug::pkgDepCache::Marker</literal> " +"beschrieben." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:937 +msgid "<literal>Debug::sourceList</literal>" +msgstr "<literal>Debug::sourceList</literal>" + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> +#: apt.conf.5.xml:941 +msgid "" +"Print information about the vendors read from <filename>/etc/apt/vendors." +"list</filename>." +msgstr "" +"Die Informationen ??ber die in <filename>/etc/apt/vendors.list</filename> " +"gelesenen Anbieter ausgeben." + +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:963 +msgid "" +"&configureindex; is a configuration file showing example values for all " +"possible options." +msgstr "" +"&configureindex; ist eine Konfigurationsdatei, die Beispielwerte f??r alle " +"m??glichen Optionen zeigen." + +#. type: Content of: <refentry><refsect1><variablelist> +#: apt.conf.5.xml:970 +msgid "&file-aptconf;" +msgstr "&file-aptconf;" + +#. ? reading apt.conf +#. type: Content of: <refentry><refsect1><para> +#: apt.conf.5.xml:975 +msgid "&apt-cache;, &apt-config;, &apt-preferences;." +msgstr "&apt-cache;, &apt-config;, &apt-preferences;." + +#. The last update date +#. type: Content of: <refentry><refentryinfo> +#: apt_preferences.5.xml:13 +msgid "&apt-author.team; &apt-email; &apt-product; <date>04 May 2009</date>" +msgstr "&apt-author.team; &apt-email; &apt-product; <date>04. Mai 2009</date>" + +#. type: Content of: <refentry><refnamediv><refname> +#: apt_preferences.5.xml:21 apt_preferences.5.xml:28 +msgid "apt_preferences" +msgstr "apt_preferences" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: apt_preferences.5.xml:29 +msgid "Preference control file for APT" +msgstr "Voreinstellungssteuerdatei f??r APT" + +#. type: Content of: <refentry><refsect1><para> +#: apt_preferences.5.xml:34 +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 "" +"Die APT-Einstellungsdatei <filename>/etc/apt/preferences</filename> und " +"Teildateien im Verzeichnis <filename>/etc/apt/preferences.d/</filename> k??" +"nnen benutzt werden, um zu steuern, welcher Versionen von Paketen zur " +"Installation ausgew??hlt werden." + +#. type: Content of: <refentry><refsect1><para> +#: apt_preferences.5.xml:39 +msgid "" +"Several versions of a package may be available for installation when the " +"&sources-list; file contains references to more than one distribution (for " +"example, <literal>stable</literal> and <literal>testing</literal>). APT " +"assigns a priority to each version that is available. Subject to dependency " +"constraints, <command>apt-get</command> selects the version with the highest " +"priority for installation. The APT preferences file overrides the " +"priorities that APT assigns to package versions by default, thus giving the " +"user control over which one is selected for installation." +msgstr "" +"Es k??nnten mehrere Versionen eines Pakets zur Installation verf??gbar sein, " +"wenn die Datei &sources-list; Bez??ge zu mehr als einer Distribution enth??" +"lt (zum Beispiel <literal>stable</literal> und <literal>testing</literal>). " +"APT weist jeder verf??gbaren Version eine Priorit??t zu. Abh??ngig von Abh??" +"ngigkeitsbedingungen, w??hlt <command>apt-get</command> die Version mit der " +"h??chsten Priorit??t zur Installation aus. Die APT-Einstellungsdatei ??" +"berschreibt die Priorit??ten, die APT den Paketversionen standardm????ig " +"zuweist, was dem Anwender die Kontrolle dar??ber gibt, welche zur " +"Installation ausgew??hlt wird." + +#. type: Content of: <refentry><refsect1><para> +#: apt_preferences.5.xml:49 +msgid "" +"Several instances of the same version of a package may be available when the " +"&sources-list; file contains references to more than one source. In this " +"case <command>apt-get</command> downloads the instance listed earliest in " +"the &sources-list; file. The APT preferences file does not affect the " +"choice of instance, only the choice of version." +msgstr "" +"Es k??nnten mehrere Instanzen der gleichen Version eines Paketes verf??gbar " +"sein, wenn die Datei &sources-list; Bez??ge zu mehr als einer Distribution " +"enth??lt. In diesem Fall l??dt <command>apt-get</command> die Instanz " +"herunter, die in der Datei &sources-list; als erstes aufgelistet ist. Die " +"APT-Einstellungsdatei beeinflusst die Wahl der Instanz nicht, nur die Wahl " +"der Version." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:56 +msgid "APT's Default Priority Assignments" +msgstr "APTs Standardpriorit??tszuweisungen" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:71 +#, no-wrap +msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" +msgstr "<command>apt-get install -t testing <replaceable>irgendein_Paket</replaceable></command>\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:74 +#, no-wrap +msgid "APT::Default-Release \"stable\";\n" +msgstr "APT::Default-Release \"stable\";\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:58 +msgid "" +"If there is no preferences file or if there is no entry in the file that " +"applies to a particular version then the priority assigned to that version " +"is the priority of the distribution to which that version belongs. It is " +"possible to single out a distribution, \"the target release\", which " +"receives a higher priority than other distributions do by default. The " +"target release can be set on the <command>apt-get</command> command line or " +"in the APT configuration file <filename>/etc/apt/apt.conf</filename>. Note " +"that this has precedence over any general priority you set in the <filename>/" +"etc/apt/preferences</filename> file described later, but not over " +"specifically pinned packages. For example, <placeholder type=" +"\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>" +msgstr "" +"Wenn es keine Einstellungsdatei gibt oder es in der Datei keinen Eintrag " +"gibt, der sich auf eine bestimmte Version bezieht, dann ist die dieser " +"Version zugewiesene Priorit??t, die Priorit??t der Distribution zu der die " +"Version geh??rt. Es ist m??glich eine Distribution auszuzeichnen, ??das Ziel-" +"Release??, die eine h??here Priorit??t erh??lt, als dies andere " +"Distributionen standardm????ig tun. Das Ziel-Release kann auf der " +"<command>apt-get</command>-Befehlszeile oder in der APT-Konfigurationsdatei " +"<filename>/etc/apt/apt.conf</filename> gesetzt werden. Beachten Sie, dass " +"dies Vorrang vor einer allgemeinen Priorit??t hat, die Sie, wie sp??ter " +"beschrieben, in der Datei <filename>/etc/apt/preferences</filename> setzen, " +"aber nicht vor bestimmten mit Pinning gewichteten Paketen. Beispielsweise " +"<placeholder type=\"programlisting\" id=\"0\"/> <placeholder type=" +"\"programlisting\" id=\"1\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:83 +msgid "priority 100" +msgstr "Priorit??t 100" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:84 +msgid "to the version that is already installed (if any)." +msgstr "zu der Version, die bereits installiert ist (wenn vorhanden)." + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:88 +msgid "priority 500" +msgstr "Priorit??t 500" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:89 +msgid "" +"to the versions that are not installed and do not belong to the target " +"release." +msgstr "" +"zu den Versionen, die nicht installiert sind und die nicht zum Ziel-Release " +"geh??ren." + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:93 +msgid "priority 990" +msgstr "Priorit??t 990" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:94 +msgid "" +"to the versions that are not installed and belong to the target release." +msgstr "" +"zu den Versionen, die nicht installiert sind und zum Ziel-Release geh??ren." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:78 +msgid "" +"If the target release has been specified then APT uses the following " +"algorithm to set the priorities of the versions of a package. Assign: " +"<placeholder type=\"variablelist\" id=\"0\"/>" +msgstr "" +"Wenn das Ziel-Release angegeben wurde, dann benutzt APT den folgenden " +"Algorithmus, um die Priorit??ten der Versionen eines Paketes zu setzen. " +"Zuweisung: <placeholder type=\"variablelist\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:99 +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." +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." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:103 +msgid "" +"APT then applies the following rules, listed in order of precedence, to " +"determine which version of a package to install." +msgstr "" +"APT wendet dann die folgenden Regeln an, aufgelistet in der Reihenfolge " +"ihres Vorrangs, um zu bestimmen in welcher Version das Paket zu installieren " +"ist." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:106 +msgid "" +"Never downgrade unless the priority of an available version exceeds 1000. " +"(\"Downgrading\" is installing a less recent version of a package in place " +"of a more recent version. Note that none of APT's default priorities " +"exceeds 1000; such high priorities can only be set in the preferences file. " +"Note also that downgrading a package can be risky.)" +msgstr "" +"F??hren Sie niemals ein Downgrade durch, au??er wenn die Priorit??t verf??" +"gbarer Pakete 1000 ??bersteigt. ??Downgrading?? ist das Installieren einer " +"weniger aktuellen Version, an Stelle einer aktuelleren Version. Beachten " +"Sie, dass keine Standardpriorit??t von APT 1000 ??bersteigt. So hohe " +"Priorit??ten k??nnen nur durch die Einstellungsdatei gesetzt werden. " +"Beachten Sie au??erdem, dass Downgrading eines Paketes riskant sein kann.)" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:112 +msgid "Install the highest priority version." +msgstr "Die Version mit der h??chsten Priorit??t installieren." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:113 +msgid "" +"If two or more versions have the same priority, install the most recent one " +"(that is, the one with the higher version number)." +msgstr "" +"Wenn zwei oder mehr Versionen die gleiche Priorit??t haben, wird die " +"aktuellste installiert (das ist die mit der h??heren Versionsnummer)." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:116 +msgid "" +"If two or more versions have the same priority and version number but either " +"the packages differ in some of their metadata or the <literal>--reinstall</" +"literal> option is given, install the uninstalled one." +msgstr "" +"Wenn zwei oder mehr Versionen die gleiche Priorit??t und Versionsnummer " +"haben, die Pakete sich aber entweder in ihren Metadaten unterscheiden oder " +"die Option <literal>--reinstall</literal> angegeben wurde, wird die nicht " +"installierte installiert." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:122 +msgid "" +"In a typical situation, the installed version of a package (priority 100) " +"is not as recent as one of the versions available from the sources listed in " +"the &sources-list; file (priority 500 or 990). Then the package will be " +"upgraded when <command>apt-get install <replaceable>some-package</" +"replaceable></command> or <command>apt-get upgrade</command> is executed." +msgstr "" +"In einer typischen Situation ist die Version eines Paketes (Priorit??t 100) " +"nicht so aktuell, wie eine der verf??gbaren Versionen, die in der Quellliste " +"der Datei &sources-list; steht (Priorit??t 500 oder 900). Dann wird ein " +"Upgrade des Pakets durchgef??hrt, wenn <command>apt-get install " +"<replaceable>irgendein_Paket</replaceable></command> oder <command>apt-get " +"upgrade</command> ausgef??hrt wird." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:129 +msgid "" +"More rarely, the installed version of a package is <emphasis>more</emphasis> " +"recent than any of the other available versions. The package will not be " +"downgraded when <command>apt-get install <replaceable>some-package</" +"replaceable></command> or <command>apt-get upgrade</command> is executed." +msgstr "" +"Seltener ist die installierte Version eines Pakets <emphasis>neuer</" +"emphasis>, als jede andere der verf??gbaren Versionen. F??r das Paket wird " +"kein Downgrade durchgef??hrt, wenn <command>apt-get install " +"<replaceable>irgendein_Paket</replaceable></command> oder <command>apt-get " +"upgrade</command> ausgef??hrt wird." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:134 +msgid "" +"Sometimes the installed version of a package is more recent than the version " +"belonging to the target release, but not as recent as a version belonging to " +"some other distribution. Such a package will indeed be upgraded when " +"<command>apt-get install <replaceable>some-package</replaceable></command> " +"or <command>apt-get upgrade</command> is executed, because at least " +"<emphasis>one</emphasis> of the available versions has a higher priority " +"than the installed version." +msgstr "" +"Manchmal ist die installierte Version eines Pakets aktueller, als die " +"Version, die zum Ziel-Release geh??rt, aber nicht so aktuell, wie eine " +"Version, die zu einer anderen Distribution geh??rt. F??r ein derartiges " +"Paket wird tats??chlich ein Upgrade durchgef??hrt, wenn <command>apt-get " +"install <replaceable>irgendein_Paket</replaceable></command> oder " +"<command>apt-get upgrade</command> ausgef??hrt wird, weil mindestens " +"<emphasis>eine</emphasis> der verf??gbaren Versionen eine h??here Priorit??t " +"als die installierte Version hat." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:143 +msgid "The Effect of APT Preferences" +msgstr "Die Auswirkungen von APT-Einstellungen" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:145 +msgid "" +"The APT preferences file allows the system administrator to control the " +"assignment of priorities. The file consists of one or more multi-line " +"records separated by blank lines. Records can have one of two forms, a " +"specific form and a general form." +msgstr "" +"Die APT-Einstellungsdatei erlaubt einem Systemverwalter die Zuweisung von " +"Priorit??ten zu steuern. Die Datei besteht aus einem oder mehreren " +"mehrzeiligen Datens??tzen, die durch leere Zeilen getrennt sind. Datens??tze " +"k??nnen eine von zwei Gestalten haben, eine spezielle Gestalt oder eine " +"allgemeine Gestalt." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:151 +msgid "" +"The specific form assigns a priority (a \"Pin-Priority\") to one or more " +"specified packages and specified version or version range. For example, the " +"following record assigns a high priority to all versions of the " +"<filename>perl</filename> package whose version number begins with " +"\"<literal>5.8</literal>\". Multiple packages can be separated by spaces." +msgstr "" +"Die spezielle Form weist die Priorit??t (eine ??Pin-Priorit??t??) einem oder " +"mehreren angegebenen Paketen und angegebenen Versionen oder " +"Versionsbereichen zu. Der folgende Datensatz weist zum Beispiel allen " +"Versionen des <filename>perl</filename>-Pakets eine h??here Priorit??t zu, " +"deren Versionsnummer mit ??<literal>5.8</literal>?? beginnt. Mehrere Pakete " +"k??nnen durch Leerzeichen getrennt werden." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:158 +#, no-wrap +msgid "" +"Package: perl\n" +"Pin: version 5.8*\n" +"Pin-Priority: 1001\n" +msgstr "" +"Package: perl\n" +"Pin: version 5.8*\n" +"Pin-Priority: 1001\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:164 +msgid "" +"The general form assigns a priority to all of the package versions in a " +"given distribution (that is, to all the versions of packages that are listed " +"in a certain <filename>Release</filename> file) or to all of the package " +"versions coming from a particular Internet site, as identified by the site's " +"fully qualified domain name." +msgstr "" +"Die allgemeine Form weist allen Paketversionen in einer gegebenen " +"Distribution (d.h. alle Versionen von Paketen, die in einer bestimmten " +"<filename>Release</filename>-Datei gelistet sind) oder allen Paketversionen, " +"die von einer speziellen Internet-Site kommen, die durch ihren voll " +"ausgebildeten Dom??nennamen identifiziert wird, eine Priorit??t zu." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:170 +msgid "" +"This general-form entry in the APT preferences file applies only to groups " +"of packages. For example, the following record assigns a high priority to " +"all package versions available from the local site." +msgstr "" +"Dieser Eintrag in allgemeiner Form in der APT-Einstellungsdatei verwendet " +"nur Gruppen von Paketen. Der folgende Eintrag weist zum Beispiel allen " +"Paketversionen eine hohe Priorit??t zu, die lokale liegen." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:175 +#, no-wrap +msgid "" +"Package: *\n" +"Pin: origin \"\"\n" +"Pin-Priority: 999\n" +msgstr "" +"Package: *\n" +"Pin: origin \"\"\n" +"Pin-Priority: 999\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:180 +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\"." +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??." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:186 +msgid "" +"The following record assigns a low priority to all package versions " +"belonging to any distribution whose Archive name is \"<literal>unstable</" +"literal>\"." +msgstr "" +"Der folgende Datensatz weist allen Paketversionen, die zu Distributionen " +"geh??ren, deren Archivname ??<literal>unstable</literal>?? ist, eine " +"niedrige Priorit??t zu." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:190 +#, no-wrap +msgid "" +"Package: *\n" +"Pin: release a=unstable\n" +"Pin-Priority: 50\n" +msgstr "" +"Package: *\n" +"Pin: release a=unstable\n" +"Pin-Priority: 50\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:195 +msgid "" +"The following record assigns a high priority to all package versions " +"belonging to any distribution whose Codename is \"<literal>squeeze</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." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:199 +#, no-wrap +msgid "" +"Package: *\n" +"Pin: release n=squeeze\n" +"Pin-Priority: 900\n" +msgstr "" +"Package: *\n" +"Pin: release n=squeeze\n" +"Pin-Priority: 900\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:204 +msgid "" +"The following record assigns a high priority to all package versions " +"belonging to any release whose Archive name is \"<literal>stable</literal>\" " +"and whose release Version number is \"<literal>3.0</literal>\"." +msgstr "" +"Der folgende Datensatz weist allen Paketversionen, die zu einer Distribution " +"geh??ren, deren Archivname ??<literal>stable</literal>?? und deren Release-" +"Nummer ??<literal>3.0</literal>?? ist, eine hohe Priorit??t zu." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> +#: apt_preferences.5.xml:209 +#, no-wrap +msgid "" +"Package: *\n" +"Pin: release a=stable, v=3.0\n" +"Pin-Priority: 500\n" +msgstr "" +"Package: *\n" +"Pin: release a=stable, v=3.0\n" +"Pin-Priority: 500\n" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:220 +msgid "How APT Interprets Priorities" +msgstr "Wie APT Priorit??ten interpretiert" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:228 +msgid "P > 1000" +msgstr "P > 1000" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:229 +msgid "" +"causes a version to be installed even if this constitutes a downgrade of the " +"package" +msgstr "" +"veranlasst, dass eine Version installiert wird, auch wenn dies ein Downgrade " +"des Pakets durchf??hrt" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:233 +msgid "990 < P <=1000" +msgstr "990 < P <=1000" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:234 +msgid "" +"causes a version to be installed even if it does not come from the target " +"release, unless the installed version is more recent" +msgstr "" +"veranlasst, dass eine Version installiert wird, auch wenn diese nicht vom " +"Ziel-Release kommt, au??er wenn die installierte Version aktueller ist" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:239 +msgid "500 < P <=990" +msgstr "500 < P <=990" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:240 +msgid "" +"causes a version to be installed unless there is a version available " +"belonging to the target release or the installed version is more recent" +msgstr "" +"veranlasst, dass eine Version installiert wird, au??er wenn eine Version " +"verf??gbar ist, die zum Ziel-Release geh??rt oder die installierte Version " +"neuer ist" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:245 +msgid "100 < P <=500" +msgstr "100 < P <=500" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:246 +msgid "" +"causes a version to be installed unless there is a version available " +"belonging to some other distribution or the installed version is more recent" +msgstr "" +"veranlasst, dass eine Version installiert wird, au??er wenn eine Version " +"verf??gbar ist, die zu einer anderen Distribution geh??rt oder die " +"installierte Version neuer ist" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:251 +msgid "0 < P <=100" +msgstr "0 < P <=100" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:252 +msgid "" +"causes a version to be installed only if there is no installed version of " +"the package" +msgstr "" +"veranlasst, dass eine Version nur dann installiert wird, wenn es keine " +"installierte Version des Pakets gibt" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:256 +msgid "P < 0" +msgstr "P < 0" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:257 +msgid "prevents the version from being installed" +msgstr "verhindert das Installieren der Version" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:223 +msgid "" +"Priorities (P) assigned in the APT preferences file must be positive or " +"negative integers. They are interpreted as follows (roughly speaking): " +"<placeholder type=\"variablelist\" id=\"0\"/>" +msgstr "" +"Die in der APT-Einstellungsdatei zugewiesenen Priorit??ten (P) m??ssen " +"positive oder negative Ganzzahlen sein. Sie werden wie folgt interpretiert " +"(grob gesagt): <placeholder type=\"variablelist\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:262 +msgid "" +"If any specific-form records match an available package version then the " +"first such record determines the priority of the package version. Failing " +"that, if any general-form records match an available package version then " +"the first such record determines the priority of the package version." +msgstr "" +"Wenn irgendwelche Datens??tze mit speziellem Format zu einer verf??gbaren " +"Paketversion passen, dann legt der erste dieser Datens??tze die Priorit??t " +"der Paketversion fest. Schl??gt dies fehl und es passen irgendwelche Datens??" +"tze mit allgemeinem Format zu einer verf??gbaren Paketversion, dann legt der " +"erste dieser Datens??tze die Priorit??t der Paketversion fest." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:268 +msgid "" +"For example, suppose the APT preferences file contains the three records " +"presented earlier:" +msgstr "" +"Nehmen wir zum Beispiel an, die APT-Einstellungsdatei enth??lt die drei " +"bereits gezeigten Datens??tze:" + +#. type: Content of: <refentry><refsect1><refsect2><programlisting> +#: apt_preferences.5.xml:272 +#, no-wrap +msgid "" +"Package: perl\n" +"Pin: version 5.8*\n" +"Pin-Priority: 1001\n" +"\n" +"Package: *\n" +"Pin: origin \"\"\n" +"Pin-Priority: 999\n" +"\n" +"Package: *\n" +"Pin: release unstable\n" +"Pin-Priority: 50\n" +msgstr "" +"Package: perl\n" +"Pin: version 5.8*\n" +"Pin-Priority: 1001\n" +"\n" +"Package: *\n" +"Pin: origin \"\"\n" +"Pin-Priority: 999\n" +"\n" +"Package: *\n" +"Pin: release unstable\n" +"Pin-Priority: 50\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:285 +msgid "Then:" +msgstr "Dann:" + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:287 +msgid "" +"The most recent available version of the <literal>perl</literal> package " +"will be installed, so long as that version's version number begins with " +"\"<literal>5.8</literal>\". If <emphasis>any</emphasis> 5.8* version of " +"<literal>perl</literal> is available and the installed version is 5.9*, then " +"<literal>perl</literal> will be downgraded." +msgstr "" +"Es wird die aktuellste verf??gbare Version des Pakets <literal>perl</" +"literal> installiert, so lange die Versionsnummer mit ??<literal>5.8</" +"literal>?? anf??ngt. Wenn <emphasis>irgendeine</emphasis> 5.8*-Version von " +"<literal>perl</literal>verf??gbar ist und die installierte Version 5.9* ist, " +"dann wird von <literal>perl</literal> ein Downgrade durchgef??hrt." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:292 +msgid "" +"A version of any package other than <literal>perl</literal> that is " +"available from the local system has priority over other versions, even " +"versions belonging to the target release." +msgstr "" +"Eine Version irgendeines anderen Pakets als <literal>perl</literal>, die vom " +"lokalen System verf??gbar ist, hat eine Priorit??t ??ber anderen Versionen, " +"sogar wenn diese Versionen zum Ziel-Release geh??ren." + +#. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> +#: apt_preferences.5.xml:296 +msgid "" +"A version of a package whose origin is not the local system but some other " +"site listed in &sources-list; and which belongs to an <literal>unstable</" +"literal> distribution is only installed if it is selected for installation " +"and no version of the package is already installed." +msgstr "" +"Eine Version eines Pakets, dessen Ursprung nicht das lokale System ist, aber " +"ein anderer in &sources-list; aufgelisteter Ort und der zu einer " +"<literal>unstable</literal>-Distribution geh??rt. wird nur installiert, " +"falls es zur Installation ausgew??hlt wurde und nicht bereits eine Version " +"des Pakets installiert ist." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:306 +msgid "Determination of Package Version and Distribution Properties" +msgstr "Festlegung von Paketversion und Distributions-Eigenschaften" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:308 +msgid "" +"The locations listed in the &sources-list; file should provide " +"<filename>Packages</filename> and <filename>Release</filename> files to " +"describe the packages available at that location." +msgstr "" +"Die in der &sources-list;-Datei aufgelisteten Orte sollten " +"<filename>Packages</filename>- und <filename>Release</filename>-Dateien " +"bereitstellen, um die an diesem Ort verf??gbaren Pakete zu beschreiben." + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:320 +msgid "the <literal>Package:</literal> line" +msgstr "die <literal>Package:</literal>-Zeile" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:321 +msgid "gives the package name" +msgstr "gibt den Paketnamen an" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:324 apt_preferences.5.xml:374 +msgid "the <literal>Version:</literal> line" +msgstr "die <literal>Version:</literal>-Zeile" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:325 +msgid "gives the version number for the named package" +msgstr "gibt die Versionsnummer f??r das genannte Paket an" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:312 +msgid "" +"The <filename>Packages</filename> file is normally found in the directory " +"<filename>.../dists/<replaceable>dist-name</replaceable>/" +"<replaceable>component</replaceable>/<replaceable>arch</replaceable></" +"filename>: for example, <filename>.../dists/stable/main/binary-i386/" +"Packages</filename>. It consists of a series of multi-line records, one for " +"each package available in that directory. Only two lines in each record are " +"relevant for setting APT priorities: <placeholder type=\"variablelist\" id=" +"\"0\"/>" +msgstr "" +"Die <filename>Packages</filename>-Datei wird normalerweise im Verzeichnis " +"<filename>.../dists/<replaceable>Distributions-Name</replaceable>/" +"<replaceable>Komponente</replaceable>/<replaceable>Architektur</" +"replaceable></filename> gefunden, zum Beispiel <filename>.../dists/stable/" +"main/binary-i386/Packages</filename>. Sie besteht aus einer Serie " +"mehrzeiliger Datens??tze, einem f??r jedes verf??gbare Paket in diesem " +"Verzeichnis. In jedem Datensatz sind nur zwei Zeilen zum Setzen der APT-" +"Priorit??ten relevant: <placeholder type=\"variablelist\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:341 +msgid "the <literal>Archive:</literal> or <literal>Suite:</literal> line" +msgstr "die <literal>Archive:</literal>- oder <literal>Suite:</literal>-Zeile" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:342 +msgid "" +"names the archive to which all the packages in the directory tree belong. " +"For example, the line \"Archive: stable\" or \"Suite: stable\" specifies " +"that all of the packages in the directory tree below the parent of the " +"<filename>Release</filename> file are in a <literal>stable</literal> " +"archive. Specifying this value in the APT preferences file would require " +"the line:" +msgstr "" +"benennt das Archiv, zu dem alle Pakete im Verzeichnisbaum geh??ren. Die " +"Zeile ??Archive: stable?? oder ??Suite: stable?? gibt zum Beispiel an, dass " +"alle Pakete im Verzeichnisbaum unterhalb des der <filename>Release</" +"filename>-Datei ??bergeordneten Verzeichnisses sich in einem " +"<literal>stable</literal>-Archiv befinden. 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:352 +#, no-wrap +msgid "Pin: release a=stable\n" +msgstr "Pin: release a=stable\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:358 +msgid "the <literal>Codename:</literal> line" +msgstr "die <literal>Codename:</literal>-Zeile" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:359 +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:" +msgstr "" +"benennt den Codenamen, zu dem alle Pakete im Verzeichnisbaum geh??ren. Die " +"Zeile ??Codename: squeeze?? 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:" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> +#: apt_preferences.5.xml:368 +#, no-wrap +msgid "Pin: release n=squeeze\n" +msgstr "Pin: release n=squeeze\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:375 +msgid "" +"names the release version. For example, the packages in the tree might " +"belong to Debian GNU/Linux release version 3.0. Note that there is normally " +"no version number for the <literal>testing</literal> and <literal>unstable</" +"literal> distributions because they have not been released yet. Specifying " +"this in the APT preferences file would require one of the following lines." +msgstr "" +"benennt die Release-Version. Die Pakete im Baum k??nnten zum Beispiel zur " +"Debian GNU/Linux-Release-Version 3.0 geh??ren. Beachten Sie, dass es " +"normalerweise keine Versionsnummer f??r <literal>testing</literal>- und " +"<literal>unstable</literal>-Distributionen gibt, weil sie noch nicht ver??" +"ffentlicht wurden. Diese in der APT-Einstellungsdatei anzugeben w??rde eine " +"der folgenden Zeilen ben??tigen:" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> +#: apt_preferences.5.xml:384 +#, no-wrap +msgid "" +"Pin: release v=3.0\n" +"Pin: release a=stable, v=3.0\n" +"Pin: release 3.0\n" +msgstr "" +"Pin: release v=3.0\n" +"Pin: release a=stable, v=3.0\n" +"Pin: release 3.0\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:393 +msgid "the <literal>Component:</literal> line" +msgstr "die <literal>Component:</literal>-Zeile" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:394 +msgid "" +"names the licensing component associated with the packages in the directory " +"tree of the <filename>Release</filename> file. For example, the line " +"\"Component: main\" specifies that all the packages in the directory tree " +"are from the <literal>main</literal> component, which entails that they are " +"licensed under terms listed in the Debian Free Software Guidelines. " +"Specifying this component in the APT preferences file would require the line:" +msgstr "" +"benennt die Lizenzierungskomponente, die mit den Paketen im Verzeichnisbaum " +"der <filename>Release</filename>-Datei verbunden ist. Die Zeile ??Component: " +"main?? gibt zum Beispiel an, dass alle Pakete im Verzeichnisbaum von der " +"<literal>main</literal>-Komponente stammen, was zur Folge hat, dass sie " +"unter den Bedingungen der Debian-Richtlinien f??r Freie Software stehen. " +"Diese Komponente in der APT-Einstellungsdatei anzugeben w??rde die folgende " +"Zeilen ben??tigen:" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> +#: apt_preferences.5.xml:403 +#, no-wrap +msgid "Pin: release c=main\n" +msgstr "Pin: release c=main\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:409 +msgid "the <literal>Origin:</literal> line" +msgstr "die <literal>Origin:</literal>-Zeile" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:410 +msgid "" +"names the originator of the packages in the directory tree of the " +"<filename>Release</filename> file. Most commonly, this is <literal>Debian</" +"literal>. Specifying this origin in the APT preferences file would require " +"the line:" +msgstr "" +"benennt den Urheber des Pakets im Verzeichnisbaum der <filename>Release</" +"filename>-Datei. Zumeist ist dies <literal>Debian</literal>. Diesen Ursprung " +"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:416 +#, no-wrap +msgid "Pin: release o=Debian\n" +msgstr "Pin: release o=Debian\n" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> +#: apt_preferences.5.xml:422 +msgid "the <literal>Label:</literal> line" +msgstr "die <literal>Label:</literal>-Zeile" + +#. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> +#: apt_preferences.5.xml:423 +msgid "" +"names the label of the packages in the directory tree of the " +"<filename>Release</filename> file. Most commonly, this is <literal>Debian</" +"literal>. Specifying this label in the APT preferences file would require " +"the line:" +msgstr "" +"benennt die Beschriftung des Pakets im Verzeichnisbaum der " +"<filename>Release</filename>-Datei. Zumeist ist dies <literal>Debian</" +"literal>. Diese Beschriftung 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:429 +#, no-wrap +msgid "Pin: release l=Debian\n" +msgstr "Pin: release l=Debian\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:330 +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\"/>" +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>. Es 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:436 +msgid "" +"All of the <filename>Packages</filename> and <filename>Release</filename> " +"files retrieved from locations listed in the &sources-list; file are stored " +"in the directory <filename>/var/lib/apt/lists</filename>, or in the file " +"named by the variable <literal>Dir::State::Lists</literal> in the " +"<filename>apt.conf</filename> file. For example, the file <filename>debian." +"lcs.mit.edu_debian_dists_unstable_contrib_binary-i386_Release</filename> " +"contains the <filename>Release</filename> file retrieved from the site " +"<literal>debian.lcs.mit.edu</literal> for <literal>binary-i386</literal> " +"architecture files from the <literal>contrib</literal> component of the " +"<literal>unstable</literal> distribution." +msgstr "" +"Alle <filename>Packages</filename>- und <filename>Release</filename>-" +"Dateien, die von Orten heruntergeladen werden, die in der Datei &sources-" +"list; aufgelistet sind, werden im Verzeichnis <filename>/var/lib/apt/lists</" +"filename> oder in der von der Variablen <literal>Dir::State::Lists</literal> " +"in der Datei <filename>apt.conf</filename> benannten Datei gespeichert. Die " +"Datei <filename>debian.lcs.mit.edu_debian_dists_unstable_contrib_binary-" +"i386_Release</filename> enth??lt zum Beispiel die <filename>Release</" +"filename>-Datei, die von der Site <literal>debian.lcs.mit.edu</literal> f??r " +"die <literal>binary-i386</literal>-Architekturdateien von der " +"<literal>contrib</literal>-Komponente der <literal>unstable</literal>-" +"Distribution heruntergeladen wurde." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:449 +msgid "Optional Lines in an APT Preferences Record" +msgstr "Optionale Zeilen in einem APT-Einstellungsdatensatz" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:451 +msgid "" +"Each record in the APT preferences file can optionally begin with one or " +"more lines beginning with the word <literal>Explanation:</literal>. This " +"provides a place for comments." +msgstr "" +"Optional kann jeder Datensatz im der APT-Einstellungsdatei mit einer oder " +"mehreren Zeilen beginnen, die mit dem Wort <literal>Explanation:</literal> " +"anfangen. Dieses stellt einen Platz f??r Kommentare bereit." + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:455 +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 "" +"Die <literal>Pin-Priority:</literal>-Zeile in jedem APT-" +"Einstellungsdatensatz ist optional. Wenn diese weggelassen wird, weist APT " +"ein Priorit??t zu, die um 1 kleiner ist, als der letzte Wert, der in einer " +"Zeile angegeben wurde, die mit <literal>Pin-Priority: release ...</literal> " +"anf??ngt." + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:464 +msgid "Tracking Stable" +msgstr "Stable verfolgen" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:472 +#, no-wrap +msgid "" +"Explanation: Uninstall or do not install any Debian-originated\n" +"Explanation: package versions other than those in the stable distro\n" +"Package: *\n" +"Pin: release a=stable\n" +"Pin-Priority: 900\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" +msgstr "" +"Explanation: Deinstallieren oder nicht installieren von anderen von Debian\n" +"Explanation: stammenden Paketversionen, als denen der Stable-Distribution\n" +"Package: *\n" +"Pin: release a=stable\n" +"Pin-Priority: 900\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:466 +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 " +"<literal>stable</literal> distribution and a prohibitively low priority to " +"package versions belonging to other <literal>Debian</literal> " +"distributions. <placeholder type=\"programlisting\" id=\"0\"/>" +msgstr "" +"Die folgende APT-Einstellungsdatei wird APT veranlassen, allen " +"Paketversionen eine h??here Priorit??t als die Vorgabe (500) zu geben, die " +"zu einer <literal>stable</literal>-Distribution geh??ren und eine ungeheuer " +"niedrige Priorit??t Paketversionen, die zu anderen <literal>Debian</literal>-" +"Distribution geh??ren. <placeholder type=\"programlisting\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:489 apt_preferences.5.xml:535 +#: apt_preferences.5.xml:593 +#, no-wrap +msgid "" +"apt-get install <replaceable>package-name</replaceable>\n" +"apt-get upgrade\n" +"apt-get dist-upgrade\n" +msgstr "" +"apt-get install <replaceable>Paketname</replaceable>\n" +"apt-get upgrade\n" +"apt-get dist-upgrade\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:484 +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 "" +"Mit einer geeigneten &sources-list;-Datei und der obigen Einstellungsdatei " +"wird jeder der folgenden Befehle APT veranlassen, ein Upgrade auf die neuste" +"(n) <literal>stable</literal>-Version(en) durchzuf??hren. <placeholder type=" +"\"programlisting\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:501 +#, no-wrap +msgid "apt-get install <replaceable>package</replaceable>/testing\n" +msgstr "apt-get install <replaceable>Paket</replaceable>/testing\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:495 +msgid "" +"The following command will cause APT to upgrade the specified package to the " +"latest version from the <literal>testing</literal> distribution; the package " +"will not be upgraded again unless this command is given again. <placeholder " +"type=\"programlisting\" id=\"0\"/>" +msgstr "" +"Der folgende Befehl wird APT veranlassen, ein Upgrade des angegebenen Pakets " +"auf die neuste Version der <literal>testing</literal>-Distribution durchzuf??" +"hren. Von dem Paket wird kein weiteres Upgrade durchgef??hrt, au??er wenn " +"dieser Befehl wieder angegeben wird. <placeholder type=\"programlisting\" id=" +"\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:507 +msgid "Tracking Testing or Unstable" +msgstr "Testing oder Unstable verfolgen" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:516 +#, no-wrap +msgid "" +"Package: *\n" +"Pin: release a=testing\n" +"Pin-Priority: 900\n" +"\n" +"Package: *\n" +"Pin: release a=unstable\n" +"Pin-Priority: 800\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" +msgstr "" +"Package: *\n" +"Pin: release a=testing\n" +"Pin-Priority: 900\n" +"\n" +"Package: *\n" +"Pin: release a=unstable\n" +"Pin-Priority: 800\n" +"\n" +"Package: *\n" +"Pin: release o=Debian\n" +"Pin-Priority: -10\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:509 +msgid "" +"The following APT preferences file will cause APT to assign a high priority " +"to package versions from the <literal>testing</literal> distribution, a " +"lower priority to package versions from the <literal>unstable</literal> " +"distribution, and a prohibitively low priority to package versions from " +"other <literal>Debian</literal> distributions. <placeholder type=" +"\"programlisting\" id=\"0\"/>" +msgstr "" +"Die folgende APT-Einstellungsdatei wird APT veranlassen, Paketversionen der " +"<literal>testing</literal>-Distribution eine hohe Priorit??t, Paketversionen " +"der <literal>unstable</literal>-Distribution eine niedrigere Priorit??t und " +"eine ungeheuer niedrige Priorit??t zu Paketversionen von anderen " +"<literal>Debian</literal>-Distributionen zuzuweisen. <placeholder type=" +"\"programlisting\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:530 +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 "" +"Mit einer geeigneten &sources-list;-Datei und der obigen Einstellungsdatei " +"wird jeder der folgenden Befehle APT veranlassen, ein Upgrade auf die neuste" +"(n) <literal>testing</literal>-Version(en) durchzuf??hren. <placeholder type=" +"\"programlisting\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:550 +#, no-wrap +msgid "apt-get install <replaceable>package</replaceable>/unstable\n" +msgstr "apt-get install <replaceable>Paket</replaceable>/unstable\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:541 +msgid "" +"The following command will cause APT to upgrade the specified package to the " +"latest version from the <literal>unstable</literal> distribution. " +"Thereafter, <command>apt-get upgrade</command> will upgrade the package to " +"the most recent <literal>testing</literal> version if that is more recent " +"than the installed version, otherwise, to the most recent <literal>unstable</" +"literal> version if that is more recent than the installed version. " +"<placeholder type=\"programlisting\" id=\"0\"/>" +msgstr "" +"Der folgende Befehl wird APT veranlassen, ein Upgrade des angegebenen Pakets " +"auf die neuste Version der <literal>unstable</literal>-Distribution " +"durchzuf??hren. Danach wird <command>apt-get upgrade</command> ein Upgrade " +"des Pakets auf die aktuellste <literal>testing</literal>-Version durchf??" +"hren, falls diese aktueller als die installierte Version ist, andernfalls " +"auf die aktuellste <literal>unstable</literal>-Version, wenn diese aktueller " +"als die installierte Version ist. <placeholder type=\"programlisting\" id=" +"\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><title> +#: apt_preferences.5.xml:557 +msgid "Tracking the evolution of a codename release" +msgstr "Die Entwicklung eines Codename-Releases verfolgen" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:571 +#, 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" +msgstr "" +"Explanation: Deinstallieren oder nicht installieren von anderen von Debian\n" +"Explanation: stammenden Paketversionen, als denen der Squeeze- oder Sid-Distribution\n" +"Package: *\n" +"Pin: release n=squeeze\n" +"Pin-Priority: 900\n" +"\n" +"Explanation: Debian-Unstable hat immer den Codenamen 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" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:559 +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 " +"specified codename of a distribution and a prohibitively low priority to " +"package versions belonging to other <literal>Debian</literal> distributions, " +"codenames and archives. Note that with this APT preference APT will follow " +"the migration of a release from the archive <literal>testing</literal> to " +"<literal>stable</literal> and later <literal>oldstable</literal>. If you " +"want to follow for example the progress in <literal>testing</literal> " +"notwithstanding the codename changes you should use the example " +"configurations above. <placeholder type=\"programlisting\" id=\"0\"/>" +msgstr "" +"Die folgende APT-Einstellungsdatei wird APT veranlassen, allen Paketen, die " +"zu einem bestimmten Codenamen einer Distribution geh??ren, eine h??here " +"Priorit??t als die Vorgabe (500) zu geben und Paketversionen, die zu anderen " +"<literal>Debian</literal>-Distributionen, Codenamen und Archiven geh??ren, " +"eine ungeheuer niedrige Priorit??t zu geben. Beachten Sie, dass APT mit " +"diesen APT-Einstellungen der Migration eines Releases vom Archiv " +"<literal>testing</literal> zu <literal>stable</literal> und sp??ter zu " +"<literal>oldstable</literal> folgen wird. Wenn Sie zum Beispiel dem " +"Fortschritt in <literal>testing</literal> folgen m??chten, obwohl der " +"Codename sich ??ndert, sollten Sie die Beispielkonfigurationen oberhalb " +"benutzen. <placeholder type=\"programlisting\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:588 +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\"/>" +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\"/>" + +#. type: Content of: <refentry><refsect1><refsect2><para><programlisting> +#: apt_preferences.5.xml:608 +#, no-wrap +msgid "apt-get install <replaceable>package</replaceable>/sid\n" +msgstr "apt-get install <replaceable>Paket</replaceable>/sid\n" + +#. type: Content of: <refentry><refsect1><refsect2><para> +#: apt_preferences.5.xml:599 +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\"/>" +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 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=\"programlisting\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><variablelist> +#: apt_preferences.5.xml:617 +msgid "&file-preferences;" +msgstr "&file-preferences;" + +#. type: Content of: <refentry><refsect1><para> +#: apt_preferences.5.xml:623 +msgid "&apt-get; &apt-cache; &apt-conf; &sources-list;" +msgstr "&apt-get; &apt-cache; &apt-conf; &sources-list;" + +#. type: Content of: <refentry><refnamediv><refname> +#: sources.list.5.xml:22 sources.list.5.xml:29 +msgid "sources.list" +msgstr "sources.list" + +#. type: Content of: <refentry><refnamediv><refpurpose> +#: sources.list.5.xml:30 +msgid "Package resource list for APT" +msgstr "Paketressourcenliste f??r APT" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:34 +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>" +msgstr "" +"Die Paketquellenliste wird benutzt, um Archive des Paketverteilungssystems, " +"das auf dem System benutzt wird, zu finden. Momentan dokumentiert diese " +"Handbuchseite nur das vom Debian-GNU/Linux-System benutzte " +"Paketierungssystem. Die Steuerungsdatei befindet sich in <filename>/etc/apt/" +"sources.list</filename>." + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:39 +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 #." +msgstr "" +"Die Quellenliste wurde entworfen, um eine beliebige Anzahl von aktiven " +"Quellen und eine Vielzahl von Quellmedien zu unterst??tzen. Die Datei listet " +"eine Quelle pro Zeile auf, wobei die bevorzugten Quellen zuerst aufgelistet " +"sind. Das Format jeder Zeile lautet: <literal>Typ URI Argumente</literal>. " +"Das erste Element <literal>Typ</literal> legt das Format f??r " +"<literal>Argumente</literal> fest. <literal>URI</literal> ist ein " +"universeller Quellenbezeichner ??Universal Resource Identifier?? (URI), der " +"eine Obermenge des spezielleren und besser bekannten Universal Resource " +"Locator (URL) ist. Der Rest der Zeile kann unter Verwendung von # als " +"Kommentar markiert werden." + +#. type: Content of: <refentry><refsect1><title> +#: sources.list.5.xml:50 +msgid "sources.list.d" +msgstr "sources.list.d" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:51 +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 " +"the regular <filename>sources.list</filename> file. File names need to end " +"with <filename>.list</filename> and may only contain letters (a-z and A-Z), " +"digits (0-9), underscore (_), hyphen (-) and period (.) characters. " +"Otherwise they will be silently ignored." +msgstr "" +"Das Verzeichnis <filename>/etc/apt/sources.list.d</filename> stellt eine M??" +"glichkeit bereit, sources.list-Eintr??ge in separaten Dateien hinzuzuf??gen. " +"Das Format ist das gleiche wie f??r die normale <filename>sources.list</" +"filename>-Datei. Dateinamen m??ssen mit <filename>.list</filename> enden und " +"k??nnen nur Buchstaben (a-z und A-Z), Ziffern (0-9), Unterstriche (_), " +"Bindestriche (-) und Punkte (.) enthalten. Ansonsten werden sie " +"stillschweigend ignoriert." + +#. type: Content of: <refentry><refsect1><title> +#: sources.list.5.xml:60 +msgid "The deb and deb-src types" +msgstr "Die Typen deb und deb-src" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:61 +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." +msgstr "" +"Der <literal>deb</literal>-Typ beschreibt ein typisches zweistufiges Debian-" +"Archiv, <filename>Distribution/Komponente</filename>. <literal>Distribution</" +"literal> ist typischerweise entweder <literal>stable</literal>, " +"<literal>unstable</literal> oder <literal>testing</literal>, w??hrend " +"Komponente entweder <literal>main</literal>, <literal>contrib</literal>, " +"<literal>non-free</literal> oder <literal>non-us</literal> ist. Der " +"<literal>deb-src</literal>-Typ beschreibt einen Quellcode einer Debian-" +"Distribution in der gleichen Form wie den <literal>deb</literal>-Typ. Eine " +"<literal>deb-src</literal>-Zeile wird ben??tigt, um Quellindizes " +"herunterzuladen." + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:73 +msgid "" +"The format for a <filename>sources.list</filename> entry using the " +"<literal>deb</literal> and <literal>deb-src</literal> types are:" +msgstr "" +"Das Format f??r einen <filename>sources.list</filename>-Eintrag, der die " +"<literal>deb</literal>- und <literal>deb-src</literal>-Typen benutzt, ist:" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:76 +#, no-wrap +msgid "deb uri distribution [component1] [component2] [...]" +msgstr "deb URI Distribution [Komponente1] [Komponente2] [...]" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:78 +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." +msgstr "" +"Die URI f??r den <literal>deb</literal>-Typ muss die Basis der Debian-" +"Distribution angeben, wo APT die Informationen findet, die es ben??tigt. " +"<literal>Distribution</literal> kann einen genauen Pfad angeben. In diesem " +"Fall m??ssen die Komponenten weggelassen werden und <literal>Distribution</" +"literal> muss mit einem Schr??gstrich (/) enden. Dies ist n??tzlich, wenn " +"nur ein bestimmter Unterabschnitt des von der URI angegebenen Archivs von " +"Interesse ist. Wenn <literal>Distribution</literal> keinen genauen Pfad " +"angibt, muss mindestens eine <literal>Komponente</literal> angegeben sein." + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:87 +#, fuzzy +#| msgid "" +#| "<literal> distribution</literal> may also contain a variable, <literal>" +#| "$(ARCH)</literal> which expands to the Debian architecture (i386, m68k, " +#| "powerpc, ...) used on the system. This permits architecture-independent " +#| "<filename>sources.list</filename> files to be used. In general this is " +#| "only of interest when specifying an exact path, <literal>APT</literal> " +#| "will automatically generate a URI with the current architecture otherwise." +msgid "" +"<literal>distribution</literal> may also contain a variable, <literal>$(ARCH)" +"</literal> which expands to the Debian architecture (i386, m68k, " +"powerpc, ...) used on the system. This permits architecture-independent " +"<filename>sources.list</filename> files to be used. In general this is only " +"of interest when specifying an exact path, <literal>APT</literal> will " +"automatically generate a URI with the current architecture otherwise." +msgstr "" +"<literal> distribution</literal> k??nnte au??erdem eine Variable, <literal>" +"$(ARCH)</literal>, enthalten, die zur Debian-Architektur (i386, m68k, " +"powerpc, ...) expandiert wird, die auf dem System benutzt wird. Dies erlaubt " +"es, architekturabh??ngige <filename>sources.list</filename>-Dateien zu " +"benutzen. Im Allgemeinen ist dies nur von Interesse, wenn ein genauer Pfad " +"angegeben wird, andernfalls wird <literal>APT</literal> automatisch eine URI " +"mit der aktuellen Architektur generieren." + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:95 +msgid "" +"Since only one distribution can be specified per line it may be necessary to " +"have multiple lines for the same URI, if a subset of all available " +"distributions or components at that location is desired. APT will sort the " +"URI list after it has generated a complete set internally, and will collapse " +"multiple references to the same Internet host, for instance, into a single " +"connection, so that it does not inefficiently establish an FTP connection, " +"close it, do something else, and then re-establish a connection to that same " +"host. This feature is useful for accessing busy FTP sites with limits on the " +"number of simultaneous anonymous users. APT also parallelizes connections to " +"different hosts to more effectively deal with sites with low bandwidth." +msgstr "" +"Da pro Zeile nur eine Distribution angegeben werden kann, k??nnte es n??tig " +"sein, mehrere Zeilen f??r die gleiche URI zu haben, falls eine Untermenge " +"aller verf??gbarer Distributionen oder Komponenten von diesem Ort gew??nscht " +"wird. APT wird die URI-Liste sortieren, nachdem es intern eine komplette " +"Zusammenstellung generiert hat und es wird mehrere Bez??ge zum gleichen " +"Internet-Host zusammenfassen, zum Beispiel zu einer einzigen Verbindung, so " +"dass es nicht ineffizient FTP-Verbindungen herstellt, sie schlie??t, sonst " +"etwas tut und dann erneut eine Verbindung zum gleichen Host herstellt. Diese " +"Funktion ist n??tzlich f??r den Zugriff auf ausgelastete FTP-Sites mit " +"Begrenzungen der Anzahl gleichzeitiger anonymer Anwender. APT parallelisiert " +"au??erdem Verbindungen zu verschiedenen Hosts, um effektiver mit Orten " +"niedriger Bandbreite hauszuhalten." + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:107 +msgid "" +"It is important to list sources in order of preference, with the most " +"preferred source listed first. Typically this will result in sorting by " +"speed from fastest to slowest (CD-ROM followed by hosts on a local network, " +"followed by distant Internet hosts, for example)." +msgstr "" +"Es ist wichtig, die Quellen in der Reihenfolge ihrer Wichtigkeit " +"aufzulisten, die bevorzugte Quelle zuerst. Typischerweise resultiert dies in " +"einer Sortierung nach Geschwindigkeit, vom schnellsten zum langsamsten (CD-" +"ROM, gefolgt von Rechnern im lokalen Netzwerk, gefolgt von Internet-" +"Rechnern, zum Beispiel)." + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:112 +msgid "Some examples:" +msgstr "Einige Beispiele:" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:114 +#, 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" +" " +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" +" " + +#. type: Content of: <refentry><refsect1><title> +#: sources.list.5.xml:120 +msgid "URI specification" +msgstr "URI-Beschreibung" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: sources.list.5.xml:125 +msgid "file" +msgstr "file" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:127 +msgid "" +"The file scheme allows an arbitrary directory in the file system to be " +"considered an archive. This is useful for NFS mounts and local mirrors or " +"archives." +msgstr "" +"Das file-Schema erlaubt es einem beliebigen Verzeichnis im Dateisystem, als " +"Archiv betrachtet zu werden. Dies ist n??tzlich f??r eingeh??ngtes NFS und " +"lokale Spiegel oder Archive." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:134 +msgid "" +"The cdrom scheme allows APT to use a local CDROM drive with media swapping. " +"Use the &apt-cdrom; program to create cdrom entries in the source list." +msgstr "" +"Das cdrom-Schema erlaubt APT ein lokales CD-ROM-Laufwerk mit Medienwechsel " +"zu benutzen. Benutzen Sie das Programm &apt-cdrom;, um CD-ROM-Eintr??ge in " +"der Quellenliste zu erstellen." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:141 +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." +msgstr "" +"Das http-Schema gibt einen HTTP-Server f??r das Archiv an. Wenn eine " +"Umgebungsvariable <envar>http_proxy</envar> mit dem Format http://Server:" +"Port/ gesetzt ist, wird der in <envar>http_proxy</envar> angegebene Proxy-" +"Server benutzt. Anwender eines HTTP/1.1-authentifizierten Proxys k??nnen " +"eine Zeichenkette mit dem Format http://Anwender:Passwort@Server:Port/ " +"benutzt. Beachten Sie, dass dies eine unsichere Authentifizierungsmethode " +"ist." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:152 +msgid "" +"The ftp scheme specifies an FTP server for the archive. APT's FTP behavior " +"is highly configurable; for more information see the &apt-conf; manual page. " +"Please note that a ftp proxy can be specified by using the <envar>ftp_proxy</" +"envar> environment variable. It is possible to specify a http proxy (http " +"proxy servers often understand ftp urls) using this method and ONLY this " +"method. ftp proxies using http specified in the configuration file will be " +"ignored." +msgstr "" +"Das ftp-Schema gibt einen FTP-Server f??r das Archiv an. Das FTP-Verhalten " +"von APT ist in hohem Ma??e konfigurierbar. Um weitere Informationen zu " +"erhalten, lesen Sie die &apt-conf;-Handbuchseite. Bitte beachten Sie, dass " +"ein FTP-Proxy durch Benutzung der <envar>ftp_proxy</envar>-" +"Umgebungsvariablen angegeben werden kann. Es ist mit dieser Methode und NUR " +"dieser Methode m??glich, einen HTTP-Proxy anzugeben (HTTP-Proxy-Server " +"verstehen oft auch FTP-URLs). FTP-Proxys, die gem???? Angabe in der " +"Konfigurationsdatei HTTP benutzen, werden ignoriert." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: sources.list.5.xml:161 +msgid "copy" +msgstr "copy" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:163 +msgid "" +"The copy scheme is identical to the file scheme except that packages are " +"copied into the cache directory instead of used directly at their location. " +"This is useful for people using a zip disk to copy files around with APT." +msgstr "" +"Das copy-Schema ist identisch mit dem file-Schema, au??er dass Pakete in das " +"Zwischenspeicherverzeichnis kopiert werden, anstatt direkt von ihrem " +"Herkunftsort benutzt zu werden. Dies ist f??r Leute n??tzlich, die eine ZIP-" +"Platte benutzen, um Dateien mit APT umherzukopieren." + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: sources.list.5.xml:168 +msgid "rsh" +msgstr "rsh" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> +#: sources.list.5.xml:168 +msgid "ssh" +msgstr "ssh" + +#. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> +#: sources.list.5.xml:170 +msgid "" +"The rsh/ssh method invokes rsh/ssh to connect to a remote host as a given " +"user and access the files. It is a good idea to do prior arrangements with " +"RSA keys or rhosts. Access to files on the remote uses standard " +"<command>find</command> and <command>dd</command> commands to perform the " +"file transfers from the remote." +msgstr "" +"Die rsh/ssh-Methode ruft rsh/ssh auf, um sich als angegebener Benutzer mit " +"einem Rechner in der Ferne zu verbinden und auf die Dateien zuzugreifen. Es " +"ist eine gute Idee, vorher Vorbereitungen mit RSA-Schl??sseln oder rhosts zu " +"treffen. Der Zugriff auf Dateien in der Ferne benutzt die Standardbefehle " +"<command>find</command> und <command>dd</command>, um die Daten??bertragung " +"aus der Ferne durchzuf??hren." + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:122 +msgid "" +"The currently recognized URI types are cdrom, file, http, ftp, copy, ssh, " +"rsh. <placeholder type=\"variablelist\" id=\"0\"/>" +msgstr "" +"Die aktuell erkannten URI-Typen sind cdrom, file, http, ftp, copy, ssh, rsh. " +"<placeholder type=\"variablelist\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:182 +msgid "" +"Uses the archive stored locally (or NFS mounted) at /home/jason/debian for " +"stable/main, stable/contrib, and stable/non-free." +msgstr "" +"Benutzt die lokal gespeicherten (oder per NFS eingeh??ngten) Archive in /" +"home/jason/debian f??r stable/main, stable/contrib und stable/non-free." + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:184 +#, no-wrap +msgid "deb file:/home/jason/debian stable main contrib non-free" +msgstr "deb file:/home/jason/debian stable main contrib non-free" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:186 +msgid "As above, except this uses the unstable (development) distribution." +msgstr "" +"Wie oben, au??er das dies die unstable- (Entwicklungs-) Distribution benutzt." + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:187 +#, no-wrap +msgid "deb file:/home/jason/debian unstable main contrib non-free" +msgstr "deb file:/home/jason/debian unstable main contrib non-free" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:189 +msgid "Source line for the above" +msgstr "Quellzeile f??r obiges" + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:190 +#, no-wrap +msgid "deb-src file:/home/jason/debian unstable main contrib non-free" +msgstr "deb-src file:/home/jason/debian unstable main contrib non-free" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:192 +msgid "" +"Uses HTTP to access the archive at archive.debian.org, and uses only the " +"hamm/main area." +msgstr "" +"Benutzt HTTP, um auf das Archiv auf archive.debian.org zuzugreifen und nur " +"den hamm/main-Bereich zu benutzen." + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:194 +#, no-wrap +msgid "deb http://archive.debian.org/debian-archive hamm main" +msgstr "deb http://archive.debian.org/debian-archive hamm main" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:196 +msgid "" +"Uses FTP to access the archive at ftp.debian.org, under the debian " +"directory, and uses only the stable/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." + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:198 +#, no-wrap +msgid "deb ftp://ftp.debian.org/debian stable contrib" +msgstr "deb ftp://ftp.debian.org/debian stable contrib" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:200 +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." +msgstr "" +"Benutzt FTP, um auf das Archiv auf ftp.debian.org unter dem debian-" +"Verzeichnis zuzugreifen und nur den unstable/contrib-Bereich zu benutzen. " +"Falls diese Zeile zusammen mit der aus dem vorherigen Beispiel in der Datei " +"<filename>sources.list</filename> auftaucht, wird eine einzelne FTP-Sitzung " +"f??r beide Quellzeilen benutzt." + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:204 +#, no-wrap +msgid "deb ftp://ftp.debian.org/debian unstable contrib" +msgstr "deb ftp://ftp.debian.org/debian unstable contrib" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:206 +msgid "" +"Uses HTTP to access the archive at nonus.debian.org, under the debian-non-US " +"directory." +msgstr "" +"Benutzt HTTP, um auf das Archiv auf nonus.debian.org unter dem debian-non-US-" +"Verzeichnis zuzugreifen." + +#. type: Content of: <refentry><refsect1><literallayout> +#: sources.list.5.xml:208 +#, no-wrap +msgid "deb http://nonus.debian.org/debian-non-US stable/non-US main contrib non-free" +msgstr "deb http://nonus.debian.org/debian-non-US stable/non-US main contrib non-free" + +#. type: Content of: <refentry><refsect1><para><literallayout> +#: sources.list.5.xml:217 +#, no-wrap +msgid "deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/" +msgstr "deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:210 +msgid "" +"Uses HTTP to access the archive at nonus.debian.org, under the debian-non-US " +"directory, and uses only files found under <filename>unstable/binary-i386</" +"filename> on i386 machines, <filename>unstable/binary-m68k</filename> on " +"m68k, and so forth for other supported architectures. [Note this example " +"only illustrates how to use the substitution variable; non-us is no longer " +"structured like this] <placeholder type=\"literallayout\" id=\"0\"/>" +msgstr "" +"Benutzt HTTP, um auf das Archiv auf nonus.debian.org unter dem debian-non-US-" +"Verzeichnis zuzugreifen und benutzt nur Dateien, die unter " +"<filename>unstable/binary-i386</filename> auf i386-Maschinen, " +"<filename>unstable/binary-m68k</filename> auf m68k und so weiter f??r andere " +"unterst??tzte Architekturen, gefunden werden. [Beachten Sie, dass dieses " +"Beispiel nur anschaulich macht, wie die Platzhaltervariable benutzt wird. " +"non-us ist nicht l??nger so strukturiert] <placeholder type=\"literallayout" +"\" id=\"0\"/>" + +#. type: Content of: <refentry><refsect1><para> +#: sources.list.5.xml:222 +msgid "&apt-cache; &apt-conf;" +msgstr "&apt-cache; &apt-conf;" -- cgit v1.2.3 From e8ebf80db8a02cb4334b12de16c2de98a6c15573 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Sat, 31 Oct 2009 20:40:17 +0100 Subject: German translation update --- doc/po/de.po | 45 +++++++-------------------------------------- 1 file changed, 7 insertions(+), 38 deletions(-) diff --git a/doc/po/de.po b/doc/po/de.po index edcfb25ea..10e32b88c 100644 --- a/doc/po/de.po +++ b/doc/po/de.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: apt-doc 0.7.24\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" "POT-Creation-Date: 2009-09-26 11:35+0300\n" -"PO-Revision-Date: 2009-10-25 15:11+GMT\n" +"PO-Revision-Date: 2009-10-28 23:51+GMT\n" "Last-Translator: Chris Leick <c.leick@vollbio.de>\n" "Language-Team: German <debian-l10n-german@lists.debian.org>\n" "MIME-Version: 1.0\n" @@ -2442,26 +2442,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 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> " @@ -2484,9 +2464,10 @@ 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>Konfigurationszeichenkette</replaceable></" -"option></arg> <arg><option>-c=<replaceable>Datei</replaceable></option></" -"arg> <group choice=\"req\"> <arg>packages<arg choice=\"plain\" rep=\"repeat" +"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</" @@ -5445,16 +5426,12 @@ msgstr "Autoren der Handbuchseite" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:202 -#, fuzzy -#| msgid "" -#| "This man-page is based on the work of Javier Fern??ndez-Sanguino Pe??a, " -#| "Isaac Jones, Colin Walters, Florian Weimer and Michael Vogt." msgid "" "This man-page is based on the work of Javier Fernández-Sanguino Peña, Isaac " "Jones, Colin Walters, Florian Weimer and Michael Vogt." msgstr "" -"Diese Handbuchseite basiert auf der Arbeit von Javier Fern??ndez-Sanguino " -"Pe??a, Isaac Jones, Colin Walters, Florian Weimer und Michael Vogt." +"Diese Handbuchseite basiert auf der Arbeit von Javier Fernández-Sanguino " +"Peña, Isaac Jones, Colin Walters, Florian Weimer und Michael Vogt." #. type: Content of: <refentry><refnamediv><refname> #: apt-sortpkgs.1.xml:22 apt-sortpkgs.1.xml:29 @@ -8879,14 +8856,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:87 -#, fuzzy -#| msgid "" -#| "<literal> distribution</literal> may also contain a variable, <literal>" -#| "$(ARCH)</literal> which expands to the Debian architecture (i386, m68k, " -#| "powerpc, ...) used on the system. This permits architecture-independent " -#| "<filename>sources.list</filename> files to be used. In general this is " -#| "only of interest when specifying an exact path, <literal>APT</literal> " -#| "will automatically generate a URI with the current architecture otherwise." msgid "" "<literal>distribution</literal> may also contain a variable, <literal>$(ARCH)" "</literal> which expands to the Debian architecture (i386, m68k, " -- cgit v1.2.3 From 338bf6c2f9e98f7eeaf7060c7afc392f9816d928 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Wed, 11 Nov 2009 19:44:38 +0100 Subject: Italian translation update --- debian/changelog | 2 ++ po/it.po | 64 +++++++++++++++++++++++++++++++++----------------------- 2 files changed, 40 insertions(+), 26 deletions(-) diff --git a/debian/changelog b/debian/changelog index 2d9109ca4..28f24f396 100644 --- a/debian/changelog +++ b/debian/changelog @@ -15,6 +15,8 @@ apt (0.7.25) UNRELEASED; urgency=low Closes: #551534 * German translation of manpages by Chris Leick Closes: #552606 + * Italian translation update by Milo Casagrande + Closes: #555797 [ Michael Vogt ] * apt-pkg/packagemanager.cc: diff --git a/po/it.po b/po/it.po index 0673df460..4979e02b9 100644 --- a/po/it.po +++ b/po/it.po @@ -2,14 +2,14 @@ # Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 The Free Software Foundation, Inc. # This file is distributed under the same license as the apt package. # Samuele Giovanni Tonon <samu@debian.org>, 2002. -# Milo Casagrande <milo@ubuntu.com>, 2009 # +# Milo Casagrande <milo@ubuntu.com>, 2009. msgid "" msgstr "" -"Project-Id-Version: apt 0.7.20\n" +"Project-Id-Version: apt 0.7.23.1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-09-27 17:32+0200\n" -"PO-Revision-Date: 2009-06-04 13:23+0200\n" +"PO-Revision-Date: 2009-11-11 19:29+0100\n" "Last-Translator: Milo Casagrande <milo@ubuntu.com>\n" "Language-Team: Italian <tp@lists.linux.it>\n" "MIME-Version: 1.0\n" @@ -237,6 +237,7 @@ msgstr "" #: cmdline/apt-cdrom.cc:77 #, fuzzy +#| msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" msgstr "Dare un nome a questo disco, tipo \"Debian 5.0 Disco 1\"" @@ -1031,11 +1032,11 @@ msgstr "" "richiesti:" #: cmdline/apt-get.cc:1505 -#, fuzzy, c-format +#, c-format msgid "%lu packages were automatically installed and are no longer required.\n" msgstr "" -"I seguenti pacchetti sono stati installati automaticamente e non sono più " -"richiesti:" +"%lu pacchetti sono stati installati automaticamente e non sono più " +"richiesti.\n" #: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." @@ -1271,7 +1272,6 @@ msgid "Supported modules:" msgstr "Moduli supportati:" #: cmdline/apt-get.cc:2697 -#, fuzzy msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1364,6 +1364,10 @@ msgid "" " Keep also in mind that locking is deactivated,\n" " so don't depend on the relevance to the real current situation!" msgstr "" +"Nota: questa è solo una simulazione.\n" +" apt-get necessita dei privilegi di root per la normale esecuzione.\n" +" Inoltre, il meccanismo di blocco non è attivato e non è quindi\n" +" utile dare importanza a tutto ciò per una situazione reale." #: cmdline/acqprogress.cc:55 msgid "Hit " @@ -1449,6 +1453,7 @@ msgstr "Eliminare tutti i file .deb precedentemente scaricati?" # at only 80 characters per line, if possible. #: dselect/install:101 #, fuzzy +#| msgid "Some errors occurred while unpacking. I'm going to configure the" msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" "Si sono verificati alcuni errori nell'estrazione. Verrà tentato di " @@ -1456,6 +1461,7 @@ msgstr "" #: dselect/install:102 #, fuzzy +#| msgid "packages that were installed. This may result in duplicate errors" msgid "will be configured. This may result in duplicate errors" msgstr "" "i pacchetti che sono stati installati. Questo potrebbe generare molteplici " @@ -1507,6 +1513,7 @@ msgstr "Errore nel leggere l'intestazione member dell'archivio" #: apt-inst/contrib/arfile.cc:90 #, fuzzy, c-format +#| msgid "Invalid archive member header" msgid "Invalid archive member header %s" msgstr "Intestazione member dell'archivio non valida" @@ -1999,6 +2006,7 @@ msgstr "" #: methods/connect.cc:240 #, fuzzy, c-format +#| msgid "Unable to connect to %s %s:" msgid "Unable to connect to %s:%s:" msgstr "Impossibile connettersi a %s %s:" @@ -2335,9 +2343,9 @@ msgid "Sub-process %s received a segmentation fault." msgstr "Il sottoprocesso %s ha ricevuto un segmentation fault." #: apt-pkg/contrib/fileutl.cc:458 -#, fuzzy, c-format +#, c-format msgid "Sub-process %s received signal %u." -msgstr "Il sottoprocesso %s ha ricevuto un segmentation fault." +msgstr "Il sottoprocesso %s ha ricevuto il segnale %u." #: apt-pkg/contrib/fileutl.cc:462 #, c-format @@ -2432,7 +2440,7 @@ msgstr "Rompe" #: apt-pkg/pkgcache.cc:227 msgid "Enhances" -msgstr "" +msgstr "Migliora" #: apt-pkg/pkgcache.cc:238 msgid "important" @@ -2653,9 +2661,11 @@ msgstr "" "È consigliato eseguire \"apt-get update\" per correggere questi problemi" #: apt-pkg/policy.cc:347 -#, fuzzy, c-format +#, c-format msgid "Invalid record in the preferences file %s, no Package header" -msgstr "Campo non valido nel file delle preferenze: manca l'header \"Package\"" +msgstr "" +"Campo non valido nel file delle preferenze %s, manca l'intestazione \"Package" +"\"" #: apt-pkg/policy.cc:369 #, c-format @@ -2813,19 +2823,19 @@ msgid "Size mismatch" msgstr "Le dimensioni non corrispondono" #: apt-pkg/indexrecords.cc:40 -#, fuzzy, c-format +#, c-format msgid "Unable to parse Release file %s" -msgstr "Impossibile analizzare il file di pacchetto %s (1)" +msgstr "Impossibile analizzare il file Release %s" #: apt-pkg/indexrecords.cc:47 -#, fuzzy, c-format +#, c-format msgid "No sections in Release file %s" -msgstr "Nota, viene selezionato %s al posto di %s\n" +msgstr "Nessuna sezione nel file Release %s" #: apt-pkg/indexrecords.cc:81 #, c-format msgid "No Hash entry in Release file %s" -msgstr "" +msgstr "Nessuna voce Hash nel file Release %s" #: apt-pkg/vendorlist.cc:66 #, c-format @@ -2890,6 +2900,8 @@ msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" +"Impossibile trovare alcun file di pacchetto. Questo potrebbe non essere un " +"disco Debian o potrebbe essere l'architettura errata." #: apt-pkg/cdrom.cc:710 #, c-format @@ -3015,7 +3027,7 @@ msgstr "" #: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" -msgstr "" +msgstr "Esecuzione di dpkg" #: apt-pkg/deb/debsystem.cc:70 #, c-format @@ -3023,17 +3035,23 @@ msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" msgstr "" +"Impossibile acquisire il blocco sulla directory di amministrazione (%s). Un " +"altro processo potrebbe tenerla occupata." #: apt-pkg/deb/debsystem.cc:73 -#, fuzzy, c-format +#, c-format msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "Impossibile bloccare la directory" +msgstr "" +"Impossibile acquisire il blocco sulla directory di amministrazione (%s). È " +"necessario essere root." #: apt-pkg/deb/debsystem.cc:82 msgid "" "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct " "the problem. " msgstr "" +"dpkg è stato interrotto. È necessario eseguire \"dpkg --configure -a\" per " +"correggere il problema. " #: apt-pkg/deb/debsystem.cc:100 msgid "Not locked" @@ -3046,9 +3064,3 @@ msgstr "Impossibile applicare la patch al file" #: methods/rsh.cc:330 msgid "Connection closed prematurely" msgstr "Connessione chiusa prematuramente" - -#~ msgid "%4i %s\n" -#~ msgstr "%4i %s\n" - -#~ msgid "Processing triggers for %s" -#~ msgstr "Elaborazione opzioni addizionali per %s" -- cgit v1.2.3 From 51792c49db9d0f1f8c57a93ff1e17a7aca5b378f Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Thu, 12 Nov 2009 08:32:33 +0100 Subject: Italian translation update --- po/it.po | 32 +++++++++++--------------------- 1 file changed, 11 insertions(+), 21 deletions(-) diff --git a/po/it.po b/po/it.po index 4979e02b9..46fbf62af 100644 --- a/po/it.po +++ b/po/it.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: apt 0.7.23.1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-09-27 17:32+0200\n" -"PO-Revision-Date: 2009-11-11 19:29+0100\n" +"PO-Revision-Date: 2009-11-11 21:10+0100\n" "Last-Translator: Milo Casagrande <milo@ubuntu.com>\n" "Language-Team: Italian <tp@lists.linux.it>\n" "MIME-Version: 1.0\n" @@ -236,10 +236,8 @@ msgstr "" "apt.conf(5).\n" #: cmdline/apt-cdrom.cc:77 -#, fuzzy -#| msgid "Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'" msgid "Please provide a name for this Disc, such as 'Debian 5.0.3 Disk 1'" -msgstr "Dare un nome a questo disco, tipo \"Debian 5.0 Disco 1\"" +msgstr "Dare un nome a questo disco, tipo \"Debian 5.0.3 Disco 1\"" #: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" @@ -1452,31 +1450,25 @@ msgstr "Eliminare tutti i file .deb precedentemente scaricati?" # 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. I'm going to configure the" msgid "Some errors occurred while unpacking. Packages that were installed" msgstr "" -"Si sono verificati alcuni errori nell'estrazione. Verrà tentato di " -"configurare " +"Si sono verificati alcuni errori nell'estrazione. Verrà tentata la " +"configurazione " #: dselect/install:102 -#, fuzzy -#| msgid "packages that were installed. This may result in duplicate errors" msgid "will be configured. This may result in duplicate errors" -msgstr "" -"i pacchetti che sono stati installati. Questo potrebbe generare molteplici " +msgstr "dei pacchetti installati. Questo potrebbe generare errori duplicati " #: dselect/install:103 msgid "or errors caused by missing dependencies. This is OK, only the errors" -msgstr "" -"errori o errori causati da dipendenze mancanti. Questo non causa problemi, " +msgstr "o errori causati da dipendenze mancanti. Questo non causa problemi, " #: dselect/install:104 msgid "" "above this message are important. Please fix them and run [I]nstall again" msgstr "" "gli errori precedenti sono importanti. Correggerli e rieseguire " -"l'installazione" +"l'installazione [I]" #: dselect/update:30 msgid "Merging available information" @@ -1512,10 +1504,9 @@ msgid "Error reading archive member header" msgstr "Errore nel leggere l'intestazione member dell'archivio" #: apt-inst/contrib/arfile.cc:90 -#, fuzzy, c-format -#| msgid "Invalid archive member header" +#, c-format msgid "Invalid archive member header %s" -msgstr "Intestazione member dell'archivio non valida" +msgstr "Intestazione member dell'archivio %s non valida" #: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" @@ -2005,10 +1996,9 @@ msgstr "" "Si è verificato qualcosa di anormale nella risoluzione di \"%s:%s\" (%i)" #: methods/connect.cc:240 -#, fuzzy, c-format -#| msgid "Unable to connect to %s %s:" +#, c-format msgid "Unable to connect to %s:%s:" -msgstr "Impossibile connettersi a %s %s:" +msgstr "Impossibile connettersi a %s:%s:" #: methods/gpgv.cc:71 #, c-format -- cgit v1.2.3 From 1692a2c79f4c423ff257a882a1e8e16c3edad882 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode <jak@debian.org> Date: Tue, 24 Nov 2009 15:22:51 +0100 Subject: * ftparchive/apt-ftparchive.cc: - Call setlocale() so translations are actually used. --- debian/changelog | 2 ++ ftparchive/apt-ftparchive.cc | 1 + 2 files changed, 3 insertions(+) diff --git a/debian/changelog b/debian/changelog index 28f24f396..3f70b440d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -33,6 +33,8 @@ apt (0.7.25) UNRELEASED; urgency=low * methods/https.cc: - Add support for authentication using netrc (Closes: #518473), patch by Jussi Hakala <jussi.hakala@hut.fi>. + * ftparchive/apt-ftparchive.cc: + - Call setlocale() so translations are actually used. -- Michael Vogt <michael.vogt@ubuntu.com> Tue, 29 Sep 2009 15:51:34 +0200 diff --git a/ftparchive/apt-ftparchive.cc b/ftparchive/apt-ftparchive.cc index 3b1e80631..d0dea7768 100644 --- a/ftparchive/apt-ftparchive.cc +++ b/ftparchive/apt-ftparchive.cc @@ -898,6 +898,7 @@ bool Clean(CommandLine &CmdL) int main(int argc, const char *argv[]) { + setlocale(LC_ALL, ""); CommandLine::Args Args[] = { {'h',"help","help",0}, {0,"md5","APT::FTPArchive::MD5",0}, -- cgit v1.2.3 From 1baca7b87e96ce282fbcb44a90d8aa89835eeb80 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode <jak@debian.org> Date: Tue, 1 Dec 2009 16:36:48 +0100 Subject: * debian/apt.conf.autoremove: - Add kfreebsd-image-* to the list (Closes: #558803) --- debian/apt.conf.autoremove | 1 + debian/changelog | 2 ++ 2 files changed, 3 insertions(+) diff --git a/debian/apt.conf.autoremove b/debian/apt.conf.autoremove index 98143ce9a..b41be8397 100644 --- a/debian/apt.conf.autoremove +++ b/debian/apt.conf.autoremove @@ -4,5 +4,6 @@ APT { "^linux-image.*"; "^linux-restricted-modules.*"; + "^kfreebsd-image.*"; }; }; diff --git a/debian/changelog b/debian/changelog index 3f70b440d..ce1f94078 100644 --- a/debian/changelog +++ b/debian/changelog @@ -35,6 +35,8 @@ apt (0.7.25) UNRELEASED; urgency=low by Jussi Hakala <jussi.hakala@hut.fi>. * ftparchive/apt-ftparchive.cc: - Call setlocale() so translations are actually used. + * debian/apt.conf.autoremove: + - Add kfreebsd-image-* to the list (Closes: #558803) -- Michael Vogt <michael.vogt@ubuntu.com> Tue, 29 Sep 2009 15:51:34 +0200 -- cgit v1.2.3 From c32163ac3c6fa422136de80640144261be63d2f5 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode <jak@debian.org> Date: Tue, 1 Dec 2009 19:11:26 +0100 Subject: doc/po/de.po: Fix the umlauts. --- doc/po/de.po | 5007 ++++++++++++++++++++++++++++++---------------------------- 1 file changed, 2596 insertions(+), 2411 deletions(-) diff --git a/doc/po/de.po b/doc/po/de.po index 10e32b88c..88f079dd6 100644 --- a/doc/po/de.po +++ b/doc/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-doc 0.7.24\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2009-09-26 11:35+0300\n" +"POT-Creation-Date: 2009-09-25 19:59+0300\n" "PO-Revision-Date: 2009-10-28 23:51+GMT\n" "Last-Translator: Chris Leick <c.leick@vollbio.de>\n" "Language-Team: German <debian-l10n-german@lists.debian.org>\n" @@ -15,6 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" + #. type: TH #: apt.8:17 #, no-wrap @@ -42,13 +43,14 @@ msgstr "NAME" #. type: Plain text #: apt.8:20 msgid "apt - Advanced Package Tool" -msgstr "apt - Fortschrittliches Paketierungswerkzeug (Advanced Package Tool)" +msgstr "" +"apt - Fortschrittliches Paketierungswerkzeug (Advanced Package Tool)" #. type: SH #: apt.8:20 #, no-wrap msgid "SYNOPSIS" -msgstr "??BERSICHT" +msgstr "ÜBERSICHT" #. type: Plain text #: apt.8:22 @@ -65,13 +67,13 @@ msgstr "BESCHREIBUNG" #: apt.8:31 msgid "" "APT is a management system for software packages. For normal day to day " -"package management there are several frontends available, such as B<aptitude>" -"(8) for the command line or B<synaptic>(8) for the X Window System. Some " -"options are only implemented in B<apt-get>(8) though." +"package management there are several frontends available, such as " +"B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " +"System. Some options are only implemented in B<apt-get>(8) though." msgstr "" -"APT ist ein Verwaltungssystem f??r Softwarepakete. F??r normale allt??gliche " -"Paketverwaltung sind mehrere Oberfl??chen, wie B<aptitude>(8) f??r die " -"Befehlszeile oder B<synaptic>(8) f??r das X-Window-System, verf??gbar. " +"APT ist ein Verwaltungssystem für Softwarepakete. Für normale alltägliche " +"Paketverwaltung sind mehrere Oberflächen, wie B<aptitude>(8) für die " +"Befehlszeile oder B<synaptic>(8) für das X-Window-System, verfügbar. " "Einige Optionen sind jedoch nur in B<apt-get>(8) implementiert." #. type: SH @@ -115,7 +117,8 @@ msgstr "DIAGNOSE" #. type: Plain text #: apt.8:44 msgid "apt returns zero on normal operation, decimal 100 on error." -msgstr "apt gibt bei normalen Operationen 0 zur??ck, dezimal 100 bei Fehlern." +msgstr "" +"apt gibt bei normalen Operationen 0 zurück, dezimal 100 bei Fehlern." #. type: SH #: apt.8:44 @@ -136,8 +139,9 @@ msgid "" "B<reportbug>(1) command." msgstr "" "Siehe auch E<lt>http://bugs.debian.org/aptE<gt>. Wenn Sie einen Fehler in " -"B<apt> berichten m??chten, sehen Sie sich bitte I</usr/share/doc/debian/bug-" -"reporting.txt> oder den Befehl B<reportbug>(1) an." +"B<apt> berichten möchten, sehen Sie sich bitte " +"I</usr/share/doc/debian/bug-reporting.txt> oder den Befehl " +"B<reportbug>(1) an." #. type: SH #: apt.8:55 @@ -148,7 +152,8 @@ msgstr "AUTOR" #. type: Plain text #: apt.8:56 msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." -msgstr "apt wurde vom APT-Team E<lt>apt@packages.debian.orgE<gt> geschrieben." +msgstr "" +"apt wurde vom APT-Team E<lt>apt@packages.debian.orgE<gt> geschrieben." #. type: Plain text #: apt.ent:2 @@ -158,17 +163,17 @@ msgstr "<!-- -*- mode: sgml; mode: fold -*- -->" #. type: Plain text #: apt.ent:10 msgid "" -"<!-- Some common paths.. --> <!ENTITY docdir \"/usr/share/doc/apt/\"> <!" -"ENTITY guidesdir \"/usr/share/doc/apt-doc/\"> <!ENTITY configureindex " +"<!-- Some common paths.. --> <!ENTITY docdir \"/usr/share/doc/apt/\"> " +"<!ENTITY guidesdir \"/usr/share/doc/apt-doc/\"> <!ENTITY configureindex " "\"<filename>&docdir;examples/configure-index.gz</filename>\"> <!ENTITY " -"aptconfdir \"<filename>/etc/apt.conf</filename>\"> <!ENTITY statedir \"/var/" -"lib/apt\"> <!ENTITY cachedir \"/var/cache/apt\">" +"aptconfdir \"<filename>/etc/apt.conf</filename>\"> <!ENTITY statedir " +"\"/var/lib/apt\"> <!ENTITY cachedir \"/var/cache/apt\">" msgstr "" -"<!-- Einige h??ufige Pfade ... --> <!ENTITY docdir \"/usr/share/doc/apt/\"> " -"<!ENTITY guidesdir \"/usr/share/doc/apt-doc/\"> <!ENTITY configureindex " +"<!-- Einige häufige Pfade ... --> <!ENTITY docdir \"/usr/share/doc/apt/\">" +" <!ENTITY guidesdir \"/usr/share/doc/apt-doc/\"> <!ENTITY configureindex " "\"<filename>&docdir;examples/configure-index.gz</filename>\"> <!ENTITY " -"aptconfdir \"<filename>/etc/apt.conf</filename>\"> <!ENTITY statedir \"/var/" -"lib/apt\"> <!ENTITY cachedir \"/var/cache/apt\">" +"aptconfdir \"<filename>/etc/apt.conf</filename>\"> <!ENTITY statedir " +"\"/var/lib/apt\"> <!ENTITY cachedir \"/var/cache/apt\">" #. type: Plain text #: apt.ent:17 @@ -568,7 +573,8 @@ msgid "" " <firstname>Jason</firstname> <surname>Gunthorpe</surname>\n" " <contrib></contrib>\n" " </author>\n" -" <copyright><year>1998-2001</year> <holder>Jason Gunthorpe</holder></copyright>\n" +" <copyright><year>1998-2001</year> <holder>Jason " +"Gunthorpe</holder></copyright>\n" " <date>28 October 2008</date>\n" " <productname>Linux</productname>\n" msgstr "" @@ -580,7 +586,8 @@ msgstr "" " <firstname>Jason</firstname> <surname>Gunthorpe</surname>\n" " <contrib></contrib>\n" " </author>\n" -" <copyright><year>1998-2001</year> <holder>Jason Gunthorpe</holder></copyright>\n" +" <copyright><year>1998-2001</year> <holder>Jason " +"Gunthorpe</holder></copyright>\n" " <date>28. Oktober 2008</date>\n" " <productname>Linux</productname>\n" @@ -721,7 +728,8 @@ msgid "" "<!-- Boiler plate Bug reporting section -->\n" "<!ENTITY manbugs \"\n" " <refsect1><title>Bugs\n" -" APT bug page. \n" +" APT bug " +"page. \n" " If you wish to report a bug in APT, please see\n" " /usr/share/doc/debian/bug-reporting.txt or the\n" " &reportbug; command.\n" @@ -732,8 +740,9 @@ msgstr "" "\n" "Fehler\n" -" APT-Fehlerseite. \n" -" Wenn Sie einen Fehler in APT berichten m??chten, lesen Sie bitte\n" +" APT-Fehlerseite" +". \n" +" Wenn Sie einen Fehler in APT berichten möchten, lesen Sie bitte\n" " /usr/share/doc/debian/bug-reporting.txt oder den\n" " &reportbug;-Befehl. Verfassen Sie Fehlerberichte bitte auf Englisch.\n" " \n" @@ -747,7 +756,8 @@ msgid "" "\n" "Author\n" -" APT was written by the APT team apt@packages.debian.org.\n" +" APT was written by the APT team " +"apt@packages.debian.org.\n" " \n" " \n" "\">\n" @@ -755,7 +765,8 @@ msgstr "" "\n" "Autor\n" -" APT wurde vom APT-Team geschrieben apt@packages.debian.org.\n" +" APT wurde vom APT-Team geschrieben " +"apt@packages.debian.org.\n" " \n" " \n" "\">\n" @@ -775,7 +786,7 @@ msgid "" " \n" msgstr "" "\n" +" um Informationen über -h, -v, -c und -o einzufügen -->\n" "\n" " \n" @@ -811,7 +822,8 @@ msgid "" " \n" " \n" " \n" -" Configuration File; Specify a configuration file to use. \n" +" Configuration File; Specify a configuration file to " +"use. \n" " The program will read the default configuration file and then this \n" " configuration file. See &apt-conf; for syntax information. \n" " \n" @@ -821,9 +833,11 @@ msgstr "" " \n" " \n" " \n" -" Konfigurationsdatei; Gibt eine Konfigurationssdatei zum Benutzen an.\n" +" 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. Lesen Sie &apt-conf;, um " +"Syntax-Informationen zu erhalten \n" " \n" " \n" " \n" @@ -835,9 +849,12 @@ msgid "" " \n" " \n" " \n" -" Set a Configuration Option; This will set an arbitrary\n" -" configuration option. The syntax is .\n" -" and can be used multiple\n" +" Set a Configuration Option; This will set an " +"arbitrary\n" +" configuration option. The syntax is .\n" +" and can be used " +"multiple\n" " times to set different options.\n" " \n" " \n" @@ -847,9 +864,12 @@ msgstr "" " \n" " \n" " \n" -" Eine Konfigurationsoption setzen; Dies wird eine beliebige\n" -" Konfigurationsoption setzen. Die Syntax lautet .\n" -" und kann mehrfach benutzt\n" +" Eine Konfigurationsoption setzen; Dies wird eine " +"beliebige\n" +" Konfigurationsoption setzen. Die Syntax lautet .\n" +" und kann mehrfach " +"benutzt\n" " werden, um verschiedene Optionen zu setzen.\n" " \n" " \n" @@ -863,7 +883,8 @@ msgid "" "\n" "All command line options may be set using the configuration file, the\n" +" All command line options may be set using the configuration file, " +"the\n" " descriptions indicate the configuration option to set. For boolean\n" " options you can override the config file by using something like \n" " ,, \n" @@ -872,11 +893,12 @@ msgid "" "\">\n" msgstr "" "\n" +" um Informationen über -h, -v, -c und -o einzufügen -->\n" "Alle Befehlszeilenoptionen k??nnen durch die Konfigurationsdatei gesetzt\n" -" werden, die Beschreibung gibt die zu setzende Option an. F??r\n" -" boolesche Optionen k??nnen Sie die Konfigurationsdatei ??berschreiben,\n" +" Alle Befehlszeilenoptionen können durch die Konfigurationsdatei " +"gesetzt\n" +" werden, die Beschreibung gibt die zu setzende Option an. Für\n" +" boolesche Optionen können Sie die Konfigurationsdatei überschreiben,\n" " indem Sie etwas wie , ,\n" " oder etliche weitere Varianten benutzen.\n" " \n" @@ -889,13 +911,15 @@ msgid "" "/etc/apt/apt.conf\n" " APT configuration file.\n" -" Configuration Item: Dir::Etc::Main.\n" +" Configuration Item: " +"Dir::Etc::Main.\n" " \n" msgstr "" "/etc/apt/apt.conf\n" " APT-Konfigurationsdatei.\n" -" Konfigurationselement: Dir::Etc::Main.\n" +" Konfigurationselement: " +"Dir::Etc::Main.\n" " \n" #. type: Plain text @@ -904,13 +928,15 @@ msgstr "" msgid "" " /etc/apt/apt.conf.d/\n" " APT configuration file fragments.\n" -" Configuration Item: Dir::Etc::Parts.\n" +" Configuration Item: " +"Dir::Etc::Parts.\n" " \n" "\">\n" msgstr "" " /etc/apt/apt.conf.d/\n" " APT-Konfigurationsdatei-Fragmente.\n" -" Konfigurationselement: Dir::Etc::Parts.\n" +" Konfigurationselement: " +"Dir::Etc::Parts.\n" " \n" "\">\n" @@ -921,28 +947,34 @@ msgid "" "&cachedir;/archives/\n" " Storage area for retrieved package files.\n" -" Configuration Item: Dir::Cache::Archives.\n" +" Configuration Item: " +"Dir::Cache::Archives.\n" " \n" msgstr "" "&cachedir;/archives/\n" -" Speicherbereich f??r aufgerufene Paketdateien.\n" -" Konfigurationselement: Dir::Cache::Archives.\n" +" Speicherbereich für aufgerufene Paketdateien.\n" +" Konfigurationselement: " +"Dir::Cache::Archives.\n" " \n" #. type: Plain text #: apt.ent:315 #, no-wrap msgid "" -" &cachedir;/archives/partial/\n" +" " +"&cachedir;/archives/partial/\n" " Storage area for package files in transit.\n" -" Configuration Item: Dir::Cache::Archives (implicit partial). \n" +" Configuration Item: Dir::Cache::Archives (implicit " +"partial). \n" " \n" "\">\n" msgstr "" -" &cachedir;/archives/partial/\n" -" Speicherbereich f??r Paketdateien auf dem Transportweg.\n" -" Konfigurationselement: Dir::Cache::Archives (implizit teilweise). \n" +" " +"&cachedir;/archives/partial/\n" +" Speicherbereich für Paketdateien auf dem Transportweg.\n" +" Konfigurationselement: Dir::Cache::Archives (implizit " +"teilweise). \n" " \n" "\">\n" @@ -957,31 +989,37 @@ msgid "" " i.e. a preference to get certain packages\n" " from a separate source\n" " or from a different version of a distribution.\n" -" Configuration Item: Dir::Etc::Preferences.\n" +" Configuration Item: " +"Dir::Etc::Preferences.\n" " \n" msgstr "" "/etc/apt/preferences\n" " Version-Einstellungsdatei.\n" -" Hier k??nnen Sie "pinning" angeben, d.h. eine Einstellung,\n" +" Hier können Sie "pinning" angeben, d.h. eine Einstellung,\n" " um bestimmte Pakete aus einer separaten Quelle oder von einer\n" " anderen Version einer Distribution zu erhalten.\n" -" Konfigurationselement: Dir::Etc::Preferences.\n" +" Konfigurationselement: " +"Dir::Etc::Preferences.\n" " \n" #. type: Plain text #: apt.ent:331 #, no-wrap msgid "" -" /etc/apt/preferences.d/\n" +" " +"/etc/apt/preferences.d/\n" " File fragments for the version preferences.\n" -" Configuration Item: Dir::Etc::PreferencesParts.\n" +" Configuration Item: " +"Dir::Etc::PreferencesParts.\n" " \n" "\">\n" msgstr "" -" /etc/apt/preferences.d/\n" -" Dateifragmente f??r die Versionseinstellungen.\n" -" Konfigurationselement: Dir::Etc::PreferencesParts.\n" +" " +"/etc/apt/preferences.d/\n" +" Dateifragmente für die Versionseinstellungen.\n" +" Konfigurationselement: " +"Dir::Etc::PreferencesParts.\n" " \n" "\">\n" @@ -992,28 +1030,35 @@ msgid "" "/etc/apt/sources.list\n" " Locations to fetch packages from.\n" -" Configuration Item: Dir::Etc::SourceList.\n" +" Configuration Item: " +"Dir::Etc::SourceList.\n" " \n" msgstr "" "/etc/apt/sources.list\n" " Orte, von denen Pakete geladen werden.\n" -" Konfigurationselement: Dir::Etc::SourceList.\n" +" Konfigurationselement: " +"Dir::Etc::SourceList.\n" " \n" #. type: Plain text #: apt.ent:343 #, no-wrap msgid "" -" /etc/apt/sources.list.d/\n" +" " +"/etc/apt/sources.list.d/\n" " File fragments for locations to fetch packages from.\n" -" Configuration Item: Dir::Etc::SourceParts.\n" +" Configuration Item: " +"Dir::Etc::SourceParts.\n" " \n" "\">\n" msgstr "" -" /etc/apt/sources.list.d/\n" -" Dateifragmente f??r Orte, von denen Pakete geladen werden.\n" -" Konfigurationselement: Dir::Etc::SourceParts.\n" +" " +"/etc/apt/sources.list.d/\n" +" Dateifragmente für Orte, von denen Pakete geladen " +"werden.\n" +" Konfigurationselement: " +"Dir::Etc::SourceParts.\n" " \n" "\">\n" @@ -1023,44 +1068,51 @@ msgstr "" msgid "" "&statedir;/lists/\n" -" Storage area for state information for each package resource specified in\n" +" Storage area for state information for each package " +"resource specified in\n" " &sources-list;\n" -" Configuration Item: Dir::State::Lists.\n" +" Configuration Item: " +"Dir::State::Lists.\n" " \n" msgstr "" "&statedir;/lists/\n" -" Speicherbereich f??r Statusinformationen jeder\n" +" Speicherbereich für Statusinformationen jeder\n" " in &sources-list; angegebenen Paketquelle\n" -" Konfigurationselement: Dir::State::Lists.\n" +" Konfigurationselement: " +"Dir::State::Lists.\n" " \n" #. type: Plain text #: apt.ent:355 #, no-wrap msgid "" -" &statedir;/lists/partial/\n" +" " +"&statedir;/lists/partial/\n" " Storage area for state information in transit.\n" -" Configuration Item: Dir::State::Lists (implicit partial).\n" +" Configuration Item: Dir::State::Lists (implicit " +"partial).\n" " \n" "\">\n" msgstr "" -" &statedir;/lists/partial/\n" -" Speicherbereich f??r Statusinformationen auf dem Transportweg.\n" -" Konfigurationselement: Dir::State::Lists (implizit teilweise).\n" +" " +"&statedir;/lists/partial/\n" +" Speicherbereich für Statusinformationen auf dem " +"Transportweg.\n" +" Konfigurationselement: Dir::State::Lists (implizit " +"teilweise).\n" " \n" "\">\n" #. The last update date #. type: Content of: -#: apt-cache.8.xml:13 apt-config.8.xml:13 apt-extracttemplates.1.xml:13 -#: apt-ftparchive.1.xml:13 apt-sortpkgs.1.xml:13 sources.list.5.xml:13 +#: apt-cache.8.xml:13 apt-config.8.xml:13 apt-extracttemplates.1.xml:13 apt-ftparchive.1.xml:13 apt-sortpkgs.1.xml:13 sources.list.5.xml:13 msgid "" "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 29 " "February 2004" msgstr "" -"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; " -"29. Februar 2004" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; " +"29. Februar 2004" #. type: Content of: #: apt-cache.8.xml:22 apt-cache.8.xml:29 @@ -1068,17 +1120,12 @@ msgid "apt-cache" msgstr "apt-cache" #. type: Content of: -#: apt-cache.8.xml:23 apt-cdrom.8.xml:22 apt-config.8.xml:23 apt-get.8.xml:23 -#: apt-key.8.xml:15 apt-mark.8.xml:23 apt-secure.8.xml:15 +#: apt-cache.8.xml:23 apt-cdrom.8.xml:22 apt-config.8.xml:23 apt-get.8.xml:23 apt-key.8.xml:15 apt-mark.8.xml:23 apt-secure.8.xml:15 msgid "8" msgstr "8" #. type: Content of: -#: apt-cache.8.xml:24 apt-cdrom.8.xml:23 apt-config.8.xml:24 -#: apt-extracttemplates.1.xml:24 apt-ftparchive.1.xml:24 apt-get.8.xml:24 -#: apt-key.8.xml:16 apt-mark.8.xml:24 apt-secure.8.xml:16 -#: apt-sortpkgs.1.xml:24 apt.conf.5.xml:30 apt_preferences.5.xml:23 -#: sources.list.5.xml:24 +#: apt-cache.8.xml:24 apt-cdrom.8.xml:23 apt-config.8.xml:24 apt-extracttemplates.1.xml:24 apt-ftparchive.1.xml:24 apt-get.8.xml:24 apt-key.8.xml:16 apt-mark.8.xml:24 apt-secure.8.xml:16 apt-sortpkgs.1.xml:24 apt.conf.5.xml:30 apt_preferences.5.xml:23 sources.list.5.xml:24 msgid "APT" msgstr "APT" @@ -1091,55 +1138,59 @@ msgstr "" #. type: Content of: #: apt-cache.8.xml:36 msgid "" -"apt-cache " -"add file gencaches showpkg pkg " -"showsrc pkg stats dump dumpavail unmet search regex show pkg depends pkg " -"rdepends pkg pkgnames prefix dotty pkg " -"xvcg pkg policy pkgs madison pkgs " -msgstr "" -"apt-cache " +"apt-cache " +" " +" add file " +"gencaches showpkg pkg showsrc pkg " +"stats dump dumpavail unmet " +"search regex show pkg " +"depends pkg rdepends pkg " +"pkgnames prefix dotty " +"pkg xvcg pkg " +"policy pkgs madison pkgs " +"" +msgstr "" +"apt-cache " +" " " add Datei gencaches " -"showpkg pkg showsrc pkg stats dump dumpavail unmet search regex show pkg depends " -"pkg rdepends Paket pkgnames Pr??fix dotty Paket " -"xvcg Paket policy Pakete madison Pakete " +"choice=\"req\"> add Datei " +"gencaches showpkg pkg showsrc pkg " +"stats dump dumpavail unmet " +"search regex show pkg " +"depends pkg rdepends Paket " +"pkgnames Präfix dotty " +"Paket xvcg Paket " +"policy Pakete " +"madison " +"Pakete " #. type: Content of: -#: apt-cache.8.xml:62 apt-cdrom.8.xml:47 apt-config.8.xml:47 -#: apt-extracttemplates.1.xml:43 apt-ftparchive.1.xml:55 apt-get.8.xml:125 -#: apt-key.8.xml:34 apt-mark.8.xml:52 apt-secure.8.xml:40 -#: apt-sortpkgs.1.xml:44 apt.conf.5.xml:39 apt_preferences.5.xml:33 -#: sources.list.5.xml:33 +#: apt-cache.8.xml:62 apt-cdrom.8.xml:47 apt-config.8.xml:47 apt-extracttemplates.1.xml:43 apt-ftparchive.1.xml:55 apt-get.8.xml:125 apt-key.8.xml:34 apt-mark.8.xml:52 apt-secure.8.xml:40 apt-sortpkgs.1.xml:44 apt.conf.5.xml:39 apt_preferences.5.xml:33 sources.list.5.xml:33 msgid "Description" msgstr "Beschreibung" @@ -1151,10 +1202,11 @@ msgid "" "the system but does provide operations to search and generate interesting " "output from the package metadata." msgstr "" -"<command>apt-cache</command> f??hrt eine Vielzahl von Operationen auf dem " +"<command>apt-cache</command> führt eine Vielzahl von Operationen auf dem " "Paketzwischenspeicher von APT durch. <command>apt-cache</command> " -"manipuliert nicht den Status des Systems, stellt aber Operationen zum Suchen " -"und Generieren von interessanten Ausgaben der Paket-Metadaten bereit." +"manipuliert nicht den Status des Systems, stellt aber Operationen zum " +"Suchen und Generieren von interessanten Ausgaben der Paket-Metadaten " +"bereit." #. type: Content of: <refentry><refsect1><para> #: apt-cache.8.xml:68 apt-get.8.xml:131 @@ -1162,8 +1214,9 @@ msgid "" "Unless the <option>-h</option>, or <option>--help</option> option is given, " "one of the commands below must be present." msgstr "" -"Sofern nicht die <option>-h</option>-, oder <option>--help</option>-Option " -"angegeben ist, muss einer der unten aufgef??hrten Befehle vorkommen." +"Sofern nicht die <option>-h</option>-, oder " +"<option>--help</option>-Option angegeben ist, muss einer der unten " +"aufgeführten Befehle vorkommen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:72 @@ -1176,7 +1229,7 @@ msgid "" "<literal>add</literal> adds the named package index files to the package " "cache. This is for debugging only." msgstr "" -"<literal>add</literal> f??gt die genannten Paket-Index-Dateien zum " +"<literal>add</literal> fügt die genannten Paket-Index-Dateien zum " "Paketzwischenspeicher hinzu. Dies dient nur der Fehlersuche." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -1191,10 +1244,10 @@ msgid "" "check</command>. It builds the source and package caches from the sources in " "&sources-list; and from <filename>/var/lib/dpkg/status</filename>." msgstr "" -"<literal>gencaches</literal> f??hrt die gleichen Operationen wie " +"<literal>gencaches</literal> führt die gleichen Operationen wie " "<command>apt-get check</command> durch. Es bildet die Quellen- und " -"Paketzwischenspeicher aus den Quellen in &sources-list; und von <filename>/" -"var/lib/dpkg/status</filename>." +"Paketzwischenspeicher aus den Quellen in &sources-list; und von " +"<filename>/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:84 @@ -1209,21 +1262,22 @@ msgid "" "versions and reverse dependencies of each package listed are listed, as well " "as forward dependencies for each version. Forward (normal) dependencies are " "those packages upon which the package in question depends; reverse " -"dependencies are those packages that depend upon the package in question. " -"Thus, forward dependencies must be satisfied for a package, but reverse " -"dependencies need not be. For instance, <command>apt-cache showpkg " +"dependencies are those packages that depend upon the package in " +"question. Thus, forward dependencies must be satisfied for a package, but " +"reverse dependencies need not be. For instance, <command>apt-cache showpkg " "libreadline2</command> would produce output similar to the following:" msgstr "" -"<literal>showpkg</literal> zeigt Informationen ??ber die auf der " -"Befehlszeile aufgelisteten Pakete. Die ??brigen Argumente sind Paketnamen. " -"Die verf??gbaren Versionen und R??ckw??rtsabh??ngigkeiten jedes aufgef??" -"hrten Paketes werden ebenso aufgelistet, wie die Vorw??rtsabh??ngigkeiten " -"jeder Version. Vorw??rtsabh??ngigkeiten (normale Abh??ngigkeiten) sind jene " -"Pakete, von denen das betreffende Paket abh??ngt. R??ckw??rtsabh??ngigkeiten " -"sind jene Pakete, die von dem betreffenden Paket abh??ngen. Deshalb m??ssen " -"Vorw??rtsabh??ngigkeiten f??r das Paket erf??llt werden, R??ckw??rtsabh??" -"ngigkeiten allerdings nicht. <command>apt-cache showpkg libreadline2</" -"command> w??rde zum Beispiel eine Ausgabe ??hnlich der folgenden erzeugen:" +"<literal>showpkg</literal> zeigt Informationen über die auf der " +"Befehlszeile aufgelisteten Pakete. Die übrigen Argumente sind Paketnamen. " +"Die verfügbaren Versionen und Rückwärtsabhängigkeiten jedes aufgeführten " +"Paketes werden ebenso aufgelistet, wie die Vorwärtsabhängigkeiten jeder " +"Version. Vorwärtsabhängigkeiten (normale Abhängigkeiten) sind jene " +"Pakete, von denen das betreffende Paket abhängt. Rückwärtsabhängigkeiten " +"sind jene Pakete, die von dem betreffenden Paket abhängen. Deshalb müssen " +"Vorwärtsabhängigkeiten für das Paket erfüllt werden, " +"Rückwärtsabhängigkeiten allerdings nicht. <command>apt-cache showpkg " +"libreadline2</command> würde zum Beispiel eine Ausgabe ähnlich der " +"folgenden erzeugen:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> #: apt-cache.8.xml:97 @@ -1263,11 +1317,12 @@ msgid "" "best to consult the apt source code." msgstr "" "Dadurch sieht man, dass libreadline2, Version 2.1-12, von libc5 und " -"ncurses3.0 abh??ngt, die installiert sein m??ssen, damit libreadline2 " -"funktioniert. Im Gegenzug h??ngen libreadlineg2 und libreadline2-altdev von " -"libreadline2 ab. Wenn libreadline2 installiert ist, m??ssen au??erdem libc5 " -"und ncurses3.0 (und ldso) installiert sein. F??r die spezielle Bedeutung der " -"restlichen Ausgabe ist es am besten, den apt-Quelltext zu konsultieren." +"ncurses3.0 abhängt, die installiert sein müssen, damit libreadline2 " +"funktioniert. Im Gegenzug hängen libreadlineg2 und libreadline2-altdev " +"von libreadline2 ab. Wenn libreadline2 installiert ist, müssen außerdem " +"libc5 und ncurses3.0 (und ldso) installiert sein. Für die spezielle " +"Bedeutung der restlichen Ausgabe ist es am besten, den apt-Quelltext zu " +"konsultieren." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:118 @@ -1280,7 +1335,7 @@ msgid "" "<literal>stats</literal> displays some statistics about the cache. No " "further arguments are expected. Statistics reported are:" msgstr "" -"<literal>stats</literal> zeigt einige Statistiken ??ber den " +"<literal>stats</literal> zeigt einige Statistiken über den " "Zwischenspeicher. Es werden keine weiteren Argumente erwartet. Berichtete " "Statistiken sind:" @@ -1301,11 +1356,11 @@ msgid "" "between their names and the names used by other packages for them in " "dependencies. The majority of packages fall into this category." msgstr "" -"<literal>Normal packages</literal> ist die Anzahl der regul??ren, gew??" -"hnlichen Paketnamen. Diese sind Pakete, die eine Eins-zu-Eins-Entsprechung " -"zwischen ihren Namen und den Namen, die andere Pakete f??r ihre Abh??" -"ngigkeiten benutzen, tragen. Die Mehrzahl der Pakete f??llt in diese " -"Kategorie." +"<literal>Normal packages</literal> ist die Anzahl der regulären, " +"gewöhnlichen Paketnamen. Diese sind Pakete, die eine " +"Eins-zu-Eins-Entsprechung zwischen ihren Namen und den Namen, die andere " +"Pakete für ihre Abhängigkeiten benutzen, tragen. Die Mehrzahl der " +"Pakete fällt in diese Kategorie." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:131 @@ -1317,13 +1372,13 @@ msgid "" "package; several packages provide \"mail-transport-agent\", but there is no " "package named \"mail-transport-agent\"." msgstr "" -"<literal>Pure virtual packages</literal> ist die Anzahl der Pakete, die nur " -"als ein virtueller Paketname existieren. Das kommt vor, wenn Pakete nur den " -"virtuellen Paketnamen ??bereitstellen?? und aktuell kein Paket den Namen " -"benutzt. Zum Beispiel ist im Debian-GNU/Linux-System ??mail-transport-" -"agent?? ein rein virtuelles Paket. Mehrere Pakete stellen ??mail-transport-" -"agent?? bereit, aber es gibt kein Paket mit dem Namen ??mail-transport-" -"agent??." +"<literal>Pure virtual packages</literal> ist die Anzahl der Pakete, die " +"nur als ein virtueller Paketname existieren. Das kommt vor, wenn Pakete " +"nur den virtuellen Paketnamen »bereitstellen« und aktuell kein Paket den " +"Namen benutzt. Zum Beispiel ist im Debian-GNU/Linux-System " +"»mail-transport-agent« ein rein virtuelles Paket. Mehrere Pakete stellen " +"»mail-transport-agent« bereit, aber es gibt kein Paket mit dem Namen " +"»mail-transport-agent«." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:139 @@ -1333,23 +1388,26 @@ msgid "" "Debian GNU/Linux system, \"X11-text-viewer\" is a virtual package, but only " "one package, xless, provides \"X11-text-viewer\"." msgstr "" -"<literal>Single virtual packages</literal> ist die Anzahl der Pakete mit nur " -"einem Paket, das ein bestimmtes virtuelles Paket bereitstellt. ??X11-text-" -"viewer?? ist zum Beispiel im Debian-GNU/Linux-System ein virtuelles Paket, " -"aber nur ein Paket, xless, stellt ??X11-text-viewer?? bereit." +"<literal>Single virtual packages</literal> ist die Anzahl der Pakete " +"mit nur einem Paket, das ein bestimmtes virtuelles Paket bereitstellt. " +"»X11-text-viewer« ist zum Beispiel im Debian-GNU/Linux-System ein " +"virtuelles Paket, aber nur ein Paket, xless, stellt »X11-text-viewer« " +"bereit." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:145 msgid "" "<literal>Mixed virtual packages</literal> is the number of packages that " "either provide a particular virtual package or have the virtual package name " -"as the package name. For instance, in the Debian GNU/Linux system, \"debconf" -"\" is both an actual package, and provided by the debconf-tiny package." +"as the package name. For instance, in the Debian GNU/Linux system, " +"\"debconf\" is both an actual package, and provided by the debconf-tiny " +"package." msgstr "" -"<literal>Mixed virtual packages</literal> ist die Anzahl der Pakete, die " -"entweder ein bestimmtes virtuelles Paket bereitstellen oder den virtuellen " -"Paketnamen als Paketnamen haben. ??debconf?? ist zum Beispiel sowohl ein " -"tats??chliches Paket, wird aber auch vom Paket debconf-tiny bereitgestellt." +"<literal>Mixed virtual packages</literal> ist die Anzahl der Pakete, " +"die entweder ein bestimmtes virtuelles Paket bereitstellen oder den " +"virtuellen Paketnamen als Paketnamen haben. »debconf« ist zum Beispiel " +"sowohl ein tatsächliches Paket, wird aber auch vom Paket debconf-tiny " +"bereitgestellt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:152 @@ -1360,12 +1418,12 @@ msgid "" "package (real or virtual) has been dropped from the distribution. Usually " "they are referenced from Conflicts or Breaks statements." msgstr "" -"<literal>Missing</literal> ist die Anzahl der Paketnamen, auf die eine Abh??" -"ngigkeit verweist, die aber von keinem Paket bereitgestellt werden. Fehlende " -"Pakete k??nnten auftauchen, wenn nicht auf eine vollst??ndige Distribution " -"zugegriffen oder ein (echtes oder virtuelles) Paket aus einer Distribution " -"gestrichen wurde. Normalerweise wird auf sie von Conflicts oder Breaks-" -"Angaben Bezug genommen." +"<literal>Missing</literal> ist die Anzahl der Paketnamen, auf die eine " +"Abhängigkeit verweist, die aber von keinem Paket bereitgestellt werden. " +"Fehlende Pakete könnten auftauchen, wenn nicht auf eine vollständige " +"Distribution zugegriffen oder ein (echtes oder virtuelles) Paket aus " +"einer Distribution gestrichen wurde. Normalerweise wird auf sie von " +"Conflicts oder Breaks-Angaben Bezug genommen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:159 @@ -1377,11 +1435,11 @@ msgid "" "considerably larger than the number of total package names." msgstr "" "<literal>Total distinct</literal> Versionen ist die Anzahl der im " -"Zwischenspeicher gefundenen Paketversionen. Dieser Wert ist daher meistens " -"gleich der Anzahl der gesamten Paketnamen. Wenn auf mehr als eine " -"Distribution (zum Beispiel ??stable?? und ??unstable?? zusammen) zugegriffen " -"wird, kann dieser Wert deutlich gr????er als die gesamte Anzahl der " -"Paketnamen sein." +"Zwischenspeicher gefundenen Paketversionen. Dieser Wert ist daher " +"meistens gleich der Anzahl der gesamten Paketnamen. Wenn auf mehr als " +"eine Distribution (zum Beispiel »stable« und »unstable« zusammen) " +"zugegriffen wird, kann dieser Wert deutlich größer als die gesamte " +"Anzahl der Paketnamen sein." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:166 @@ -1389,8 +1447,8 @@ msgid "" "<literal>Total dependencies</literal> is the number of dependency " "relationships claimed by all of the packages in the cache." msgstr "" -"<literal>Total dependencies</literal> ist die Anzahl der Abh??" -"ngigkeitsbeziehungen, den alle Pakete im Zwischenspeicher beanspruchen." +"<literal>Total dependencies</literal> ist die Anzahl der " +"Abhängigkeitsbeziehungen, den alle Pakete im Zwischenspeicher beanspruchen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:173 @@ -1404,9 +1462,10 @@ msgid "" "match the given package names. All versions are shown, as well as all " "records that declare the name to be a Binary." msgstr "" -"<literal>showsrc</literal> zeigt alle Quellpaketdatens??tze, die den " -"angegebenen Paketnamen entsprechen. Alle Versionen werden ebenso angezeigt, " -"wie alle Datens??tze, die den Namen f??r ein Programm deklarieren." +"<literal>showsrc</literal> zeigt alle Quellpaketdatensätze, die den " +"angegebenen Paketnamen entsprechen. Alle Versionen werden ebenso " +"angezeigt, wie alle Datensätze, die den Namen für ein Programm " +"deklarieren." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:179 apt-config.8.xml:84 @@ -1416,11 +1475,11 @@ msgstr "dump" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:180 msgid "" -"<literal>dump</literal> shows a short listing of every package in the cache. " -"It is primarily for debugging." +"<literal>dump</literal> shows a short listing of every package in the " +"cache. It is primarily for debugging." msgstr "" -"<literal>dump</literal> zeigt einen kurzen Programmausdruck von jedem Paket " -"im Zwischenspeicher. Es dient in erster Linie der Fehlersuche." +"<literal>dump</literal> zeigt einen kurzen Programmausdruck von jedem " +"Paket im Zwischenspeicher. Es dient in erster Linie der Fehlersuche." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:184 @@ -1433,9 +1492,9 @@ msgid "" "<literal>dumpavail</literal> prints out an available list to stdout. This is " "suitable for use with &dpkg; and is used by the &dselect; method." msgstr "" -"<literal>dumpavail</literal> gibt eine verf??gbare Liste auf stdout aus. " -"Dies ist geeignet f??r die Benutzung mit &dpkg; und wird f??r die &dselect;-" -"Methode benutzt." +"<literal>dumpavail</literal> gibt eine verfügbare Liste auf stdout aus. " +"Dies ist geeignet für die Benutzung mit &dpkg; und wird für die " +"&dselect;-Methode benutzt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:189 @@ -1448,8 +1507,8 @@ msgid "" "<literal>unmet</literal> displays a summary of all unmet dependencies in the " "package cache." msgstr "" -"<literal>unmet</literal> zeigt die Zusammenfassung aller unerf??llten Abh??" -"ngigkeiten im Paketzwischenspeicher." +"<literal>unmet</literal> zeigt die Zusammenfassung aller unerfüllten " +"Abhängigkeiten im Paketzwischenspeicher." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:194 @@ -1459,12 +1518,13 @@ msgstr "show <replaceable>Paket(e)</replaceable>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:195 msgid "" -"<literal>show</literal> performs a function similar to <command>dpkg --print-" -"avail</command>; it displays the package records for the named packages." +"<literal>show</literal> performs a function similar to <command>dpkg " +"--print-avail</command>; it displays the package records for the named " +"packages." msgstr "" -"<literal>show</literal> f??hrt eine Funktion aus, die <command>dpkg --print-" -"avail</command> ??hnlich ist. Es zeigt die Paketdatens??tze f??r die " -"genannten Pakete." +"<literal>show</literal> führt eine Funktion aus, die <command>dpkg " +"--print-avail</command> ähnlich ist. Es zeigt die Paketdatensätze für " +"die genannten Pakete." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:200 @@ -1485,15 +1545,15 @@ msgid "" "<option>--names-only</option> is given then the long description is not " "searched, only the package name is." msgstr "" -"<literal>search</literal> f??hrt eine Volltextsuche in der Liste aller verf??" -"gbaren Pakete f??r das gegebene POSIX-regex-Muster durch, siehe " +"<literal>search</literal> führt eine Volltextsuche in der Liste aller " +"verfügbaren Pakete für das gegebene POSIX-regex-Muster durch, siehe " "<citerefentry><refentrytitle><command>regex</command></refentrytitle> " "<manvolnum>7</manvolnum></citerefentry>. Es durchsucht die Paketnamen und " -"die Beschreibungen nach einem Vorkommen des regul??ren Ausdrucks und gibt " -"den Paketnamen mit einer kurzen Beschreibung, einschlie??lich virtueller " +"die Beschreibungen nach einem Vorkommen des regulären Ausdrucks und gibt " +"den Paketnamen mit einer kurzen Beschreibung, einschließlich virtueller " "Paketnamen, aus. Wenn <option>--full</option> angegeben wurde, ist die " -"Ausgabe gleich der, die <literal>show</literal> f??r jedes Paket erzeugt und " -"wenn <option>--names-only</option> angegeben wurde, wird die lange " +"Ausgabe gleich der, die <literal>show</literal> für jedes Paket erzeugt " +"und wenn <option>--names-only</option> angegeben wurde, wird die lange " "Beschreibung nicht durchsucht, sondern nur der Paketname." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> @@ -1502,8 +1562,8 @@ msgid "" "Separate arguments can be used to specify multiple search patterns that are " "and'ed together." msgstr "" -"Separate Argumente k??nnen benutzt werden, um mehrere Suchmuster anzugeben, " -"die ??und??-verkn??pft werden." +"Separate Argumente können benutzt werden, um mehrere Suchmuster anzugeben, " +"die »und«-verknüpft werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:218 @@ -1516,9 +1576,9 @@ msgid "" "<literal>depends</literal> shows a listing of each dependency a package has " "and all the possible other packages that can fulfill that dependency." msgstr "" -"<literal>depends</literal> zeigt eine Liste von jeder Abh??ngigkeit, die ein " -"Paket hat und alle m??glichen anderen Pakete, die die Abh??ngigkeit erf??" -"llen k??nnen." +"<literal>depends</literal> zeigt eine Liste von jeder Abhängigkeit, die " +"ein Paket hat und alle möglichen anderen Pakete, die die Abhängigkeit " +"erfüllen können." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:223 @@ -1531,13 +1591,13 @@ msgid "" "<literal>rdepends</literal> shows a listing of each reverse dependency a " "package has." msgstr "" -"<literal>rdepends</literal> zeigt eine Liste von jeder R??ckw??rtsabh??" -"ngigkeit, die ein Paket hat." +"<literal>rdepends</literal> zeigt eine Liste von jeder " +"Rückwärtsabhängigkeit, die ein Paket hat." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:228 msgid "pkgnames <replaceable>[ prefix ]</replaceable>" -msgstr "pkgnames <replaceable>[ Pr??fix ]</replaceable>" +msgstr "pkgnames <replaceable>[ Präfix ]</replaceable>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:229 @@ -1545,14 +1605,15 @@ 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 " "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." +"extremely quickly. This command is best used with the " +"<option>--generate</option> option." msgstr "" -"Dieser Befehl gibt den Namen jedes Paketes aus, das APT kennt. Das optionale " -"Argument ist ein passendes Pr??fix, um die Namensliste zu filtern. Die " -"Ausgabe ist geeignet f??r die Benutzung in der Tabulatorvervollst??ndigung " -"in der Shell. Die Ausgabe wird extrem schnell generiert. Dieser Befehl wird " -"am besten mit der <option>--generate</option>-Option benutzt." +"Dieser Befehl gibt den Namen jedes Paketes aus, das APT kennt. Das " +"optionale Argument ist ein passendes Präfix, um die Namensliste zu " +"filtern. Die Ausgabe ist geeignet für die Benutzung in der " +"Tabulatorvervollständigung in der Shell. Die Ausgabe wird extrem schnell " +"generiert. Dieser Befehl wird am besten mit der " +"<option>--generate</option>-Option benutzt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:234 @@ -1562,8 +1623,8 @@ msgid "" "the generated list." msgstr "" "Beachten Sie, dass ein Paket, das APT kennt, nicht notwendigerweise zum " -"Herunterladen verf??gbar, installierbar oder installiert ist, virtuelle " -"Pakete sind z.B. auch in der generierten Liste aufgef??hrt." +"Herunterladen verfügbar, installierbar oder installiert ist, virtuelle " +"Pakete sind z.B. auch in der generierten Liste aufgeführt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:239 @@ -1574,21 +1635,22 @@ msgstr "dotty <replaceable>Paket(e)</replaceable>" #: apt-cache.8.xml:240 msgid "" "<literal>dotty</literal> takes a list of packages on the command line and " -"generates output suitable for use by dotty from the <ulink url=\"http://www." -"research.att.com/sw/tools/graphviz/\">GraphViz</ulink> package. The result " -"will be a set of nodes and edges representing the relationships between the " -"packages. By default the given packages will trace out all dependent " -"packages; this can produce a very large graph. To limit the output to only " -"the packages listed on the command line, set the <literal>APT::Cache::" -"GivenOnly</literal> option." -msgstr "" -"<literal>dotty</literal> nimmt eine Paketliste auf der Befehlszeile entgegen " -"und generiert eine Ausgabe, die f??r die Benutzung durch dotty aus dem Paket " -"<ulink url=\"http://www.research.att.com/sw/tools/graphviz/\">GraphViz</" -"ulink> geeignet ist. Das Ergebnis ist eine Zusammenstellung von Knoten und " -"Kanten, die die Beziehung zwischen Paketen darstellen. Standardm????ig " -"werden alle abh??ngigen Pakete ausfindig gemacht. Dies kann zu einem sehr " -"gro??en Schaubild f??hren. Um die Ausgabe auf die Pakete zu beschr??nken, " +"generates output suitable for use by dotty from the <ulink " +"url=\"http://www.research.att.com/sw/tools/graphviz/\">GraphViz</ulink> " +"package. The result will be a set of nodes and edges representing the " +"relationships between the packages. By default the given packages will trace " +"out all dependent packages; this can produce a very large graph. To limit " +"the output to only the packages listed on the command line, set the " +"<literal>APT::Cache::GivenOnly</literal> option." +msgstr "" +"<literal>dotty</literal> nimmt eine Paketliste auf der Befehlszeile " +"entgegen und generiert eine Ausgabe, die für die Benutzung durch dotty " +"aus dem Paket <ulink " +"url=\"http://www.research.att.com/sw/tools/graphviz/\">GraphViz</ulink> " +"geeignet ist. Das Ergebnis ist eine Zusammenstellung von Knoten und " +"Kanten, die die Beziehung zwischen Paketen darstellen. Standardmäßig " +"werden alle abhängigen Pakete ausfindig gemacht. Dies kann zu einem sehr " +"großen Schaubild führen. Um die Ausgabe auf die Pakete zu beschränken, " "die auf der Befehlszeile eingegeben wurden, setzen Sie die Option " "<literal>APT::Cache::GivenOnly</literal>." @@ -1600,17 +1662,17 @@ msgid "" "are hexagons. Orange boxes mean recursion was stopped [leaf packages], blue " "lines are pre-depends, green lines are conflicts." msgstr "" -"Die resultierenden Knoten haben mehrere Formen. Normale Pakete sind K??" -"stchen, reine Bereitstellungen sind Dreiecke, gemischte Bereitstellungen " -"sind Diamanten, fehlende Pakete sind Sechsecke. Orange K??stchen bedeuten, " -"dass die Rekursion beendet wurde [Blattpakete], blaue Linien sind Pre-" -"depends, gr??ne Linien sind Konflikte." +"Die resultierenden Knoten haben mehrere Formen. Normale Pakete sind " +"Kästchen, reine Bereitstellungen sind Dreiecke, gemischte " +"Bereitstellungen sind Diamanten, fehlende Pakete sind Sechsecke. Orange " +"Kästchen bedeuten, dass die Rekursion beendet wurde [Blattpakete], blaue " +"Linien sind Pre-depends, grüne Linien sind Konflikte." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:254 msgid "Caution, dotty cannot graph larger sets of packages." msgstr "" -"Vorsicht, dotty kann keine gr????eren Zusammenstellungen von Paketen " +"Vorsicht, dotty kann keine größeren Zusammenstellungen von Paketen " "grafisch darstellen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -1621,12 +1683,13 @@ msgstr "xvcg <replaceable>Paket(e)</replaceable>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:258 msgid "" -"The same as <literal>dotty</literal>, only for xvcg from the <ulink url=" -"\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." +"The same as <literal>dotty</literal>, only for xvcg from the <ulink " +"url=\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG " +"tool</ulink>." msgstr "" -"Das gleiche wie <literal>dotty</literal>, nur f??r xvcg vom <ulink url=" -"\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG-Werkzeug</" -"ulink>." +"Das gleiche wie <literal>dotty</literal>, nur für xvcg vom <ulink " +"url=\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">" +"VCG-Werkzeug</ulink>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:262 @@ -1641,10 +1704,11 @@ msgid "" "source. Otherwise it prints out detailed information about the priority " "selection of the named package." msgstr "" -"<literal>policy</literal> ist dazu gedacht, bei Fragen der Fehlersuche, die " -"sich auf die Einstellungsdatei beziehen, zu helfen. Ohne Argumente gibt es " -"die Priorit??ten von jeder Quelle aus. Ansonsten gibt es umfangreiche " -"Informationen ??ber die Priorit??tenauswahl der genannten Pakete aus." +"<literal>policy</literal> ist dazu gedacht, bei Fragen der Fehlersuche, " +"die sich auf die Einstellungsdatei beziehen, zu helfen. Ohne Argumente " +"gibt es die Prioritäten von jeder Quelle aus. Ansonsten gibt es " +"umfangreiche Informationen über die Prioritätenauswahl der genannten " +"Pakete aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:269 @@ -1659,21 +1723,19 @@ msgid "" "archive management tool, <literal>madison</literal>. It displays available " "versions of a package in a tabular format. Unlike the original " "<literal>madison</literal>, it can only display information for the " -"architecture for which APT has retrieved package lists (<literal>APT::" -"Architecture</literal>)." -msgstr "" -"<literal>apt-cache</literal>s <literal>madison</literal>-Befehl versucht das " -"Ausgabeformat und eine Untermenge der Funktionalit??t des Debian-" -"Archivververwaltungswerkzeuges <literal>madison</literal> nachzuahmen. Es " -"zeigt verf??gbare Versionen eines Pakets in Tabellenform. Anders als das " -"Original <literal>madison</literal>, kann es nur Informationen f??r die " -"Architektur anzeigen, f??r die APT Paketlisten heruntergeladen hat " +"architecture for which APT has retrieved package lists " "(<literal>APT::Architecture</literal>)." +msgstr "" +"<literal>apt-cache</literal>s <literal>madison</literal>-Befehl versucht " +"das Ausgabeformat und eine Untermenge der Funktionalität des " +"Debian-Archivververwaltungswerkzeuges <literal>madison</literal> " +"nachzuahmen. Es zeigt verfügbare Versionen eines Pakets in Tabellenform. " +"Anders als das Original <literal>madison</literal>, kann es nur " +"Informationen für die Architektur anzeigen, für die APT Paketlisten " +"heruntergeladen hat (<literal>APT::Architecture</literal>)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:281 apt-config.8.xml:93 apt-extracttemplates.1.xml:56 -#: apt-ftparchive.1.xml:492 apt-get.8.xml:319 apt-mark.8.xml:89 -#: apt-sortpkgs.1.xml:54 apt.conf.5.xml:436 apt.conf.5.xml:458 +#: apt-cache.8.xml:281 apt-config.8.xml:93 apt-extracttemplates.1.xml:56 apt-ftparchive.1.xml:492 apt-get.8.xml:319 apt-mark.8.xml:89 apt-sortpkgs.1.xml:54 apt.conf.5.xml:436 apt.conf.5.xml:458 msgid "options" msgstr "Optionen" @@ -1691,17 +1753,16 @@ msgstr "<option>--pkg-cache</option>" #: apt-cache.8.xml:286 msgid "" "Select the file to store the package cache. The package cache is the primary " -"cache used by all operations. Configuration Item: <literal>Dir::Cache::" -"pkgcache</literal>." +"cache used by all operations. Configuration Item: " +"<literal>Dir::Cache::pkgcache</literal>." msgstr "" -"W??hlt die Datei zum Speichern des Paketzwischenspeichers. Der " -"Paketzwischenspeicher ist der prim??re Zwischenspeicher, der von allen " -"Operationen benutzt wird. Konfigurationselement: <literal>Dir::Cache::" -"pkgcache</literal>." +"Wählt die Datei zum Speichern des Paketzwischenspeichers. Der " +"Paketzwischenspeicher ist der primäre Zwischenspeicher, der von allen " +"Operationen benutzt wird. Konfigurationselement: " +"<literal>Dir::Cache::pkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:291 apt-ftparchive.1.xml:535 apt-get.8.xml:376 -#: apt-sortpkgs.1.xml:58 +#: apt-cache.8.xml:291 apt-ftparchive.1.xml:535 apt-get.8.xml:376 apt-sortpkgs.1.xml:58 msgid "<option>-s</option>" msgstr "<option>-s</option>" @@ -1719,13 +1780,13 @@ msgid "" "cache is used to avoid reparsing all of the package files. Configuration " "Item: <literal>Dir::Cache::srcpkgcache</literal>." msgstr "" -"W??hlt die Datei zum Speichern des Quellenzwischenspeichers. Die Quelle wird " -"nur von <literal>gencaches</literal> benutzt und sie speichert eine " -"ausgewertete Version der Paketinformationen von entfernt liegenden Quellen. " -"Wenn der Paketzwischenspeicher gebildet wird, wird der " +"Wählt die Datei zum Speichern des Quellenzwischenspeichers. Die Quelle " +"wird nur von <literal>gencaches</literal> benutzt und sie speichert eine " +"ausgewertete Version der Paketinformationen von entfernt liegenden " +"Quellen. Wenn der Paketzwischenspeicher gebildet wird, wird der " "Quellenzwischenspeicher benutzt, um ein erneutes Auswerten aller " -"Paketdateien zu vermeiden. Konfigurationselement: <literal>Dir::Cache::" -"srcpkgcache</literal>." +"Paketdateien zu vermeiden. Konfigurationselement: " +"<literal>Dir::Cache::srcpkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:299 apt-ftparchive.1.xml:509 apt-get.8.xml:366 @@ -1745,11 +1806,11 @@ msgid "" "<option>-q=#</option> to set the quietness level, overriding the " "configuration file. Configuration Item: <literal>quiet</literal>." msgstr "" -"Still; erzeugt eine Ausgabe, die f??r Protokollierung geeignet ist und " -"Fortschrittsanzeiger wegl??sst. Mehr ??q??s unterdr??cken mehr Ausgaben, bis " -"zu einem Maximum von 2. Sie k??nnen au??erdem <option>-q=#</option> " -"benutzen, um die Stillestufe zu setzen, was die Konfigurationsdatei ??" -"berschreibt. Konfigurationselement: <literal>quiet</literal>." +"Still; erzeugt eine Ausgabe, die für Protokollierung geeignet ist und " +"Fortschrittsanzeiger weglässt. Mehr »q«s unterdrücken mehr Ausgaben, bis " +"zu einem Maximum von 2. Sie können außerdem <option>-q=#</option> " +"benutzen, um die Stillestufe zu setzen, was die Konfigurationsdatei " +"überschreibt. Konfigurationselement: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:306 @@ -1768,9 +1829,10 @@ msgid "" "only Depends and Pre-Depends relations to be printed. Configuration Item: " "<literal>APT::Cache::Important</literal>." msgstr "" -"Nur wichtige Abh??ngigkeiten ausgeben. Zur Benutzung mit unmet und depends. " -"Veranlasst, dass nur Depends- und Pre-Depends-Beziehungen ausgegeben werden. " -"Konfigurationselement: <literal>APT::Cache::Important</literal>." +"Nur wichtige Abhängigkeiten ausgeben. Zur Benutzung mit unmet und " +"depends. Veranlasst, dass nur Depends- und Pre-Depends-Beziehungen " +"ausgegeben werden. Konfigurationselement: " +"<literal>APT::Cache::Important</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:312 apt-cdrom.8.xml:121 apt-get.8.xml:333 @@ -1788,7 +1850,7 @@ msgid "" "Print full package records when searching. Configuration Item: " "<literal>APT::Cache::ShowFull</literal>." msgstr "" -"Gibt die vollst??ndigen Paketdatens??tze beim Suchen aus. " +"Gibt die vollständigen Paketdatensätze beim Suchen aus. " "Konfigurationselement: <literal>APT::Cache::ShowFull</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -1805,18 +1867,19 @@ msgstr "<option>--all-versions</option>" #: apt-cache.8.xml:318 msgid "" "Print full records for all available versions. This is the default; to turn " -"it off, use <option>--no-all-versions</option>. If <option>--no-all-" -"versions</option> is specified, only the candidate version will displayed " -"(the one which would be selected for installation). This option is only " -"applicable to the <literal>show</literal> command. Configuration Item: " -"<literal>APT::Cache::AllVersions</literal>." +"it off, use <option>--no-all-versions</option>. If " +"<option>--no-all-versions</option> is specified, only the candidate version " +"will displayed (the one which would be selected for installation). This " +"option is only applicable to the <literal>show</literal> command. " +"Configuration Item: <literal>APT::Cache::AllVersions</literal>." msgstr "" -"Gibt die vollst??ndigen Datens??tze f??r alle verf??gbaren Versionen aus. " -"Dies ist die Vorgabe. Um sie auszuschalten, benutzen Sie <option>--no-all-" -"versions</option>. Wenn <option>--no-all-versions</option> angegeben ist, " -"wird nur die Anw??rterversion angezeigt (die, die zur Installation ausgew??" -"hlt w??rde). Diese Option ist nur f??r den <literal>show</literal>-Befehl " -"anwendbar. Konfigurationselement: <literal>APT::Cache::AllVersions</literal>." +"Gibt die vollständigen Datensätze für alle verfügbaren Versionen aus. " +"Dies ist die Vorgabe. Um sie auszuschalten, benutzen Sie " +"<option>--no-all-versions</option>. Wenn " +"<option>--no-all-versions</option> angegeben ist, wird nur die " +"Anwärterversion angezeigt (die, die zur Installation ausgewählt würde). " +"Diese Option ist nur für den <literal>show</literal>-Befehl anwendbar. " +"Konfigurationselement: <literal>APT::Cache::AllVersions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:326 @@ -1832,10 +1895,11 @@ msgstr "<option>--generate</option>" #: apt-cache.8.xml:327 msgid "" "Perform automatic package cache regeneration, rather than use the cache as " -"it is. This is the default; to turn it off, use <option>--no-generate</" -"option>. Configuration Item: <literal>APT::Cache::Generate</literal>." +"it is. This is the default; to turn it off, use " +"<option>--no-generate</option>. Configuration Item: " +"<literal>APT::Cache::Generate</literal>." msgstr "" -"F??hrt das Neuerstellen des Paketzwischenspeichers aus, anstatt den " +"Führt das Neuerstellen des Paketzwischenspeichers aus, anstatt den " "Zwischenspeicher so zu benutzen, wie er ist. Das ist die Vorgabe. Um sie " "auszuschalten benutzen Sie <option>--no-generate</option>. " "Konfigurationselement: <literal>APT::Cache::Generate</literal>." @@ -1868,11 +1932,11 @@ msgstr "<option>--all-names</option>" #: apt-cache.8.xml:338 msgid "" "Make <literal>pkgnames</literal> print all names, including virtual packages " -"and missing dependencies. Configuration Item: <literal>APT::Cache::" -"AllNames</literal>." +"and missing dependencies. Configuration Item: " +"<literal>APT::Cache::AllNames</literal>." msgstr "" -"L??sst <literal>pkgnames</literal> alle Namen, einschlie??lich virtueller " -"Pakete und fehlender Abh??ngigkeiten, ausgeben. Konfigurationselement: " +"Lässt <literal>pkgnames</literal> alle Namen, einschließlich virtueller " +"Pakete und fehlender Abhängigkeiten, ausgeben. Konfigurationselement: " "<literal>APT::Cache::AllNames</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -1887,8 +1951,8 @@ msgid "" "that all packages mentioned are printed once. Configuration Item: " "<literal>APT::Cache::RecurseDepends</literal>." msgstr "" -"Macht <literal>depends</literal> und <literal>rdepends</literal> rekursiv, " -"so dass alle erw??hnten Pakete einmal ausgegeben werden. " +"Macht <literal>depends</literal> und <literal>rdepends</literal> " +"rekursiv, so dass alle erwähnten Pakete einmal ausgegeben werden. " "Konfigurationselement: <literal>APT::Cache::RecurseDepends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -1899,24 +1963,21 @@ msgstr "<option>--installed</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:351 msgid "" -"Limit the output of <literal>depends</literal> and <literal>rdepends</" -"literal> to packages which are currently installed. Configuration Item: " -"<literal>APT::Cache::Installed</literal>." +"Limit the output of <literal>depends</literal> and " +"<literal>rdepends</literal> to packages which are currently installed. " +"Configuration Item: <literal>APT::Cache::Installed</literal>." msgstr "" -"Begrenzt die Ausgabe von <literal>depends</literal> und <literal>rdepends</" -"literal> auf Pakete, die aktuell installiert sind. Konfigurationselement: " -"<literal>APT::Cache::Installed</literal>." +"Begrenzt die Ausgabe von <literal>depends</literal> und " +"<literal>rdepends</literal> auf Pakete, die aktuell installiert sind. " +"Konfigurationselement: <literal>APT::Cache::Installed</literal>." #. type: Content of: <refentry><refsect1><variablelist> -#: apt-cache.8.xml:356 apt-cdrom.8.xml:150 apt-config.8.xml:98 -#: apt-extracttemplates.1.xml:67 apt-ftparchive.1.xml:547 apt-get.8.xml:554 -#: apt-sortpkgs.1.xml:64 +#: apt-cache.8.xml:356 apt-cdrom.8.xml:150 apt-config.8.xml:98 apt-extracttemplates.1.xml:67 apt-ftparchive.1.xml:547 apt-get.8.xml:554 apt-sortpkgs.1.xml:64 msgid "&apt-commonoptions;" msgstr "&apt-commonoptions;" #. type: Content of: <refentry><refsect1><title> -#: apt-cache.8.xml:361 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 -#: apt.conf.5.xml:968 apt_preferences.5.xml:615 +#: apt-cache.8.xml:361 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 apt.conf.5.xml:968 apt_preferences.5.xml:615 msgid "Files" msgstr "Dateien" @@ -1926,11 +1987,7 @@ msgid "&file-sourceslist; &file-statelists;" msgstr "&file-sourceslist; &file-statelists;" #. type: Content of: <refentry><refsect1><title> -#: apt-cache.8.xml:368 apt-cdrom.8.xml:155 apt-config.8.xml:103 -#: apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569 -#: apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181 -#: apt-sortpkgs.1.xml:69 apt.conf.5.xml:974 apt_preferences.5.xml:622 -#: sources.list.5.xml:221 +#: apt-cache.8.xml:368 apt-cdrom.8.xml:155 apt-config.8.xml:103 apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569 apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181 apt-sortpkgs.1.xml:69 apt.conf.5.xml:974 apt_preferences.5.xml:622 sources.list.5.xml:221 msgid "See Also" msgstr "Siehe auch" @@ -1940,9 +1997,7 @@ msgid "&apt-conf;, &sources-list;, &apt-get;" msgstr "&apt-conf;, &sources-list;, &apt-get;" #. type: Content of: <refentry><refsect1><title> -#: apt-cache.8.xml:373 apt-cdrom.8.xml:160 apt-config.8.xml:108 -#: apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:567 apt-get.8.xml:575 -#: apt-mark.8.xml:137 apt-sortpkgs.1.xml:73 +#: apt-cache.8.xml:373 apt-cdrom.8.xml:160 apt-config.8.xml:108 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:567 apt-get.8.xml:575 apt-mark.8.xml:137 apt-sortpkgs.1.xml:73 msgid "Diagnostics" msgstr "Diagnose" @@ -1952,7 +2007,7 @@ msgid "" "<command>apt-cache</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" -"<command>apt-cache</command> gibt bei normalen Operationen 0 zur??ck, " +"<command>apt-cache</command> gibt bei normalen Operationen 0 zurück, " "dezimal 100 bei Fehlern." #. type: Content of: <refentry><refentryinfo> @@ -1961,8 +2016,8 @@ msgid "" "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>14 " "February 2004</date>" msgstr "" -"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; " -"<date>14. Februar 2004</date>" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>" +"14. Februar 2004</date>" #. type: Content of: <refentry><refnamediv><refname> #: apt-cdrom.8.xml:21 apt-cdrom.8.xml:28 @@ -1984,23 +2039,24 @@ msgid "" "<arg>add</arg> <arg>ident</arg> </group>" msgstr "" "<command>apt-cdrom</command> <arg><option>-hvrmfan</option></arg> " -"<arg><option>-d=<replaceable>CDROM-Einh??ngepunkt</replaceable></option></" -"arg><arg><option>-o=<replaceable>Konfigurationszeichenkette</replaceable></" -"option></arg><arg><option>-c=<replaceable>Datei</replaceable></option></" -"arg><group><arg>hinzuf??gen</arg><arg>Identifikation</arg></group>" +"<arg><option>-d=<replaceable>CDROM-Einhängepunkt</replaceable></option>" +"</arg><arg><option>-o=<replaceable>Konfigurationszeichenkette" +"</replaceable></option></arg><arg><option>-c=<replaceable>Datei" +"</replaceable></option></arg><group><arg>hinzufügen</arg>" +"<arg>Identifikation</arg></group>" #. type: Content of: <refentry><refsect1><para> #: apt-cdrom.8.xml:48 msgid "" "<command>apt-cdrom</command> is used to add a new CDROM to APTs list of " "available sources. <command>apt-cdrom</command> takes care of determining " -"the structure of the disc as well as correcting for several possible mis-" -"burns and verifying the index files." +"the structure of the disc as well as correcting for several possible " +"mis-burns and verifying the index files." msgstr "" -"<command>apt-cdrom</command> wird benutzt, um eine neue CDROM zu APTs Liste " -"der verf??gbaren Quellen hinzuzuf??gen. <command>apt-cdrom</command> k??" -"mmert sich um die festgestellte Struktur des Mediums, sowie die Korrektur f??" -"r mehrere m??gliche Fehlbrennungen und pr??ft die Indexdateien." +"<command>apt-cdrom</command> wird benutzt, um eine neue CDROM zu APTs " +"Liste der verfügbaren Quellen hinzuzufügen. <command>apt-cdrom</command> " +"kümmert sich um die festgestellte Struktur des Mediums, sowie die " +"Korrektur für mehrere mögliche Fehlbrennungen und prüft die Indexdateien." #. type: Content of: <refentry><refsect1><para> #: apt-cdrom.8.xml:55 @@ -2009,10 +2065,10 @@ msgid "" "system, it cannot be done by hand. Furthermore each disk in a multi-cd set " "must be inserted and scanned separately to account for possible mis-burns." msgstr "" -"Es ist notwendig, <command>apt-cdrom</command> zu benutzen, um CDs zum APT-" -"System hinzuzuf??gen. Dies kann nicht manuell erfolgen. Weiterhin muss jedes " -"Medium in einer Zusammenstellung aus mehreren CDs einzeln eingelegt und " -"gescannt werden, um auf m??gliche Fehlbrennungen zu testen." +"Es ist notwendig, <command>apt-cdrom</command> zu benutzen, um CDs zum " +"APT-System hinzuzufügen. Dies kann nicht manuell erfolgen. Weiterhin muss " +"jedes Medium in einer Zusammenstellung aus mehreren CDs einzeln eingelegt " +"und gescannt werden, um auf mögliche Fehlbrennungen zu testen." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt-cdrom.8.xml:65 @@ -2029,18 +2085,18 @@ msgid "" "title." msgstr "" "<literal>add</literal> wird benutzt, um ein neues Medium zur Quellenliste " -"hinzuzuf??gen. Es wird das CDROM-Ger??t aush??ngen, verlangen, dass ein " +"hinzuzufügen. Es wird das CDROM-Gerät aushängen, verlangen, dass ein " "Medium eingelegt wird und dann mit den Einlesen und Kopieren der " -"Indexdateien fortfahren. Wenn das Medium kein angemessenes <filename>disk</" -"filename>-Verzeichnis hat, werden Sie nach einem aussagekr??ftigen Titel " -"gefragt." +"Indexdateien fortfahren. Wenn das Medium kein angemessenes " +"<filename>disk</filename>-Verzeichnis hat, werden Sie nach einem " +"aussagekräftigen Titel gefragt." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:74 msgid "" "APT uses a CDROM ID to track which disc is currently in the drive and " -"maintains a database of these IDs in <filename>&statedir;/cdroms.list</" -"filename>" +"maintains a database of these IDs in " +"<filename>&statedir;/cdroms.list</filename>" msgstr "" "APT benutzt eine CDROM-ID, um nachzuverfolgen, welches Medium gerade im " "Laufwerk ist und verwaltet eine Datenbank mit diesen IDs in " @@ -2057,17 +2113,17 @@ msgid "" "A debugging tool to report the identity of the current disc as well as the " "stored file name" msgstr "" -"Ein Fehlersuchwerkzeug, um die Identit??t des aktuellen Mediums sowie den " +"Ein Fehlersuchwerkzeug, um die Identität des aktuellen Mediums sowie den " "gespeicherten Dateinamen zu berichten." #. type: Content of: <refentry><refsect1><para> #: apt-cdrom.8.xml:61 msgid "" "Unless the <option>-h</option>, or <option>--help</option> option is given " -"one of the commands below must be present. <placeholder type=\"variablelist" -"\" id=\"0\"/>" +"one of the commands below must be present. <placeholder " +"type=\"variablelist\" id=\"0\"/>" msgstr "" -"Au??er wenn die Option <option>-h</option> oder <option>--help</option> " +"Außer wenn die Option <option>-h</option> oder <option>--help</option> " "angegeben wurde, muss einer der beiden Befehle unterhalb gegeben sein. " "<placeholder type=\"variablelist\" id=\"0\"/>" @@ -2093,10 +2149,10 @@ msgid "" "be listed in <filename>/etc/fstab</filename> and properly configured. " "Configuration Item: <literal>Acquire::cdrom::mount</literal>." msgstr "" -"Einh??ngepunkt. Gibt den Ort an, an dem die CD-ROM eingeh??ngt wird. Dieser " -"Einh??ngepunkt muss in <filename>/etc/fstab</filename> eingetragen und " -"angemessen konfiguriert sein. Konfigurationselement: <literal>Acquire::" -"cdrom::mount</literal>." +"Einhängepunkt. Gibt den Ort an, an dem die CD-ROM eingehängt wird. Dieser " +"Einhängepunkt muss in <filename>/etc/fstab</filename> eingetragen und " +"angemessen konfiguriert sein. Konfigurationselement: " +"<literal>Acquire::cdrom::mount</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cdrom.8.xml:104 @@ -2111,14 +2167,14 @@ msgstr "<option>--rename</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:105 msgid "" -"Rename a disc; change the label of a disk or override the disks given label. " -"This option will cause <command>apt-cdrom</command> to prompt for a new " -"label. Configuration Item: <literal>APT::CDROM::Rename</literal>." +"Rename a disc; change the label of a disk or override the disks given " +"label. This option will cause <command>apt-cdrom</command> to prompt for a " +"new label. Configuration Item: <literal>APT::CDROM::Rename</literal>." msgstr "" -"Ein Medium umbenennen. ??ndert den Namen eines Mediums oder ??berschreibt " -"den Namen, der dem Medium gegeben wurde. Diese Option wird <command>apt-" -"cdrom</command> veranlassen, nach einem neuen Namen zu fragen. " -"Konfigurationselement: <literal>APT::CDROM::Rename</literal>." +"Ein Medium umbenennen. Ändert den Namen eines Mediums oder überschreibt " +"den Namen, der dem Medium gegeben wurde. Diese Option wird " +"<command>apt-cdrom</command> veranlassen, nach einem neuen Namen zu " +"fragen. Konfigurationselement: <literal>APT::CDROM::Rename</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cdrom.8.xml:113 apt-get.8.xml:347 @@ -2134,12 +2190,12 @@ msgstr "<option>--no-mount</option>" #: apt-cdrom.8.xml:114 msgid "" "No mounting; prevent <command>apt-cdrom</command> from mounting and " -"unmounting the mount point. Configuration Item: <literal>APT::CDROM::" -"NoMount</literal>." +"unmounting the mount point. Configuration Item: " +"<literal>APT::CDROM::NoMount</literal>." msgstr "" -"Kein Einh??ngen. Hindert <command>apt-cdrom</command> am Ein- und Aush??ngen " -"des Einh??ngepunkts. Konfigurationselement: <literal>APT::CDROM::NoMount</" -"literal>." +"Kein Einhängen. Hindert <command>apt-cdrom</command> am Ein- und " +"Aushängen des Einhängepunkts. Konfigurationselement: " +"<literal>APT::CDROM::NoMount</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cdrom.8.xml:121 @@ -2154,10 +2210,11 @@ msgid "" "been run on this disc before and did not detect any errors. Configuration " "Item: <literal>APT::CDROM::Fast</literal>." msgstr "" -"Schnelle Kopie. Unterstellt, dass die Paketdateien g??ltig sind und pr??ft " -"nicht jedes Paket. Diese Option sollte nur benutzt werden, wenn <command>apt-" -"cdrom</command> vorher f??r dieses Medium ausgef??hrt wurde und keine Fehler " -"festgestellt hat. Konfigurationselement: <literal>APT::CDROM::Fast</literal>." +"Schnelle Kopie. Unterstellt, dass die Paketdateien gültig sind und prüft " +"nicht jedes Paket. Diese Option sollte nur benutzt werden, wenn " +"<command>apt-cdrom</command> vorher für dieses Medium ausgeführt wurde und " +"keine Fehler festgestellt hat. Konfigurationselement: " +"<literal>APT::CDROM::Fast</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cdrom.8.xml:131 @@ -2171,9 +2228,10 @@ msgid "" "1.1/1.2 discs that have Package files in strange places. It takes much " "longer to scan the CD but will pick them all up." msgstr "" -"Gr??ndliche Paketdurchsuchung. Diese Option k??nnte f??r einige alte Debian-" -"1.1/1.2-Medien n??tig sein, die Paketdateien an seltsamen Orten haben. Dies " -"verl??ngert das Durchsuchen des Mediums deutlich, nimmt aber alle auf." +"Gründliche Paketdurchsuchung. Diese Option könnte für einige alte " +"Debian-1.1/1.2-Medien nötig sein, die Paketdateien an seltsamen Orten " +"haben. Dies verlängert das Durchsuchen des Mediums deutlich, nimmt aber " +"alle auf." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cdrom.8.xml:140 apt-get.8.xml:378 @@ -2197,8 +2255,8 @@ msgid "" "files. Everything is still checked however. Configuration Item: " "<literal>APT::CDROM::NoAct</literal>." msgstr "" -"Keine ??nderungen. Die &sources-list;-Datei nicht ??ndern und keine " -"Indexdateien schreiben. Alles wird jedoch immer noch gepr??ft. " +"Keine Änderungen. Die &sources-list;-Datei nicht ändern und keine " +"Indexdateien schreiben. Alles wird jedoch immer noch geprüft. " "Konfigurationselement: <literal>APT::CDROM::NoAct</literal>." #. type: Content of: <refentry><refsect1><para> @@ -2212,7 +2270,7 @@ msgid "" "<command>apt-cdrom</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" -"<command>apt-cdrom</command> gibt bei normalen Operationen 0 zur??ck, " +"<command>apt-cdrom</command> gibt bei normalen Operationen 0 zurück, " "dezimal 100 bei Fehlern." #. type: Content of: <refentry><refnamediv><refname> @@ -2228,15 +2286,15 @@ msgstr "APT-Konfigurationsabfrageprogramm" #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-config.8.xml:36 msgid "" -"<command>apt-config</command> <arg><option>-hv</option></arg> <arg><option>-" -"o=<replaceable>config string</replaceable></option></arg> <arg><option>-" -"c=<replaceable>file</replaceable></option></arg> <group choice=\"req\"> " -"<arg>shell</arg> <arg>dump</arg> </group>" +"<command>apt-config</command> <arg><option>-hv</option></arg> " +"<arg><option>-o=<replaceable>config string</replaceable></option></arg> " +"<arg><option>-c=<replaceable>file</replaceable></option></arg> <group " +"choice=\"req\"> <arg>shell</arg> <arg>dump</arg> </group>" msgstr "" -"<command>apt-config</command><arg><option>-hv</option></arg><arg><option>-" -"o=<replaceable>Konfigurationszeichenkette</replaceable></option></" -"arg><arg><option>-c=<replaceable>Datei</replaceable></option></arg><group " -"choice=\"req\"> <arg>shell</arg> <arg>Abbild</arg> </group>" +"<command>apt-config</command><arg><option>-hv</option></arg><arg>" +"<option>-o=<replaceable>Konfigurationszeichenkette</replaceable></option>" +"</arg><arg><option>-c=<replaceable>Datei</replaceable></option></arg>" +"<group choice=\"req\"> <arg>shell</arg> <arg>Abbild</arg> </group>" #. type: Content of: <refentry><refsect1><para> #: apt-config.8.xml:48 @@ -2247,10 +2305,10 @@ msgid "" "manner that is easy to use by scripted applications." msgstr "" "<command>apt-config</command> ist ein internes Programm, das von vielen " -"Teilen des APT-Pakets benutzt wird, um durchg??ngige Konfigurierbarkeit " -"bereitzustellen. Es greift auf die Hauptkonfigurationsdatei <filename>/etc/" -"apt/apt.conf</filename> auf eine Art zu, die leicht f??r geskriptete " -"Anwendungen zu benutzen ist." +"Teilen des APT-Pakets benutzt wird, um durchgängige Konfigurierbarkeit " +"bereitzustellen. Es greift auf die Hauptkonfigurationsdatei " +"<filename>/etc/apt/apt.conf</filename> auf eine Art zu, die leicht für " +"geskriptete Anwendungen zu benutzen ist." #. type: Content of: <refentry><refsect1><para> #: apt-config.8.xml:53 apt-ftparchive.1.xml:71 @@ -2258,7 +2316,7 @@ msgid "" "Unless the <option>-h</option>, or <option>--help</option> option is given " "one of the commands below must be present." msgstr "" -"Au??er, wenn die <option>-h</option>- oder <option>--help</option>-Option " +"Außer, wenn die <option>-h</option>- oder <option>--help</option>-Option " "angegeben wurde, muss einer der Befehle unterhalb vorkommen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -2269,18 +2327,18 @@ msgstr "shell" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:60 msgid "" -"shell is used to access the configuration information from a shell script. " -"It is given pairs of arguments, the first being a shell variable and the " -"second the configuration value to query. As output it lists a series of " +"shell is used to access the configuration information from a shell " +"script. It is given pairs of arguments, the first being a shell variable and " +"the second the configuration value to query. As output it lists a series of " "shell assignments commands for each present value. In a shell script it " "should be used like:" msgstr "" -"shell wird benutzt, um aus einem Shellskript auf Konfigurationsinformationen " -"zuzugreifen. Es wird ein Paar aus Argumenten angegeben ??? das erste als " -"Shell-Variable und das zweite als Konfigurationswert zum Abfragen. Als " -"Ausgabe listet es eine Serie von Shell-Zuweisungsbefehlen f??r jeden " -"vorhandenen Wert auf. In einen Shellskript sollte es wie folgt benutzt " -"werden:" +"shell wird benutzt, um aus einem Shellskript auf " +"Konfigurationsinformationen zuzugreifen. Es wird ein Paar aus Argumenten " +"angegeben – das erste als Shell-Variable und das zweite als " +"Konfigurationswert zum Abfragen. Als Ausgabe listet es eine Serie von " +"Shell-Zuweisungsbefehlen für jeden vorhandenen Wert auf. In einen " +"Shellskript sollte es wie folgt benutzt werden:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> #: apt-config.8.xml:68 @@ -2297,11 +2355,11 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:73 msgid "" -"This will set the shell environment variable $OPTS to the value of MyApp::" -"options with a default of <option>-f</option>." +"This will set the shell environment variable $OPTS to the value of " +"MyApp::options with a default of <option>-f</option>." msgstr "" -"Dies wird die Shell-Umgebungsvariable $OPT auf den Wert von MyApp::options " -"mit einer Vorgabe von <option>-f</option> setzen." +"Dies wird die Shell-Umgebungsvariable $OPT auf den Wert von " +"MyApp::options mit einer Vorgabe von <option>-f</option> setzen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:77 @@ -2310,10 +2368,10 @@ msgid "" "names, d returns directories, b returns true or false and i returns an " "integer. Each of the returns is normalized and verified internally." msgstr "" -"An das Konfigurationselement kann /[fdbi] angeh??ngt werden. f gibt " -"Dateinamen zur??ck, d gibt Verzeichnisse zur??ck, b gibt true oder false " -"zur??ck und i gibt eine Ganzzahl zur??ck. Jede R??ckgabe ist normiert und " -"intern gepr??ft." +"An das Konfigurationselement kann /[fdbi] angehängt werden. " +"f gibt Dateinamen zurück, d gibt Verzeichnisse zurück, b gibt true oder " +"false zurück und i gibt eine Ganzzahl zurück. Jede Rückgabe ist normiert " +"und intern geprüft." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:86 @@ -2321,8 +2379,7 @@ msgid "Just show the contents of the configuration space." msgstr "Nur der Inhalt des Konfigurationsbereichs wird angezeigt." #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:104 apt-extracttemplates.1.xml:75 apt-ftparchive.1.xml:564 -#: apt-sortpkgs.1.xml:70 +#: apt-config.8.xml:104 apt-extracttemplates.1.xml:75 apt-ftparchive.1.xml:564 apt-sortpkgs.1.xml:70 msgid "&apt-conf;" msgstr "&apt-conf;" @@ -2332,7 +2389,7 @@ msgid "" "<command>apt-config</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" -"<command>apt-config</command> gibt bei normalen Operationen 0 zur??ck, " +"<command>apt-config</command> gibt bei normalen Operationen 0 zurück, " "dezimal 100 bei Fehlern." #. type: Content of: <refentry><refnamediv><refname> @@ -2349,21 +2406,21 @@ msgstr "1" #: apt-extracttemplates.1.xml:30 msgid "Utility to extract DebConf config and templates from Debian packages" msgstr "" -"Hilfsprogramm zum Extrahieren der DebConf-Konfiguration und Schablonen von " -"Debian-Paketen" +"Hilfsprogramm zum Extrahieren der DebConf-Konfiguration und Schablonen " +"von Debian-Paketen" #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-extracttemplates.1.xml:36 msgid "" "<command>apt-extracttemplates</command> <arg><option>-hv</option></arg> " -"<arg><option>-t=<replaceable>temporary directory</replaceable></option></" -"arg> <arg choice=\"plain\" rep=\"repeat\"><replaceable>file</replaceable></" -"arg>" +"<arg><option>-t=<replaceable>temporary " +"directory</replaceable></option></arg> <arg choice=\"plain\" " +"rep=\"repeat\"><replaceable>file</replaceable></arg>" msgstr "" "<command>apt-extracttemplates</command> <arg><option>-hv</option></arg> " -"<arg><option>-t=<replaceable>tempor??res Verzeichnis</replaceable></option></" -"arg> <arg choice=\"plain\" rep=\"repeat\"><replaceable>Datei</replaceable></" -"arg>" +"<arg><option>-t=<replaceable>temporäres " +"Verzeichnis</replaceable></option></arg> <arg choice=\"plain\" " +"rep=\"repeat\"><replaceable>Datei</replaceable></arg>" #. type: Content of: <refentry><refsect1><para> #: apt-extracttemplates.1.xml:44 @@ -2374,11 +2431,11 @@ msgid "" "config scripts and templates, one line of output will be generated in the " "format:" msgstr "" -"<command>apt-extracttemplates</command> nimmt als Eingabe ein oder mehrere " -"Debian-Paketdateien entgegen und schreibt alle verbundenen " -"Konfigurationsskripte und Schablonendateien (in ein tempor??res Verzeichnis) " -"heraus. F??r jedes ??bergebene Paket das Konfigurationsskripte und " -"Schablonendateien enth??lt, wird eine Ausgabezeile in folgendem Format " +"<command>apt-extracttemplates</command> nimmt als Eingabe ein oder " +"mehrere Debian-Paketdateien entgegen und schreibt alle verbundenen " +"Konfigurationsskripte und Schablonendateien (in ein temporäres " +"Verzeichnis) heraus. Für jedes übergebene Paket das Konfigurationsskripte " +"und Schablonendateien enthält, wird eine Ausgabezeile in folgendem Format " "generiert:" #. type: Content of: <refentry><refsect1><para> @@ -2390,15 +2447,16 @@ msgstr "Paket Version Schablonendatei Konfigurationsskript" #: apt-extracttemplates.1.xml:50 msgid "" "template-file and config-script are written to the temporary directory " -"specified by the -t or --tempdir (<literal>APT::ExtractTemplates::TempDir</" -"literal>) directory, with filenames of the form <filename>package.template." -"XXXX</filename> and <filename>package.config.XXXX</filename>" +"specified by the -t or --tempdir " +"(<literal>APT::ExtractTemplates::TempDir</literal>) directory, with " +"filenames of the form <filename>package.template.XXXX</filename> and " +"<filename>package.config.XXXX</filename>" msgstr "" -"Schablonendatei und Konfigurationsskript werden in das tempor??re " -"Verzeichnis geschrieben, das durch -t oder --tempdir (<literal>APT::" -"ExtractTemplates::TempDir</literal>) Verzeichnis mit Dateinamen der Form " -"<filename>package.template.XXXX</filename> und <filename>package.config." -"XXXX</filename> angegeben wurde" +"Schablonendatei und Konfigurationsskript werden in das temporäre " +"Verzeichnis geschrieben, das durch -t oder --tempdir " +"(<literal>APT::ExtractTemplates::TempDir</literal>) Verzeichnis mit " +"Dateinamen der Form <filename>package.template.XXXX</filename> und " +"<filename>package.config.XXXX</filename> angegeben wurde" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-extracttemplates.1.xml:60 apt-get.8.xml:488 @@ -2414,10 +2472,10 @@ msgstr "<option>--tempdir</option>" #: apt-extracttemplates.1.xml:62 msgid "" "Temporary directory in which to write extracted debconf template files and " -"config scripts Configuration Item: <literal>APT::ExtractTemplates::TempDir</" -"literal>" +"config scripts Configuration Item: " +"<literal>APT::ExtractTemplates::TempDir</literal>" msgstr "" -"Tempor??res Verzeichnis, in das die extrahierten DebConf-Schablonendateien " +"Temporäres Verzeichnis, in das die extrahierten DebConf-Schablonendateien " "und Konfigurationsdateien geschrieben werden. Konfigurationselement: " "<literal>APT::ExtractTemplates::TempDir</literal>" @@ -2427,8 +2485,8 @@ msgid "" "<command>apt-extracttemplates</command> returns zero on normal operation, " "decimal 100 on error." msgstr "" -"<command>apt-extracttemplates</command> gibt bei normalen Operationen 0 zur??" -"ck, dezimal 100 bei Fehlern." +"<command>apt-extracttemplates</command> gibt bei normalen Operationen 0 " +"zurück, dezimal 100 bei Fehlern." #. type: Content of: <refentry><refnamediv><refname> #: apt-ftparchive.1.xml:22 apt-ftparchive.1.xml:29 @@ -2463,23 +2521,27 @@ msgid "" 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>--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\" " -"rep=\"repeat\"><replaceable>Abschnitt</replaceable></arg></arg> <arg>clean " -"<arg choice=\"plain\"><replaceable>Konfigurationsdatei</replaceable></arg></" -"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\" rep=\"repeat\"><replaceable>Abschnitt</replaceable>" +"</arg></arg> <arg>clean " +"<arg choice=\"plain\"><replaceable>Konfigurationsdatei</replaceable>" +"</arg></arg></group>" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:56 @@ -2498,15 +2560,15 @@ msgstr "" #: apt-ftparchive.1.xml:60 msgid "" "<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; " -"program, incorporating its entire functionality via the <literal>packages</" -"literal> command. It also contains a contents file generator, " -"<literal>contents</literal>, and an elaborate means to 'script' the " -"generation process for a complete archive." +"program, incorporating its entire functionality via the " +"<literal>packages</literal> command. It also contains a contents file " +"generator, <literal>contents</literal>, and an elaborate means to 'script' " +"the generation process for a complete archive." msgstr "" -"<command>apt-ftparchive</command> ist eine Obermenge des &dpkg-scanpackages;-" -"Programms, das dessen ganze Funktionalit??t ??ber den <literal>packages</" -"literal>-Befehl enth??lt ist ein durchdachtes Mittel den Generierungsprozess " -"f??r ein komplettes Archiv zu ??skripten??." +"<command>apt-ftparchive</command> ist eine Obermenge des " +"&dpkg-scanpackages;-Programms, das dessen ganze Funktionalität über den " +"<literal>packages</literal>-Befehl enthält ist ein durchdachtes Mittel " +"den Generierungsprozess für ein komplettes Archiv zu »skripten«." #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:66 @@ -2517,12 +2579,12 @@ msgid "" "automatically performs file-change checks and builds the desired compressed " "output files." msgstr "" -"Intern kann <command>apt-ftparchive</command> von Programmdatenb??nken " -"Gebrauch machen, um die Inhalte einer .deb-Datei zwischenzuspeichern und es " -"verl??sst sich nicht auf irgendwelche externen Programme, abgesehen von " -"&gzip;. Wenn eine vollst??ndige Generierung erfolgt, werden automatisch " -"Datei??nderungspr??fungen durchgef??hrt und die gew??nschten gepackten " -"Ausgabedateien erzeugt." +"Intern kann <command>apt-ftparchive</command> von Programmdatenbänken " +"Gebrauch machen, um die Inhalte einer .deb-Datei zwischenzuspeichern " +"und es verlässt sich nicht auf irgendwelche externen Programme, " +"abgesehen von &gzip;. Wenn eine vollständige Generierung erfolgt, werden " +"automatisch Dateiänderungsprüfungen durchgeführt und die gewünschten " +"gepackten Ausgabedateien erzeugt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:75 @@ -2537,18 +2599,17 @@ msgid "" "emitting a package record to stdout for each. This command is approximately " "equivalent to &dpkg-scanpackages;." msgstr "" -"Der packages-Befehl generiert eine Paketdatei aus einem Verzeichnisbaum. Er " -"nimmt ein vorgegebenes Verzeichnis und durchsucht es rekursiv nach .deb-" -"Dateien, wobei es f??r jede einen Paketdatensatz auf stdout ausgibt.Dieser " -"Befehl entspricht etwa &dpkg-scanpackages;." +"Der packages-Befehl generiert eine Paketdatei aus einem Verzeichnisbaum. " +"Er nimmt ein vorgegebenes Verzeichnis und durchsucht es rekursiv nach " +".deb-Dateien, wobei es für jede einen Paketdatensatz auf stdout ausgibt." +"Dieser Befehl entspricht etwa &dpkg-scanpackages;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:82 apt-ftparchive.1.xml:106 -msgid "" -"The option <option>--db</option> can be used to specify a binary caching DB." +msgid "The option <option>--db</option> can be used to specify a binary caching DB." msgstr "" -"Die Option <option>--db</option> kann benutzt werden, um eine Datenbank zum " -"Zwischenspeichern von Programmen anzugeben." +"Die Option <option>--db</option> kann benutzt werden, um eine Datenbank " +"zum Zwischenspeichern von Programmen anzugeben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:85 @@ -2563,10 +2624,11 @@ msgid "" "for .dsc files, emitting a source record to stdout for each. This command is " "approximately equivalent to &dpkg-scansources;." msgstr "" -"Der <literal>sources</literal>-Befehl generiert eine Quellenindexdatei aus " -"einem Verzeichnisbaum. Er nimmt ein vorgegebenes Verzeichnis und durchsucht " -"es rekursiv nach .dsc-Dateien, wobei es f??r jede einen Quelldatensatz auf " -"stdout ausgibt. Dieser Befehl entspricht etwa &dpkg-scansources;." +"Der <literal>sources</literal>-Befehl generiert eine Quellenindexdatei " +"aus einem Verzeichnisbaum. Er nimmt ein vorgegebenes Verzeichnis und " +"durchsucht es rekursiv nach .dsc-Dateien, wobei es für jede einen " +"Quelldatensatz auf stdout ausgibt. Dieser Befehl entspricht etwa " +"&dpkg-scansources;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:92 @@ -2575,9 +2637,10 @@ msgid "" "for with an extension of .src. The --source-override option can be used to " "change the source override file that will be used." msgstr "" -"Wenn eine Override-Datei angegeben ist, wird nach einer Quellen-Override-" -"Datei mit einer .src-Dateiendung gesucht. Die Option --source-override kann " -"benutzt werden, um die Quellen-Override-Datei, die benutzt wird, zu ??ndern." +"Wenn eine Override-Datei angegeben ist, wird nach einer " +"Quellen-Override-Datei mit einer .src-Dateiendung gesucht. Die Option " +"--source-override kann benutzt werden, um die Quellen-Override-Datei, die " +"benutzt wird, zu ändern." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:97 @@ -2588,19 +2651,19 @@ msgstr "contents" #: apt-ftparchive.1.xml:99 msgid "" "The <literal>contents</literal> command generates a contents file from a " -"directory tree. It takes the given directory and recursively searches it " -"for .deb files, and reads the file list from each file. It then sorts and " -"writes to stdout the list of files matched to packages. Directories are not " -"written to the output. If multiple packages own the same file then each " -"package is separated by a comma in the output." +"directory tree. It takes the given directory and recursively searches it for " +".deb files, and reads the file list from each file. It then sorts and writes " +"to stdout the list of files matched to packages. Directories are not written " +"to the output. If multiple packages own the same file then each package is " +"separated by a comma in the output." msgstr "" -"Der <literal>contents</literal>-Befehl generiert eine Inhaltsdatei aus einem " -"Verzeichnisbaum. Er nimmt ein vorgegebenes Verzeichnis und durchsucht es " -"rekursiv nach .deb-Dateien und liest die Dateiliste von jeder Datei. Dann " -"sortiert er die Liste der passenden Pakete und schreibt sie nach stdout. " -"Verzeichnisse werden nicht in die Ausgabe geschrieben. Falls mehrere Pakete " -"die gleiche Datei besitzen, dann befindet sich jedes Paket durch Komma " -"getrennt in der Ausgabe." +"Der <literal>contents</literal>-Befehl generiert eine Inhaltsdatei aus " +"einem Verzeichnisbaum. Er nimmt ein vorgegebenes Verzeichnis und " +"durchsucht es rekursiv nach .deb-Dateien und liest die Dateiliste von " +"jeder Datei. Dann sortiert er die Liste der passenden Pakete und schreibt " +"sie nach stdout. Verzeichnisse werden nicht in die Ausgabe geschrieben. " +"Falls mehrere Pakete die gleiche Datei besitzen, dann befindet sich jedes " +"Paket durch Komma getrennt in der Ausgabe." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:109 @@ -2616,28 +2679,32 @@ msgid "" "md5sum.txt files. It then writes to stdout a Release file containing an MD5 " "digest and SHA1 digest for each file." 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 " -"stdout, die einen MD5- und SHA1-Hash f??r jede Datei enth??lt." +"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 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:118 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>." -msgstr "" -"Werte f??r zus??tzliche Metadatenfelder in der Release-Datei werden den " -"entsprechenden Variablen unter <literal>APT::FTPArchive::Release</literal> " -"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>, " +"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>." +msgstr "" +"Werte für zusätzliche Metadatenfelder in der Release-Datei werden den " +"entsprechenden Variablen unter " +"<literal>APT::FTPArchive::Release</literal> 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>Description</literal>." @@ -2656,12 +2723,12 @@ msgid "" "are built from which directories, as well as providing a simple means of " "maintaining the required settings." msgstr "" -"Der <literal>generate</literal>-Befehl wurde entworfen, um von einem Cron-" -"Skript ausf??hrbar zu sein und bildet Indizes, die der angegebenen " +"Der <literal>generate</literal>-Befehl wurde entworfen, um von einem " +"Cron-Skript ausführbar zu sein und bildet Indizes, die der angegebenen " "Konfigurationsdatei entsprechen. Die Konfigurationssprache stellt eine " -"flexible M??glichkeit bereit, um anzugeben, welche Indexdateien von welchen " -"Verzeichnissen gebildet wurden, ebenso wie sie eine einfache M??glichkeit " -"zur Verwaltung der erforderlichen Einstellungen bereitstellt." +"flexible Möglichkeit bereit, um anzugeben, welche Indexdateien von " +"welchen Verzeichnissen gebildet wurden, ebenso wie sie eine einfache " +"Möglichkeit zur Verwaltung der erforderlichen Einstellungen bereitstellt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:137 apt-get.8.xml:292 @@ -2674,9 +2741,9 @@ msgid "" "The <literal>clean</literal> command tidies the databases used by the given " "configuration file by removing any records that are no longer necessary." msgstr "" -"Der <literal>clean</literal>-Befehl r??umt die Datenbanken auf, die von der " -"angegebenen Konfigurationsdatei benutzt wurden, indem es nicht l??nger n??" -"tige Datens??tze entfernt." +"Der <literal>clean</literal>-Befehl räumt die Datenbanken auf, die von " +"der angegebenen Konfigurationsdatei benutzt wurden, indem es nicht länger " +"nötige Datensätze entfernt." #. type: Content of: <refentry><refsect1><title> #: apt-ftparchive.1.xml:145 @@ -2688,23 +2755,22 @@ msgstr "Die Generate-Konfiguration" msgid "" "The <literal>generate</literal> command uses a configuration file to " "describe the archives that are going to be generated. It follows the typical " -"ISC configuration format as seen in ISC tools like bind 8 and dhcpd. &apt-" -"conf; contains a description of the syntax. Note that the generate " +"ISC configuration format as seen in ISC tools like bind 8 and dhcpd. " +"&apt-conf; contains a description of the syntax. Note that the generate " "configuration is parsed in sectional manner, but &apt-conf; is parsed in a " "tree manner. This only effects how the scope tag is handled." msgstr "" -"Der <literal>generate</literal>-Befehl benutzt eine Konfigurationsdatei, um " -"die Archive zu beschreiben, die generiert werden sollen. Es folgt dem " -"typischen ISC-Konfigurationsformat, wie es in ISC-Werkzeugen wie Bind 8 oder " -"DHCP gesehen werden kann. &apt-conf; enth??lt eine Beschreibung der Syntax. " -"Beachten Sie, dass die generate-Konfiguration abschnittsweise ausgewertet " -"wird, &apt-conf; aber baumartig ausgewertet wird. Dies hat nur Auswirkungen, " -"wenn die Markierung ??scope?? behandelt wird." +"Der <literal>generate</literal>-Befehl benutzt eine Konfigurationsdatei, " +"um die Archive zu beschreiben, die generiert werden sollen. Es folgt dem " +"typischen ISC-Konfigurationsformat, wie es in ISC-Werkzeugen wie Bind 8 " +"oder DHCP gesehen werden kann. &apt-conf; enthält eine Beschreibung der " +"Syntax. Beachten Sie, dass die generate-Konfiguration abschnittsweise " +"ausgewertet wird, &apt-conf; aber baumartig ausgewertet wird. Dies hat " +"nur Auswirkungen, wenn die Markierung »scope« behandelt wird." #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:155 -msgid "" -"The generate configuration has 4 separate sections, each described below." +msgid "The generate configuration has 4 separate sections, each described below." msgstr "" "Die generate-Konfiguration hat vier getrennte Abschnitte, jeder ist " "unterhalb beschrieben" @@ -2722,11 +2788,11 @@ msgid "" "directories are prepended to certain relative paths defined in later " "sections to produce a complete an absolute path." msgstr "" -"Der <literal>Dir</literal>-Abschnitt definiert die Vorgabeverzeichnisse, die " -"zum Orten der ben??tigten Dateien w??hrend des Generierungsprozesses " +"Der <literal>Dir</literal>-Abschnitt definiert die Vorgabeverzeichnisse, " +"die zum Orten der benötigten Dateien während des Generierungsprozesses " "gebraucht werden. Diese Verzeichnisse werden bestimmten relativen Pfaden, " -"die in sp??teren Abschnitten definiert werden, vorangestellt, um einen " -"vollst??ndigen absoluten Pfad zu bilden." +"die in späteren Abschnitten definiert werden, vorangestellt, um einen " +"vollständigen absoluten Pfad zu bilden." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:164 @@ -2740,9 +2806,9 @@ msgid "" "this is the directory that contains the <filename>ls-LR</filename> and dist " "nodes." msgstr "" -"Gibt die Wurzel des FTP-Archivs an. In einer Debian-Standardkonfiguration " -"ist das das Verzeichnis, das die <filename>ls-LR</filename>- und dist-Knoten " -"enth??lt." +"Gibt die Wurzel des FTP-Archivs an. In einer " +"Debian-Standardkonfiguration ist das das Verzeichnis, das die " +"<filename>ls-LR</filename>- und dist-Knoten enthält." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:171 @@ -2772,11 +2838,11 @@ msgstr "FileListDir" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:183 msgid "" -"Specifies the location of the file list files, if the <literal>FileList</" -"literal> setting is used below." +"Specifies the location of the file list files, if the " +"<literal>FileList</literal> setting is used below." msgstr "" -"Gibt den Ort der Dateilistendateien an, wenn die <literal>FileList</literal> " -"unterhalb gesetzt ist." +"Gibt den Ort der Dateilistendateien an, wenn die " +"<literal>FileList</literal> unterhalb gesetzt ist." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt-ftparchive.1.xml:189 @@ -2791,8 +2857,8 @@ msgid "" "override these defaults with a per-section setting." msgstr "" "Der <literal>Default</literal>-Abschnitt gibt Vorgabewerte an und " -"Einstellungen, die den Betrieb des Generators steuern. Andere Abschnitte k??" -"nnen diese Vorgaben mit einer Einstellung pro Abschnitt ??berschreiben." +"Einstellungen, die den Betrieb des Generators steuern. Andere Abschnitte " +"können diese Vorgaben mit einer Einstellung pro Abschnitt überschreiben." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:195 @@ -2807,11 +2873,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 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«." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:203 @@ -2825,7 +2891,7 @@ msgid "" "defaults to '.deb'." msgstr "" "Setzt die Vorgabeliste von Dateierweiterungen, die Paketdateien sind. " -"Vorgabe ist ??.deb??." +"Vorgabe ist ».deb«." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:209 @@ -2838,7 +2904,7 @@ msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Sources files." msgstr "" -"Dies ist <literal>Packages::Compress</literal> ??hnlich, au??er dass es die " +"Dies ist <literal>Packages::Compress</literal> ähnlich, außer dass es die " "Kompression der Quelldateien steuert." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> @@ -2853,7 +2919,7 @@ msgid "" "defaults to '.dsc'." msgstr "" "Setzt die Vorgabeliste von Dateierweiterungen, die Quelldateien sind. " -"Vorgabe ist ??.dsc??." +"Vorgabe ist ».dsc«." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:221 @@ -2866,7 +2932,7 @@ msgid "" "This is similar to <literal>Packages::Compress</literal> except that it " "controls the compression for the Contents files." msgstr "" -"Dies ist <literal>Packages::Compress</literal> ??hnlich, au??er dass es die " +"Dies ist <literal>Packages::Compress</literal> ähnlich, außer dass es die " "Kompression der Inhaltsdateien steuert." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> @@ -2878,8 +2944,8 @@ msgstr "DeLinkLimit" #: apt-ftparchive.1.xml:229 msgid "" "Specifies the number of kilobytes to delink (and replace with hard links) " -"per run. This is used in conjunction with the per-section <literal>External-" -"Links</literal> setting." +"per run. This is used in conjunction with the per-section " +"<literal>External-Links</literal> setting." msgstr "" "Gibt die Anzahl von Kilobytes an, die pro Durchlauf delinkt (und durch " "Hardlinks ersetzt) werden sollen. Dies wird in Verbindung mit der " @@ -2896,8 +2962,9 @@ msgid "" "Specifies the mode of all created index files. It defaults to 0644. All " "index files are set to this mode with no regard to the umask." msgstr "" -"Gibt die Rechte f??r alle erstellten Indexdateien an. Vorgabe ist 0644. Alle " -"Indexdateien werden ohne Beachtung von umask auf diese Rechte gesetzt." +"Gibt die Rechte für alle erstellten Indexdateien an. Vorgabe ist 0644. " +"Alle Indexdateien werden ohne Beachtung von umask auf diese Rechte " +"gesetzt." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt-ftparchive.1.xml:243 @@ -2911,7 +2978,7 @@ msgid "" "variables are substitution variables and have the strings $(DIST), " "$(SECTION) and $(ARCH) replaced with their respective values." msgstr "" -"Setzt Vorgaben speziell f??r <literal>Tree</literal>-Abschnitte. All diese " +"Setzt Vorgaben speziell für <literal>Tree</literal>-Abschnitte. All diese " "Variablen sind Platzhaltervariablen und haben die Zeichenketten $(DIST), " "$(SECTION) und $(ARCH) durch ihre jeweiligen Werte ersetzt." @@ -2923,12 +2990,12 @@ msgstr "MaxContentsChange" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:252 msgid "" -"Sets the number of kilobytes of contents files that are generated each day. " -"The contents files are round-robined so that over several days they will all " -"be rebuilt." +"Sets the number of kilobytes of contents files that are generated each " +"day. The contents files are round-robined so that over several days they " +"will all be rebuilt." msgstr "" "Setzt die Anzahl der Kilobytes der Inhaltdateien, die jeden Tag generiert " -"werden. Die Inhaltdateien werden reihum ersetzt, so dass sie ??ber mehrere " +"werden. Die Inhaltdateien werden reihum ersetzt, so dass sie über mehrere " "Tage alle neu gebildet werden." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> @@ -2940,20 +3007,20 @@ msgstr "ContentsAge" #: apt-ftparchive.1.xml:259 msgid "" "Controls the number of days a contents file is allowed to be checked without " -"changing. If this limit is passed the mtime of the contents file is updated. " -"This case can occur if the package file is changed in such a way that does " -"not result in a new contents file [override edit for instance]. A hold off " -"is allowed in hopes that new .debs will be installed, requiring a new file " -"anyhow. The default is 10, the units are in days." -msgstr "" -"Steuert die Anzahl der Tage, die eine Inhaltsdatei erlaubt ist ohne ??" -"nderung gepr??ft zu werden. Wenn die Grenze ??berschritten ist, wird die " +"changing. If this limit is passed the mtime of the contents file is " +"updated. This case can occur if the package file is changed in such a way " +"that does not result in a new contents file [override edit for instance]. A " +"hold off is allowed in hopes that new .debs will be installed, requiring a " +"new file anyhow. The default is 10, the units are in days." +msgstr "" +"Steuert die Anzahl der Tage, die eine Inhaltsdatei erlaubt ist ohne " +"Änderung geprüft zu werden. Wenn die Grenze überschritten ist, wird die " "mtime der Inhaltsdatei aktualisiert. Dieser Fall kann auftreten, wenn die " -"Package-Datei auf einem Weg ge??ndert wurde, der nicht in einer neuen " -"Inhaltsdatei resultierte [??berschreibendes Bearbeiten zum Beispiel]. Ein " -"Aufhalten ist erlaubt, in der Hoffnung dass neue .debs installiert werden, " -"die sowieso eine neue Datei ben??tigen. Die Vorgabe ist 10, die Einheiten " -"sind Tage." +"Package-Datei auf einem Weg geändert wurde, der nicht in einer neuen " +"Inhaltsdatei resultierte [überschreibendes Bearbeiten zum Beispiel]. Ein " +"Aufhalten ist erlaubt, in der Hoffnung dass neue .debs installiert " +"werden, die sowieso eine neue Datei benötigen. Die Vorgabe ist 10, die " +"Einheiten sind Tage." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:268 @@ -2963,11 +3030,11 @@ msgstr "Directory" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:270 msgid "" -"Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/" -"$(SECTION)/binary-$(ARCH)/</filename>" +"Sets the top of the .deb directory tree. Defaults to " +"<filename>$(DIST)/$(SECTION)/binary-$(ARCH)/</filename>" msgstr "" -"Setzt den Beginn des .deb-Verzeichnisbaumes. Vorgabe ist <filename>$(DIST)/" -"$(SECTION)/binary-$(ARCH)/</filename>" +"Setzt den Beginn des .deb-Verzeichnisbaumes. Vorgabe ist " +"<filename>$(DIST)/$(SECTION)/binary-$(ARCH)/</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:274 @@ -2977,11 +3044,11 @@ msgstr "SrcDirectory" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:276 msgid "" -"Sets the top of the source package directory tree. Defaults to <filename>" -"$(DIST)/$(SECTION)/source/</filename>" +"Sets the top of the source package directory tree. Defaults to " +"<filename>$(DIST)/$(SECTION)/source/</filename>" msgstr "" -"Setzt den Beginn des Quellpaketverzeichnisbaumes. Vorgabe ist <filename>" -"$(DIST)/$(SECTION)/source/</filename>" +"Setzt den Beginn des Quellpaketverzeichnisbaumes. Vorgabe ist " +"<filename>$(DIST)/$(SECTION)/source/</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:280 apt-ftparchive.1.xml:406 @@ -2991,11 +3058,11 @@ msgstr "Packages" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:282 msgid "" -"Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" -"binary-$(ARCH)/Packages</filename>" +"Sets the output Packages file. Defaults to " +"<filename>$(DIST)/$(SECTION)/binary-$(ARCH)/Packages</filename>" msgstr "" -"Setzt die Ausgabe-Packages-Datei. Vorgabe ist <filename>$(DIST)/$(SECTION)/" -"binary-$(ARCH)/Packages</filename>" +"Setzt die Ausgabe-Packages-Datei. Vorgabe ist " +"<filename>$(DIST)/$(SECTION)/binary-$(ARCH)/Packages</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:286 apt-ftparchive.1.xml:411 @@ -3005,11 +3072,11 @@ msgstr "Sources" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:288 msgid "" -"Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" -"source/Sources</filename>" +"Sets the output Packages file. Defaults to " +"<filename>$(DIST)/$(SECTION)/source/Sources</filename>" msgstr "" -"Setzt die Ausgabe-Packages-Datei. Vorgabe ist <filename>$(DIST)/$(SECTION)/" -"source/Sources</filename>" +"Setzt die Ausgabe-Packages-Datei. Vorgabe ist " +"<filename>$(DIST)/$(SECTION)/source/Sources</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:292 @@ -3020,11 +3087,11 @@ msgstr "InternalPrefix" #: apt-ftparchive.1.xml:294 msgid "" "Sets the path prefix that causes a symlink to be considered an internal link " -"instead of an external link. Defaults to <filename>$(DIST)/$(SECTION)/</" -"filename>" +"instead of an external link. Defaults to " +"<filename>$(DIST)/$(SECTION)/</filename>" msgstr "" -"Setzt die Pfad-Pr??fix, die bewirkt, dass ein symbolischer Verweis wie ein " -"interner anstatt wie ein externer Verweis behandelt wird. Vorgabe ist " +"Setzt die Pfad-Präfix, die bewirkt, dass ein symbolischer Verweis wie " +"ein interner anstatt wie ein externer Verweis behandelt wird. Vorgabe ist " "<filename>$(DIST)/$(SECTION)/</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> @@ -3035,16 +3102,17 @@ msgstr "Contents" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:301 msgid "" -"Sets the output Contents file. Defaults to <filename>$(DIST)/Contents-$(ARCH)" -"</filename>. If this setting causes multiple Packages files to map onto a " -"single Contents file (such as the default) then <command>apt-ftparchive</" -"command> will integrate those package files together automatically." +"Sets the output Contents file. Defaults to " +"<filename>$(DIST)/Contents-$(ARCH)</filename>. If this setting causes " +"multiple Packages files to map onto a single Contents file (such as the " +"default) then <command>apt-ftparchive</command> will integrate those " +"package files together automatically." 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 " -"Vorgabe ist), dann wird <command>apt-ftparchive</command> diese Dateien " -"automatisch integrieren." +"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 Vorgabe ist), dann wird " +"<command>apt-ftparchive</command> diese Dateien automatisch integrieren." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:308 @@ -3068,7 +3136,7 @@ msgid "" "can share the same database." msgstr "" "Setzt die Programmzwischenspeicherdatenbank zur Benutzung in diesem " -"Abschnitt. Mehrere Abschnitte k??nnen sich die gleiche Datenbank teilen." +"Abschnitt. Mehrere Abschnitte können sich die gleiche Datenbank teilen." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:319 @@ -3078,9 +3146,9 @@ msgstr "FileList" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:321 msgid "" -"Specifies that instead of walking the directory tree, <command>apt-" -"ftparchive</command> should read the list of files from the given file. " -"Relative files names are prefixed with the archive directory." +"Specifies that instead of walking the directory tree, " +"<command>apt-ftparchive</command> should read the list of files from the " +"given file. Relative files names are prefixed with the archive directory." msgstr "" "Gibt an, dass <command>apt-ftparchive</command> die Liste der Dateien aus " "der vorgegebenen Datei liest, anstatt den Verzeichnisbaum zu durchlaufen. " @@ -3094,10 +3162,10 @@ msgstr "SourceFileList" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:328 msgid "" -"Specifies that instead of walking the directory tree, <command>apt-" -"ftparchive</command> should read the list of files from the given file. " -"Relative files names are prefixed with the archive directory. This is used " -"when processing source indexes." +"Specifies that instead of walking the directory tree, " +"<command>apt-ftparchive</command> should read the list of files from the " +"given file. Relative files names are prefixed with the archive directory. " +"This is used when processing source indexes." msgstr "" "Gibt an, dass <command>apt-ftparchive</command> die Liste der Dateien aus " "der vorgegebenen Datei liest, anstatt den Verzeichnisbaum zu durchlaufen. " @@ -3118,10 +3186,11 @@ msgid "" "pathing used is defined by the <literal>Directory</literal> substitution " "variable." msgstr "" -"Der <literal>Tree</literal>-Abschnitt definiert einen Standard-Debian-" -"Dateibaum, der aus einem Basisverzeichnis, dann mehreren Abschnitten in " -"diesem Basisverzeichnis und am Ende, mehreren Architekturen in jedem " -"Abschnitt besteht. Die genaue benutzte Pfadeinstellung ist durch die " +"Der <literal>Tree</literal>-Abschnitt definiert einen " +"Standard-Debian-Dateibaum, der aus einem Basisverzeichnis, dann mehreren " +"Abschnitten in diesem Basisverzeichnis und am Ende, mehreren " +"Architekturen in jedem Abschnitt besteht. Die genaue benutzte " +"Pfadeinstellung ist durch die " "<literal>Directory</literal>-Ersetzungsvariable definiert." #. type: Content of: <refentry><refsect1><refsect2><para> @@ -3132,11 +3201,11 @@ msgid "" "path is prefixed by <literal>ArchiveDir</literal>). Typically this is a " "setting such as <filename>dists/woody</filename>." 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>." +"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>." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:348 @@ -3145,23 +3214,23 @@ msgid "" "can be use in a <literal>Tree</literal> section as well as three new " "variables." msgstr "" -"Alle im <literal>TreeDefault</literal>-Abschnitt definierten Einstellungen " -"k??nnen in einem <literal>Tree</literal>-Abschnitt, sowie als drei neue " -"Variablen benutzt werden." +"Alle im <literal>TreeDefault</literal>-Abschnitt definierten " +"Einstellungen können in einem <literal>Tree</literal>-Abschnitt, sowie " +"als drei neue Variablen benutzt werden." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:351 msgid "" -"When processing a <literal>Tree</literal> section <command>apt-ftparchive</" -"command> performs an operation similar to:" +"When processing a <literal>Tree</literal> section " +"<command>apt-ftparchive</command> performs an operation similar to:" msgstr "" -"Wenn ein <literal>Tree</literal>-Abschnitt bearbeitet wird, f??hrt " -"<command>apt-ftparchive</command> eine Operation aus, die folgender ??hnelt:" +"Wenn ein <literal>Tree</literal>-Abschnitt bearbeitet wird, führt " +"<command>apt-ftparchive</command> eine Operation aus, die folgender ähnelt:" -# report, that this string is missing in man page #. type: Content of: <refentry><refsect1><refsect2><para><informalexample><programlisting> #: apt-ftparchive.1.xml:354 #, no-wrap +# report, that this string is missing in man page msgid "" "for i in Sections do \n" " for j in Architectures do\n" @@ -3180,12 +3249,12 @@ msgstr "Abschnitte" #: apt-ftparchive.1.xml:362 msgid "" "This is a space separated list of sections which appear under the " -"distribution, typically this is something like <literal>main contrib non-" -"free</literal>" +"distribution, typically this is something like <literal>main contrib " +"non-free</literal>" msgstr "" "Dies ist eine durch Leerzeichen getrennte Liste der Abschnitte, die unter " -"der Distribution erscheint, typischerweise etwas wie <literal>main contrib " -"non-free</literal>" +"der Distribution erscheint, typischerweise etwas wie <literal>main " +"contrib non-free</literal>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:367 @@ -3200,7 +3269,7 @@ msgid "" "this tree has a source archive." msgstr "" "Dies ist eine durch Leerzeichen getrennte Liste aller Architekturen, die " -"unter dem Suchabschnitt erscheinen. Die spezielle Architektur ??source?? " +"unter dem Suchabschnitt erscheinen. Die spezielle Architektur »source« " "wird benutzt, um anzugeben, dass dieser Baum ein Quellarchiv besitzt." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> @@ -3214,8 +3283,8 @@ msgid "" "Sets the binary override file. The override file contains section, priority " "and maintainer address information." msgstr "" -"Setzt die Programm-Override-Datei. Die Override-Datei enth??lt Abschnitt, " -"Priorit??t und Adressinformationen des Betreuers." +"Setzt die Programm-Override-Datei. Die Override-Datei enthält Abschnitt, " +"Priorität und Adressinformationen des Betreuers." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:380 apt-ftparchive.1.xml:427 @@ -3228,7 +3297,7 @@ msgid "" "Sets the source override file. The override file contains section " "information." msgstr "" -"Setzt die Quell-Override-Datei. Die Override-Datei enth??lt " +"Setzt die Quell-Override-Datei. Die Override-Datei enthält " "Abschnittsinformationen." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> @@ -3239,7 +3308,7 @@ msgstr "ExtraOverride" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:388 apt-ftparchive.1.xml:434 msgid "Sets the binary extra override file." -msgstr "Setzt die zus??tzliche Programm-Override-Datei." +msgstr "Setzt die zusätzliche Programm-Override-Datei." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:391 apt-ftparchive.1.xml:437 @@ -3249,7 +3318,7 @@ msgstr "SrcExtraOverride" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:393 apt-ftparchive.1.xml:439 msgid "Sets the source extra override file." -msgstr "Setzt die zus??tzliche Quell-Override-Datei." +msgstr "Setzt die zusätzliche Quell-Override-Datei." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt-ftparchive.1.xml:398 @@ -3262,14 +3331,14 @@ msgid "" "The <literal>bindirectory</literal> section defines a binary directory tree " "with no special structure. The scope tag specifies the location of the " "binary directory and the settings are similar to the <literal>Tree</literal> " -"section with no substitution variables or <literal>Section</" -"literal><literal>Architecture</literal> settings." +"section with no substitution variables or " +"<literal>Section</literal><literal>Architecture</literal> settings." msgstr "" "Der <literal>bindirectory</literal>-Abschnitt definiert einen " -"Programmverzeichnisbaum ohne spezielle Struktur. Die scope-Markierung gibt " -"den Ort des Programmverzeichnisses an und die Einstellungen sind denen des " -"<literal>Tree</literal>-Abschnitts ohne Platzhaltervariablen oder " -"<literal>Abschnitt</literal><literal>Architektur</literal> ??hnlich." +"Programmverzeichnisbaum ohne spezielle Struktur. Die scope-Markierung " +"gibt den Ort des Programmverzeichnisses an und die Einstellungen sind " +"denen des <literal>Tree</literal>-Abschnitts ohne Platzhaltervariablen " +"oder <literal>Abschnitt</literal><literal>Architektur</literal> ähnlich." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:408 @@ -3313,7 +3382,7 @@ msgstr "PathPrefix" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:449 msgid "Appends a path to all the output paths." -msgstr "H??ngt einen Pfad an alle Ausgabepfade an." +msgstr "Hängt einen Pfad an alle Ausgabepfade an." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:452 @@ -3339,11 +3408,11 @@ msgid "" "section to force that package to and the final field is the maintainer " "permutation field." msgstr "" -"Die Programm-Override-Datei ist vollst??ndig zu &dpkg-scanpackages; " -"kompatibel. Sie enth??lt vier durch Leerzeichen getrennte Felder. Das erste " -"Feld ist der Paketname, das zweite ist die Priorit??t zu der das Paket " -"erzwungen wird, das dritte ist der Abschnittzu der das Paket erzwungen wird " -"und das letzte Feld ist das Betreuerumsetzungsfeld." +"Die Programm-Override-Datei ist vollständig zu &dpkg-scanpackages; " +"kompatibel. Sie enthält vier durch Leerzeichen getrennte Felder. Das " +"erste Feld ist der Paketname, das zweite ist die Priorität zu der das " +"Paket erzwungen wird, das dritte ist der Abschnittzu der das Paket " +"erzwungen wird und das letzte Feld ist das Betreuerumsetzungsfeld." #. type: Content of: <refentry><refsect1><para><literallayout> #: apt-ftparchive.1.xml:468 @@ -3360,19 +3429,19 @@ msgstr "neu" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:467 msgid "" -"The general form of the maintainer field is: <placeholder type=" -"\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" " -"id=\"1\"/> The first form allows a double-slash separated list of old email " -"addresses to be specified. If any of those are found then new is substituted " -"for the maintainer field. The second form unconditionally substitutes the " -"maintainer field." +"The general form of the maintainer field is: <placeholder " +"type=\"literallayout\" id=\"0\"/> or simply, <placeholder " +"type=\"literallayout\" id=\"1\"/> The first form allows a double-slash " +"separated list of old email addresses to be specified. If any of those are " +"found then new is substituted for the maintainer field. The second form " +"unconditionally substitutes the maintainer field." msgstr "" -"Die allgemeine Form des Betreuerfelds ist: <placeholder type=\"literallayout" -"\" id=\"0\"/> oder einfach <placeholder type=\"literallayout\" id=\"1\"/>. " -"Die erste Form erlaubt es, eine durch Doppelschr??gstrich getrennte Liste " -"alter E-Mail-Adressen anzugegeben. Wenn eine davon gefunden wird, wird die " -"neue f??r das Betreuerfeld ersetzt. Die zweite Form ersetzt das Betreuerfeld " -"bedingungslos." +"Die allgemeine Form des Betreuerfelds ist: <placeholder " +"type=\"literallayout\" id=\"0\"/> oder einfach <placeholder " +"type=\"literallayout\" id=\"1\"/>. Die erste Form erlaubt es, eine durch " +"Doppelschrägstrich getrennte Liste alter E-Mail-Adressen anzugegeben. " +"Wenn eine davon gefunden wird, wird die neue für das Betreuerfeld " +"ersetzt. Die zweite Form ersetzt das Betreuerfeld bedingungslos." #. type: Content of: <refentry><refsect1><title> #: apt-ftparchive.1.xml:478 @@ -3386,14 +3455,15 @@ msgid "" "contains 2 fields separated by spaces. The first fields is the source " "package name, the second is the section to assign it." msgstr "" -"Die Quell-Override-Datei ist vollst??ndig kompatibel zu &dpkg-scansources;. " -"Sie enth??lt zwei durch Leerzeichen getrennte Felder. Das erste Feld ist der " -"Quellpaketname, das zweite ist der Abschnitt, dem er zugeordnet ist." +"Die Quell-Override-Datei ist vollständig kompatibel zu " +"&dpkg-scansources;. Sie enthält zwei durch Leerzeichen getrennte Felder. " +"Das erste Feld ist der Quellpaketname, das zweite ist der Abschnitt, dem " +"er zugeordnet ist." #. type: Content of: <refentry><refsect1><title> #: apt-ftparchive.1.xml:485 msgid "The Extra Override File" -msgstr "Die zus??tzlich Override-Datei" +msgstr "Die zusätzlich Override-Datei" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:487 @@ -3402,10 +3472,10 @@ msgid "" "the output. It has 3 columns, the first is the package, the second is the " "tag and the remainder of the line is the new value." msgstr "" -"Die zus??tzlich Override-Datei erlaubt jeder beliebigen Markierung zur " -"Ausgabe hinzugef??gt oder darin ersetzt zu werden. Sie hat drei Spalten. Die " -"erste ist das Paket, die zweite ist die Markierung und der Rest der Zeile " -"ist der neue Wert." +"Die zusätzlich Override-Datei erlaubt jeder beliebigen Markierung zur " +"Ausgabe hinzugefügt oder darin ersetzt zu werden. Sie hat drei Spalten. " +"Die erste ist das Paket, die zweite ist die Markierung und der Rest der " +"Zeile ist der neue Wert." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:496 @@ -3419,9 +3489,10 @@ msgid "" "files will not have MD5Sum fields where possible. Configuration Item: " "<literal>APT::FTPArchive::MD5</literal>" msgstr "" -"Generiert MD5-Summen. Dies ist standardm????ig an, wenn es ausgeschaltet " -"ist, haben die generierten Indexdateien keine MD5Sum-Felder, sofern dies m??" -"glich ist. Konfigurationselement: <literal>APT::FTPArchive::MD5</literal>" +"Generiert MD5-Summen. Dies ist standardmäßig an, wenn es ausgeschaltet " +"ist, haben die generierten Indexdateien keine MD5Sum-Felder, sofern dies " +"möglich ist. Konfigurationselement: " +"<literal>APT::FTPArchive::MD5</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:503 @@ -3435,8 +3506,8 @@ msgid "" "Configuration Item: <literal>APT::FTPArchive::DB</literal>." msgstr "" "Benutzt eine Programmzwischenspeicherdatenbank. Dies hat keine Auswirkung " -"auf den generate-Befehl. Konfigurationselement: <literal>APT::FTPArchive::" -"DB</literal>." +"auf den generate-Befehl. Konfigurationselement: " +"<literal>APT::FTPArchive::DB</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:511 @@ -3446,11 +3517,11 @@ msgid "" "<option>-q=#</option> to set the quiet level, overriding the configuration " "file. Configuration Item: <literal>quiet</literal>." msgstr "" -"Still; erzeugt eine Ausgabe, die f??r Protokollierung geeignet ist und " -"Fortschrittsanzeiger wegl??sst. Mehr ??q??s unterdr??cken mehr Ausgaben, bis " -"zu einem Maximum von 2. Sie k??nnen au??erdem <option>-q=#</option> " -"benutzen, um die Stillestufe zu setzen, was die Konfigurationsdatei ??" -"berschreibt. Konfigurationselement: <literal>quiet</literal>." +"Still; erzeugt eine Ausgabe, die für Protokollierung geeignet ist und " +"Fortschrittsanzeiger weglässt. Mehr »q«s unterdrücken mehr Ausgaben, bis " +"zu einem Maximum von 2. Sie können außerdem <option>-q=#</option> " +"benutzen, um die Stillestufe zu setzen, was die Konfigurationsdatei " +"überschreibt. Konfigurationselement: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:517 @@ -3465,11 +3536,11 @@ msgid "" "and can be turned off with <option>--no-delink</option>. Configuration " "Item: <literal>APT::FTPArchive::DeLinkAct</literal>." msgstr "" -"F??hrt Delinking aus. Wenn die <literal>External-Links</literal>-Einstellung " -"benutzt wird, schaltet diese Option das Delinking zu Dateien ein. " -"Standardm????ig ist es an und kann mit <option>--no-delink</option> " -"ausgeschaltet werden. Konfigurationselement: <literal>APT::FTPArchive::" -"DeLinkAct</literal>." +"Führt Delinking aus. Wenn die " +"<literal>External-Links</literal>-Einstellung benutzt wird, schaltet " +"diese Option das Delinking zu Dateien ein. Standardmäßig ist es an " +"und kann mit <option>--no-delink</option> ausgeschaltet werden. " +"Konfigurationselement: <literal>APT::FTPArchive::DeLinkAct</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:525 @@ -3485,12 +3556,13 @@ msgid "" "option also allows the creation of any Contents files. The default is on. " "Configuration Item: <literal>APT::FTPArchive::Contents</literal>." msgstr "" -"F??hrt Inhaltsgenerierung durch. Wenn diese Option gesetzt ist und " -"Paketindizes mit einer Zwischenspeicherdatenbank generiert werden, dann wird " -"die Dateiliste auch extrahiert und f??r sp??tere Benutzung in der Datenbank " -"gespeichert. Wenn der generate-Befehl benutzt wird, erlaubt diese Option au??" -"erdem die Erzeugung beliebiger Contents-Dateien. Die Vorgabe ist an. " -"Konfigurationselement: <literal>APT::FTPArchive::Contents</literal>." +"Führt Inhaltsgenerierung durch. Wenn diese Option gesetzt ist und " +"Paketindizes mit einer Zwischenspeicherdatenbank generiert werden, dann " +"wird die Dateiliste auch extrahiert und für spätere Benutzung in der " +"Datenbank gespeichert. Wenn der generate-Befehl benutzt wird, erlaubt " +"diese Option außerdem die Erzeugung beliebiger Contents-Dateien. Die " +"Vorgabe ist an. Konfigurationselement: " +"<literal>APT::FTPArchive::Contents</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:535 @@ -3501,12 +3573,12 @@ msgstr "<option>--source-override</option>" #: apt-ftparchive.1.xml:537 msgid "" "Select the source override file to use with the <literal>sources</literal> " -"command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</" -"literal>." +"command. Configuration Item: " +"<literal>APT::FTPArchive::SourceOverride</literal>." msgstr "" -"W??hlt die Quell-Override-Datei, die mit dem <literal>sources</literal>-" -"Befehl benutzt wird. Konfigurationselement: <literal>APT::FTPArchive::" -"SourceOverride</literal>." +"Wählt die Quell-Override-Datei, die mit dem " +"<literal>sources</literal>-Befehl benutzt wird. Konfigurationselement: " +"<literal>APT::FTPArchive::SourceOverride</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:541 @@ -3516,23 +3588,28 @@ msgstr "<option>--readonly</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:543 msgid "" -"Make the caching databases read only. Configuration Item: <literal>APT::" -"FTPArchive::ReadOnlyDB</literal>." +"Make the caching databases read only. Configuration Item: " +"<literal>APT::FTPArchive::ReadOnlyDB</literal>." msgstr "" "Gibt der Zwischenspeicherdatenbank nur Lesezugriff. Konfigurationselement: " "<literal>APT::FTPArchive::ReadOnlyDB</literal>." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:552 apt.conf.5.xml:962 apt_preferences.5.xml:462 -#: sources.list.5.xml:181 +#: apt-ftparchive.1.xml:552 apt.conf.5.xml:962 apt_preferences.5.xml:462 sources.list.5.xml:181 msgid "Examples" msgstr "Beispiele" #. type: Content of: <refentry><refsect1><para><programlisting> #: apt-ftparchive.1.xml:558 #, no-wrap -msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" -msgstr "<command>apt-ftparchive</command> Pakete <replaceable>Verzeichnis</replaceable> | <command>gzip</command> > <filename>Pakete.gz</filename>\n" +msgid "" +"<command>apt-ftparchive</command> packages " +"<replaceable>directory</replaceable> | <command>gzip</command> > " +"<filename>Packages.gz</filename>\n" +msgstr "" +"<command>apt-ftparchive</command> Pakete " +"<replaceable>Verzeichnis</replaceable> | <command>gzip</command> > " +"<filename>Pakete.gz</filename>\n" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:554 @@ -3540,9 +3617,9 @@ msgid "" "To create a compressed Packages file for a directory containing binary " "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" -"Um eine gepackte Paketdatei f??r ein Verzeichnis zu erstellen, das " -"Programmpakete (.deb) enth??lt: <placeholder type=\"programlisting\" id=\"0" -"\"/>" +"Um eine gepackte Paketdatei für ein Verzeichnis zu erstellen, das " +"Programmpakete (.deb) enthält: <placeholder type=\"programlisting\" " +"id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:568 @@ -3550,7 +3627,7 @@ msgid "" "<command>apt-ftparchive</command> returns zero on normal operation, decimal " "100 on error." msgstr "" -"<command>apt-ftparchive</command> gibt bei normalen Operationen 0 zur??ck, " +"<command>apt-ftparchive</command> gibt bei normalen Operationen 0 zurück, " "dezimal 100 bei Fehlern." #. The last update date @@ -3560,8 +3637,8 @@ msgid "" "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>08 " "November 2008</date>" msgstr "" -"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>8. " -"November 2008</date>" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>" +"8. November 2008</date>" #. type: Content of: <refentry><refnamediv><refname> #: apt-get.8.xml:22 apt-get.8.xml:29 @@ -3571,7 +3648,8 @@ msgstr "apt-get" #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-get.8.xml:30 msgid "APT package handling utility -- command-line interface" -msgstr "APT-Werkzeug f??r den Umgang mit Paketen -- Befehlszeilenschnittstelle" +msgstr "" +"APT-Werkzeug für den Umgang mit Paketen -- Befehlszeilenschnittstelle" #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-get.8.xml:36 @@ -3582,26 +3660,27 @@ msgid "" "<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'> <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'>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'>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 " +"<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 " @@ -3609,31 +3688,36 @@ 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 " +"<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" -"\"><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> </" -"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 " +"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\"><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> </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 " "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 " @@ -3648,11 +3732,11 @@ msgid "" "library. Several \"front-end\" interfaces exist, such as &dselect;, " "&aptitude;, &synaptic;, &gnome-apt; and &wajig;." 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;." +"<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;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:135 apt-key.8.xml:123 @@ -3668,20 +3752,22 @@ msgid "" "example, when using a Debian archive, this command retrieves and scans the " "<filename>Packages.gz</filename> files, so that information about new and " "updated packages is available. An <literal>update</literal> should always be " -"performed before an <literal>upgrade</literal> or <literal>dist-upgrade</" -"literal>. Please be aware that the overall progress meter will be incorrect " -"as the size of the package files cannot be known in advance." +"performed before an <literal>upgrade</literal> or " +"<literal>dist-upgrade</literal>. Please be aware that the overall progress " +"meter will be incorrect as the size of the package files cannot be known in " +"advance." msgstr "" "<literal>update</literal> wird benutzt, um die Paketindexdatei wieder mit " -"ihren Quellen zu synchronisieren. Die Indizes verf??gbarer Pakete werden von " -"den in <filename>/etc/apt/sources.list</filename> angegebenen Orten geladen. " -"Wenn Sie zum Beispiel ein Debian-Archiv benutzen, erneuert dieser Befehl die " -"<filename>Packages.gz</filename>-Dateien und wertet sie aus, so dass " -"Informationen ??ber neue und aktualisierte Pakete verf??gbar sind. Ein " -"<literal>update</literal> sollte immer vor einem <literal>upgrade</literal> " -"oder <literal>dist-upgrade</literal> ausgef??hrt werden. Bitte seien Sie " -"sich bewusst, dass die Gesamtfortschrittsanzeige nicht richtig sein wird, da " -"die Gr????e der Pakete nicht im voraus bekannt ist." +"ihren Quellen zu synchronisieren. Die Indizes verfügbarer Pakete werden " +"von den in <filename>/etc/apt/sources.list</filename> angegebenen Orten " +"geladen. Wenn Sie zum Beispiel ein Debian-Archiv benutzen, erneuert " +"dieser Befehl die <filename>Packages.gz</filename>-Dateien und wertet sie " +"aus, so dass Informationen über neue und aktualisierte Pakete verfügbar " +"sind. Ein <literal>update</literal> sollte immer vor einem " +"<literal>upgrade</literal> oder <literal>dist-upgrade</literal> " +"ausgeführt werden. Bitte seien Sie sich bewusst, dass die " +"Gesamtfortschrittsanzeige nicht richtig sein wird, da die Größe der " +"Pakete nicht im voraus bekannt ist." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:147 @@ -3699,20 +3785,23 @@ msgid "" "already installed retrieved and installed. New versions of currently " "installed packages that cannot be upgraded without changing the install " "status of another package will be left at their current version. An " -"<literal>update</literal> must be performed first so that <command>apt-get</" -"command> knows that new versions of packages are available." +"<literal>update</literal> must be performed first so that " +"<command>apt-get</command> knows that new versions of packages are " +"available." msgstr "" "<literal>upgrade</literal> wird benutzt, um die neusten Versionen aller " -"aktuell auf dem System installierten Pakete aus den in <filename>/etc/apt/" -"sources.list</filename> aufgez??hlten Quellen zu installieren. Aktuell " -"installierte Pakete mit verf??gbaren neuen Versionen werden heruntergeladen " -"und das Upgrade durchgef??hrt. Unter keinen Umst??nden werden derzeit " -"installierte Pakete entfernt oder nicht installierte Pakete heruntergeladen " -"und installiert. Neue Versionen von aktuell installierten Paketen von denen " -"kein Upgrade durchgef??hrt werden kann, ohne den Installationsstatus eines " -"anderen Paketes zu ??ndern, werden in ihrer aktuellen Version bleiben. " -"Zuerst muss ein <literal>update</literal> durchgef??hrt werden, so dass " -"<command>apt-get</command> die neuen Versionen der verf??gbaren Pakete kennt." +"aktuell auf dem System installierten Pakete aus den in " +"<filename>/etc/apt/sources.list</filename> aufgezählten Quellen zu " +"installieren. Aktuell installierte Pakete mit verfügbaren neuen Versionen " +"werden heruntergeladen und das Upgrade durchgeführt. Unter keinen " +"Umständen werden derzeit installierte Pakete entfernt oder nicht " +"installierte Pakete heruntergeladen und installiert. Neue Versionen von " +"aktuell installierten Paketen von denen kein Upgrade durchgeführt werden " +"kann, ohne den Installationsstatus eines anderen Paketes zu ändern, " +"werden in ihrer aktuellen Version bleiben. Zuerst muss ein " +"<literal>update</literal> durchgeführt werden, so dass " +"<command>apt-get</command> die neuen Versionen der verfügbaren Pakete " +"kennt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:160 @@ -3723,16 +3812,16 @@ msgstr "dselect-upgrade" #: apt-get.8.xml:161 msgid "" "<literal>dselect-upgrade</literal> is used in conjunction with the " -"traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</" -"literal> follows the changes made by &dselect; to the <literal>Status</" -"literal> field of available packages, and performs the actions necessary to " -"realize that state (for instance, the removal of old and the installation of " -"new packages)." +"traditional Debian packaging front-end, " +"&dselect;. <literal>dselect-upgrade</literal> follows the changes made by " +"&dselect; to the <literal>Status</literal> field of available packages, and " +"performs the actions necessary to realize that state (for instance, the " +"removal of old and the installation of new packages)." msgstr "" "<literal>dselect-upgrade</literal> wird zusammen mit der traditionellen " -"Debian-Oberfl??che &dselect; benutzt. <literal>dselect-upgrade</literal> " -"folgt den durch &dselect; am <literal>Status</literal>-Feld verf??gbarer " -"Pakete gemachten ??nderungen und f??hrt die notwendigen Aktionen durch, um " +"Debian-Oberfläche &dselect; benutzt. <literal>dselect-upgrade</literal> " +"folgt den durch &dselect; am <literal>Status</literal>-Feld verfügbarer " +"Pakete gemachten Änderungen und führt die notwendigen Aktionen durch, um " "diesen Status zu realisieren (zum Beispiel das Entfernen von alten und " "Installieren von neuen Paketen)." @@ -3754,16 +3843,17 @@ msgid "" "from which to retrieve desired package files. See also &apt-preferences; " "for a mechanism for overriding the general settings for individual packages." msgstr "" -"<literal>dist-upgrade</literal> f??hrt zus??tzlich zu der Funktion von " -"<literal>upgrade</literal> intelligente Handhabung von Abh??ngigkeits??" -"nderungen mit neuen Versionen von Paketen durch. <command>apt-get</command> " -"hat ein ??intelligentes?? Konfliktaufl??sungssystem und es wird versuchen, " -"Upgrades der wichtigsten Pakete, wenn n??tig zu Lasten der weniger " -"wichtigen, zu machen. So k??nnte der <literal>dist-upgrade</literal>-Befehl " -"einige Pakete entfernen. Die <filename>/etc/apt/sources.list</filename>-" -"Datei enth??lt eine Liste mit Orten, von denen gew??nschte Paketdateien " -"abgerufen werden. Siehe auch &apt-preferences; f??r einen Mechanismus zum ??" -"berschreiben der allgemeinen Einstellungen f??r einzelne Pakete." +"<literal>dist-upgrade</literal> führt zusätzlich zu der Funktion von " +"<literal>upgrade</literal> intelligente Handhabung von " +"Abhängigkeitsänderungen mit neuen Versionen von Paketen durch. " +"<command>apt-get</command> hat ein »intelligentes« " +"Konfliktauflösungssystem und es wird versuchen, Upgrades der wichtigsten " +"Pakete, wenn nötig zu Lasten der weniger wichtigen, zu machen. So könnte " +"der <literal>dist-upgrade</literal>-Befehl einige Pakete entfernen. Die " +"<filename>/etc/apt/sources.list</filename>-Datei enthält eine Liste mit " +"Orten, von denen gewünschte Paketdateien abgerufen werden. Siehe auch " +"&apt-preferences; für einen Mechanismus zum überschreiben der " +"allgemeinen Einstellungen für einzelne Pakete." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:183 @@ -3785,36 +3875,37 @@ msgid "" "a package to install. These latter features may be used to override " "decisions made by apt-get's conflict resolution system." msgstr "" -"<literal>install</literal> wird gefolgt von einem oder mehreren gew??nschten " -"Paketen zur Installation oder zum Upgrade. Jedes Paket ist ein Paketname, " -"kein vollst??ndig zusammengesetzter Dateiname (zum Beispiel w??re in einem ??" -"Debian GNU/Linux??-System libc6 das bereitgestellte Argument, nicht " -"<literal>libc6_1.9.6-2.deb</literal>). Alle von den zur Installation " -"angegebenen Paketen ben??tigten Pakete werden zus??tzlich heruntergeladen " -"und installiert. Die <filename>/etc/apt/sources.list</filename>-Datei wird " -"benutzt, um die gew??nschten Pakete zu finden. Wenn ein Bindestrich an den " -"Paketnamen (ohne Leerzeichen dazwischen) angeh??ngt ist, wird das erkannte " -"Pakete entfernt, falls es installiert ist. ??hnlich kann ein Pluszeichen " -"benutzt werden, um ein Paket zum Installieren vorzumerken. Diese letzteren " -"Funktionen k??nnen benutzt werden, um Entscheidungen zu ??berschreiben, die " -"vom Konfliktaufl??sungssystem von apt-get getroffen wurden." +"<literal>install</literal> wird gefolgt von einem oder mehreren " +"gewünschten Paketen zur Installation oder zum Upgrade. Jedes Paket ist " +"ein Paketname, kein vollständig zusammengesetzter Dateiname (zum Beispiel " +"wäre in einem »Debian GNU/Linux«-System libc6 das bereitgestellte " +"Argument, nicht <literal>libc6_1.9.6-2.deb</literal>). Alle von den zur " +"Installation angegebenen Paketen benötigten Pakete werden zusätzlich " +"heruntergeladen und installiert. Die " +"<filename>/etc/apt/sources.list</filename>-Datei wird benutzt, um die " +"gewünschten Pakete zu finden. Wenn ein Bindestrich an den Paketnamen " +"(ohne Leerzeichen dazwischen) angehängt ist, wird das erkannte Pakete " +"entfernt, falls es installiert ist. Ähnlich kann ein Pluszeichen benutzt " +"werden, um ein Paket zum Installieren vorzumerken. Diese letzteren " +"Funktionen können benutzt werden, um Entscheidungen zu überschreiben, die " +"vom Konfliktauflösungssystem von apt-get getroffen wurden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:203 msgid "" "A specific version of a package can be selected for installation by " "following the package name with an equals and the version of the package to " -"select. This will cause that version to be located and selected for install. " -"Alternatively a specific distribution can be selected by following the " -"package name with a slash and the version of the distribution or the Archive " -"name (stable, testing, unstable)." -msgstr "" -"Eine bestimmte Version eines Paketes kann durch den Paketnamen gefolgt von " -"einem Gleichheitszeichen und der Version des Paketes zur Installation " -"ausgew??hlt werden. Dies bewirkt, dass diese Version gesucht und zum " -"Installieren ausgew??hlt wird. Alternativ kann eine bestimmte Distribution " -"durch den Paketnamen gefolgt von einem Schr??gstrich und der Version der " -"Distribution oder des Archivnamens (stable, testing, unstable) ausgew??hlt " +"select. This will cause that version to be located and selected for " +"install. Alternatively a specific distribution can be selected by following " +"the package name with a slash and the version of the distribution or the " +"Archive name (stable, testing, unstable)." +msgstr "" +"Eine bestimmte Version eines Paketes kann durch den Paketnamen gefolgt " +"von einem Gleichheitszeichen und der Version des Paketes zur Installation " +"ausgewählt werden. Dies bewirkt, dass diese Version gesucht und zum " +"Installieren ausgewählt wird. Alternativ kann eine bestimmte Distribution " +"durch den Paketnamen gefolgt von einem Schrägstrich und der Version der " +"Distribution oder des Archivnamens (stable, testing, unstable) ausgewählt " "werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> @@ -3823,29 +3914,29 @@ msgid "" "Both of the version selection mechanisms can downgrade packages and must be " "used with care." msgstr "" -"Beide Mechanismen der Versionsauswahl k??nnen ein Downgrade von Paketen " -"durchf??hren und m??ssen mit Vorsicht gehandhabt werden." +"Beide Mechanismen der Versionsauswahl können ein Downgrade von Paketen " +"durchführen und müssen mit Vorsicht gehandhabt werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:213 msgid "" -"This is also the target to use if you want to upgrade one or more already-" -"installed packages without upgrading every package you have on your system. " -"Unlike the \"upgrade\" target, which installs the newest version of all " -"currently installed packages, \"install\" will install the newest version of " -"only the package(s) specified. Simply provide the name of the package(s) " -"you wish to upgrade, and if a newer version is available, it (and its " -"dependencies, as described above) will be downloaded and installed." -msgstr "" -"Dies ist au??erdem die bevorzugt zu benutzende Art, wenn Sie Sie ein Upgrade " -"eines oder mehrerer bereits installierter Pakete durchf??hren m??chten, ohne " -"ein Upgrade aller Pakete, die Sie auf Ihrem System haben, durchzuf??hren. " -"Anders als das Ziel von ??upgrade??, das die neusten Versionen aller aktuell " -"installierten Pakete installiert, wird ??install?? nur die neusten Versionen " -"der angegebenen Pakete installieren. Geben Sie einfach den Namen des Paketes " -"an, von dem Sie ein Upgrade durchf??hren m??chten und wenn eine neuere " -"Version verf??gbar ist, wird sie (und ihre Abh??ngigkeiten, wie oben " -"beschrieben) heruntergeladen und installiert." +"This is also the target to use if you want to upgrade one or more " +"already-installed packages without upgrading every package you have on your " +"system. Unlike the \"upgrade\" target, which installs the newest version of " +"all currently installed packages, \"install\" will install the newest " +"version of only the package(s) specified. Simply provide the name of the " +"package(s) you wish to upgrade, and if a newer version is available, it (and " +"its dependencies, as described above) will be downloaded and installed." +msgstr "" +"Dies ist außerdem die bevorzugt zu benutzende Art, wenn Sie Sie ein " +"Upgrade eines oder mehrerer bereits installierter Pakete durchführen " +"möchten, ohne ein Upgrade aller Pakete, die Sie auf Ihrem System haben, " +"durchzuführen. Anders als das Ziel von »upgrade«, das die neusten " +"Versionen aller aktuell installierten Pakete installiert, wird »install« " +"nur die neusten Versionen der angegebenen Pakete installieren. Geben Sie " +"einfach den Namen des Paketes an, von dem Sie ein Upgrade durchführen " +"möchten und wenn eine neuere Version verfügbar ist, wird sie (und ihre " +"Abhängigkeiten, wie oben beschrieben) heruntergeladen und installiert." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:224 @@ -3854,7 +3945,7 @@ msgid "" "installation policy for individual packages." msgstr "" "Letztendlich erlaubt Ihnen der &apt-preferences;-Mechanismus eine " -"alternative Installationsrichtlinie f??r eigene Pakete zu erzeugen." +"alternative Installationsrichtlinie für eigene Pakete zu erzeugen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:228 @@ -3868,14 +3959,13 @@ msgid "" "expression." msgstr "" "Wenn keine Pakete dem angegebenen Ausdruck entsprechen und der Ausdruck " -"entweder ??.??,??,??,????? oder ??*?? enth??lt, dann wird vermutet, dass es " -"sich um einen regul??ren POSIX-Ausdruck handelt und er wird auf alle " -"Paketnamen in der Datenbank angewandt. Jeder Treffer wird dann installiert " -"(oder entfernt). Beachten Sie, dass nach ??bereinstimmenden " -"Zeichenkettenteilen gesucht wird, so dass ??lo.*?? auf ??how-lo?? und ??" -"lowest?? passt. Wenn dies nicht gew??nscht wird, h??ngen Sie an den regul??" -"ren Ausdruck ein ??^??- oder ??$??-Zeichen, um genauere regul??re Ausdruck " -"zu erstellen." +"entweder ».«,»,«,»?« oder »*« enthält, dann wird vermutet, dass es sich " +"um einen regulären POSIX-Ausdruck handelt und er wird auf alle Paketnamen " +"in der Datenbank angewandt. Jeder Treffer wird dann installiert (oder " +"entfernt). Beachten Sie, dass nach übereinstimmenden Zeichenkettenteilen " +"gesucht wird, so dass »lo.*« auf »how-lo« und »lowest« passt. Wenn dies " +"nicht gewünscht wird, hängen Sie an den regulären Ausdruck ein »^«- oder " +"»$«-Zeichen, um genauere reguläre Ausdruck zu erstellen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:237 @@ -3891,11 +3981,12 @@ msgid "" "package name (with no intervening space), the identified package will be " "installed instead of removed." msgstr "" -"<literal>remove</literal> ist identisch mit <literal>install</literal>, mit " -"der Ausnahme, dass Pakte entfernt anstatt installiert werden. Beachten Sie, " -"dass das Entfernen von Paketen deren Konfigurationsdateien im System bel??" -"sst. Wenn ein Pluszeichen an den Paketnamen angeh??ngt wird (ohne " -"Leerzeichen dazwischen) wird das erkannte Paket installiert anstatt entfernt." +"<literal>remove</literal> ist identisch mit <literal>install</literal>, " +"mit der Ausnahme, dass Pakte entfernt anstatt installiert werden. " +"Beachten Sie, dass das Entfernen von Paketen deren Konfigurationsdateien " +"im System belässt. Wenn ein Pluszeichen an den Paketnamen angehängt wird " +"(ohne Leerzeichen dazwischen) wird das erkannte Paket installiert anstatt " +"entfernt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:245 @@ -3910,8 +4001,8 @@ msgid "" "too)." msgstr "" "<literal>purge</literal> entspricht <literal>remove</literal> mit der " -"Ausnahme, dass Pakete entfernt und vollst??ndig gel??scht werden (jegliche " -"Konfigurationsdateien werden mitgel??scht)." +"Ausnahme, dass Pakete entfernt und vollständig gelöscht werden (jegliche " +"Konfigurationsdateien werden mitgelöscht)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:250 @@ -3925,34 +4016,37 @@ msgid "" "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 while respect the " -"default release, set with the option <literal>APT::Default-Release</" -"literal>, the <option>-t</option> option or per package with with the " -"<literal>pkg/release</literal> syntax, if possible." +"default release, set with the option " +"<literal>APT::Default-Release</literal>, the <option>-t</option> option or " +"per package with with the <literal>pkg/release</literal> syntax, if " +"possible." msgstr "" "<literal>source</literal> veranlasst <command>apt-get</command> dazu, " -"Paketquellen zu laden. APT wird die verf??gbaren Pakete ??berpr??fen, um zu " +"Paketquellen zu laden. APT wird die verfügbaren Pakete überprüfen, um zu " "entscheiden, welche Paketquellen geladen werden. Es wird dann die neueste " "Version der Paketquelle finden und in das aktuelle Verzeichnis " -"herunterladen. Dabei ber??cksichtigt es das Vorgabe-Release, das mit der " -"Option <literal>APT::Default-Release</literal>, der Option <option>-t</" -"option> oder pro Paket mit der <literal>pkg/release</literal>-Syntax gesetzt " -"wurde, wenn m??glich." +"herunterladen. Dabei berücksichtigt es das Vorgabe-Release, das mit der " +"Option <literal>APT::Default-Release</literal>, der Option " +"<option>-t</option> oder pro Paket mit der " +"<literal>pkg/release</literal>-Syntax gesetzt wurde, wenn möglich." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:259 msgid "" -"Source packages are tracked separately from binary packages via <literal>deb-" -"src</literal> type lines in the &sources-list; file. This means that you " -"will need to add such a line for each repository you want to get sources " -"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." +"Source packages are tracked separately from binary packages via " +"<literal>deb-src</literal> type lines in the &sources-list; file. This means " +"that you will need to add such a line for each repository you want to get " +"sources 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 "" -"Paketquellen werden von Programmpaket getrennt ??ber <literal>deb-src</" -"literal>-Typzeilen in der &sources-list;-Datei nachverfolgt. Das bedeutet, " -"dass Sie f??r jedes Depot, aus dem Sie Quellen erhalten wollen, eine solche " -"Zeile hinzuf??gen m??ssen. Wenn Sie dies nicht tun, werden Sie eine andere " -"als die passende (neuere, ??ltere oder keine) Quellenversion erhalten, die " -"Sie installiert haben oder installieren k??nnten." +"Paketquellen werden von Programmpaket getrennt über " +"<literal>deb-src</literal>-Typzeilen in der &sources-list;-Datei " +"nachverfolgt. Das bedeutet, dass Sie für jedes Depot, aus dem Sie Quellen " +"erhalten wollen, eine solche Zeile hinzufügen müssen. Wenn Sie dies nicht " +"tun, werden Sie eine andere als die passende (neuere, ältere oder keine) " +"Quellenversion erhalten, die Sie installiert haben oder installieren " +"könnten." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:266 @@ -3962,10 +4056,10 @@ msgid "" "<option>--download-only</option> is specified then the source package will " "not be unpacked." msgstr "" -"Wenn die <option>--compile</option>-Option angegeben ist, dann wird das " -"Paket unter Benutzung von <command>dpkg-buildpackage</command> zu einem bin??" -"ren .deb kompiliert, wenn <option>--download-only</option> angegeben ist, " -"wird das Quellpaket nicht entpackt." +"Wenn die <option>--compile</option>-Option angegeben ist, dann wird " +"das Paket unter Benutzung von <command>dpkg-buildpackage</command> zu " +"einem binären .deb kompiliert, wenn <option>--download-only</option> " +"angegeben ist, wird das Quellpaket nicht entpackt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:271 @@ -3973,15 +4067,15 @@ msgid "" "A specific source version can be retrieved by postfixing the source name " "with an equals and then the version to fetch, similar to the mechanism used " "for the package files. This enables exact matching of the source package " -"name and version, implicitly enabling the <literal>APT::Get::Only-Source</" -"literal> option." +"name and version, implicitly enabling the " +"<literal>APT::Get::Only-Source</literal> option." msgstr "" "Eine bestimmte Quellversion kann durch Voranstellen eines " "Gleichheitszeichens vor den Paketnamen und dann der Version zum " -"Herunterladen erhalten werde, ??hnlich dem Mechanismus, der f??r " -"Paketdateien benutzt wird. Dies erm??glicht exakte ??bereinstimmung von " -"Quellpaketname und -Version und impliziert das Einschalten der<literal>APT::" -"Get::Only-Source</literal>-Option." +"Herunterladen erhalten werde, ähnlich dem Mechanismus, der für " +"Paketdateien benutzt wird. Dies ermöglicht exakte Übereinstimmung von " +"Quellpaketname und -Version und impliziert das Einschalten der" +"<literal>APT::Get::Only-Source</literal>-Option." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:277 @@ -3990,9 +4084,9 @@ msgid "" "only in the current directory and are similar to downloading source tar " "balls." msgstr "" -"Beachten Sie, dass Quellpakete nicht wie normale Programmpakete nachverfolgt " -"werden, sie existieren nur im aktuellen Verzeichnis und sind " -"heruntergeladenen Tarballs ??hnlich." +"Beachten Sie, dass Quellpakete nicht wie normale Programmpakete " +"nachverfolgt werden, sie existieren nur im aktuellen Verzeichnis und sind " +"heruntergeladenen Tarballs ähnlich." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:282 @@ -4005,9 +4099,9 @@ msgid "" "<literal>build-dep</literal> causes apt-get to install/remove packages in an " "attempt to satisfy the build dependencies for a source package." msgstr "" -"<literal>build-dep</literal> veranlasst apt-get, Pakete zu installieren/" -"entfernen, um zu versuchen, die Bauabh??ngigkeiten eines Quellpakets zu erf??" -"llen." +"<literal>build-dep</literal> veranlasst apt-get, Pakete zu " +"installieren/entfernen, um zu versuchen, die Bauabhängigkeiten eines " +"Quellpakets zu erfüllen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:287 @@ -4021,26 +4115,27 @@ msgid "" "and checks for broken dependencies." msgstr "" "<literal>check</literal> ist ein Diagnosewerkzeug. Es aktualisiert den " -"Paketzwischenspeicher und pr??ft, ob besch??digte Abh??ngigkeiten vorliegen." +"Paketzwischenspeicher und prüft, ob beschädigte Abhängigkeiten vorliegen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:293 msgid "" "<literal>clean</literal> clears out the local repository of retrieved " "package files. It removes everything but the lock file from " -"<filename>&cachedir;/archives/</filename> and <filename>&cachedir;/archives/" -"partial/</filename>. When APT is used as a &dselect; method, <literal>clean</" -"literal> is run automatically. Those who do not use dselect will likely " -"want to run <literal>apt-get clean</literal> from time to time to free up " -"disk space." +"<filename>&cachedir;/archives/</filename> and " +"<filename>&cachedir;/archives/partial/</filename>. When APT is used as a " +"&dselect; method, <literal>clean</literal> is run automatically. Those who " +"do not use dselect will likely want to run <literal>apt-get clean</literal> " +"from time to time to free up disk space." msgstr "" "<literal>clean</literal> bereinigt das lokale Depot von heruntergeladenen " -"Paketdateien. Es entfernt alles au??er der Sperrdatei aus " -"<filename>&cachedir;/archives/</filename> und <filename>&cachedir;/archives/" -"partial/</filename>. Wenn APT als eine &dselect;-Methode benutzt wird, wird " -"<literal>clean</literal> automatisch ausgef??hrt. Diejenigen, die Dselect " -"nicht benutzen, werden <literal>apt-get clean</literal> wahrscheinlich von " -"Zeit zu Zeit ausf??hren, um Plattenplatz freizugeben." +"Paketdateien. Es entfernt alles außer der Sperrdatei aus " +"<filename>&cachedir;/archives/</filename> und " +"<filename>&cachedir;/archives/partial/</filename>. Wenn APT als eine " +"&dselect;-Methode benutzt wird, wird <literal>clean</literal> " +"automatisch ausgeführt. Diejenigen, die Dselect nicht benutzen, werden " +"<literal>apt-get clean</literal> wahrscheinlich von Zeit zu Zeit " +"ausführen, um Plattenplatz freizugeben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:302 @@ -4054,18 +4149,18 @@ msgid "" "local repository of retrieved package files. The difference is that it only " "removes package files that can no longer be downloaded, and are largely " "useless. This allows a cache to be maintained over a long period without it " -"growing out of control. The configuration option <literal>APT::Clean-" -"Installed</literal> will prevent installed packages from being erased if it " -"is set to off." +"growing out of control. The configuration option " +"<literal>APT::Clean-Installed</literal> will prevent installed packages from " +"being erased if it is set to off." msgstr "" "Wie <literal>clean</literal> bereinigt <literal>autoclean</literal> das " "lokale Depot von heruntergeladenen Paketdateien. Der Unterschied besteht " -"darin, dass es nur Pakete entfernt, die nicht mehr heruntergeladen werden k??" -"nnen und gr????tenteils nutzlos sind. Dies erlaubt es, einen " -"Zwischenspeicher ??ber eine lange Zeitspanne zu betreuen, ohne dass er " -"unkontrolliert anw??chst. Die Konfigurationsoption <literal>APT::Clean-" -"Installed</literal> wird installierte Pakete vor der L??schung bewahren, " -"wenn sie auf off gesetzt ist." +"darin, dass es nur Pakete entfernt, die nicht mehr heruntergeladen werden " +"können und größtenteils nutzlos sind. Dies erlaubt es, einen " +"Zwischenspeicher über eine lange Zeitspanne zu betreuen, ohne dass er " +"unkontrolliert anwächst. Die Konfigurationsoption " +"<literal>APT::Clean-Installed</literal> wird installierte Pakete vor der " +"Löschung bewahren, wenn sie auf off gesetzt ist." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:312 @@ -4080,8 +4175,8 @@ msgid "" "are no more needed." msgstr "" "<literal>autoremove</literal> wird benutzt, um Pakete, die automatisch " -"installiert wurden, um Abh??ngigkeiten f??r einige Pakete zu erf??llen und " -"und die nicht mehr ben??tigt werden, zu entfernen." +"installiert wurden, um Abhängigkeiten für einige Pakete zu erfüllen und " +"und die nicht mehr benötigt werden, zu entfernen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:323 apt-get.8.xml:429 @@ -4094,7 +4189,7 @@ msgid "" "Do not consider recommended packages as a dependency for installing. " "Configuration Item: <literal>APT::Install-Recommends</literal>." msgstr "" -"Empfohlene Pakete nicht als Abh??ngigkeit f??r die Installation betrachten. " +"Empfohlene Pakete nicht als Abhängigkeit für die Installation betrachten. " "Konfigurationselement: <literal>APT::Install-Recommends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -4109,17 +4204,17 @@ msgid "" "Configuration Item: <literal>APT::Get::Download-Only</literal>." msgstr "" "Nur herunterladen; Paketdateien werde nur heruntergeladen, nicht entpackt " -"oder installiert. Konfigurationselement: <literal>APT::Get::Download-Only</" -"literal>." +"oder installiert. Konfigurationselement: " +"<literal>APT::Get::Download-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:333 msgid "<option>--fix-broken</option>" msgstr "<option>--fix-broken</option>" -# s/Any Package that are specified/Any package that is specified/ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:334 +# s/Any Package that are specified/Any package that is specified/ 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 " @@ -4130,22 +4225,23 @@ msgid "" "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>." -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 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 Abh??" -"ngigkeitsstruktur eines Systems so fehlerhaft ist, dass ein manuelles " -"Eingreifen erforderlich ist (was normalerweise bedeutet, dass &dselect; oder " -"<command>dpkg --remove</command> benutzt wird, um einige der fehlerhaften " -"Pakete zu beseitigen). Wenn Sie die Option zusammen mit <option>-m</option> " -"benutzen, k??nnte das in einigen Situationen zu Fehlern f??hren. " -"Konfigurationselement: <literal>APT::Get::Fix-Broken</literal>." +"may produce an error in some situations. Configuration Item: " +"<literal>APT::Get::Fix-Broken</literal>." +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 " +"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 Abhängigkeitsstruktur eines Systems so fehlerhaft ist, dass ein " +"manuelles Eingreifen erforderlich ist (was normalerweise bedeutet, dass " +"&dselect; oder <command>dpkg --remove</command> benutzt wird, um einige " +"der fehlerhaften Pakete zu beseitigen). Wenn Sie die Option zusammen " +"mit <option>-m</option> benutzen, könnte das in einigen Situationen zu " +"Fehlern führen. Konfigurationselement: " +"<literal>APT::Get::Fix-Broken</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:347 @@ -4162,21 +4258,21 @@ msgstr "<option>--fix-missing</option>" msgid "" "Ignore missing packages; If packages cannot be retrieved or fail the " "integrity check after retrieval (corrupted package files), hold back those " -"packages and handle the result. Use of this option together with <option>-f</" -"option> may produce an error in some situations. If a package is selected " -"for installation (particularly if it is mentioned on the command line) and " -"it could not be downloaded then it will be silently held back. " +"packages and handle the result. Use of this option together with " +"<option>-f</option> may produce an error in some situations. If a package is " +"selected for installation (particularly if it is mentioned on the command " +"line) and it could not be downloaded then it will be silently held back. " "Configuration Item: <literal>APT::Get::Fix-Missing</literal>." msgstr "" -"Fehlende Pakete ignorieren; Wenn Pakete nicht heruntergeladen werden k??nnen " -"oder die Integrit??tspr??fung nach dem Herunterladen fehlschl??gt " -"(fehlerhafte Paketdateien), werden diese Pakete zur??ckgehalten und das " -"Ergebnis verarbeitet. Die Benutzung dieser Option zusammen mit <option>-f</" -"option> kann in einigen Situationen zu Fehlern f??hren. Wenn ein Paket zur " -"Installation ausgew??hlt ist (besonders, wenn es auf der Befehlszeile " -"genannt wurde) und es nicht heruntergeladen werden kann, wird es " -"stillschweigend zur??ckgehalten. Konfigurationselement: <literal>APT::Get::" -"Fix-Missing</literal>." +"Fehlende Pakete ignorieren; Wenn Pakete nicht heruntergeladen werden " +"können oder die Integritätsprüfung nach dem Herunterladen fehlschlägt " +"(fehlerhafte Paketdateien), werden diese Pakete zurückgehalten und das " +"Ergebnis verarbeitet. Die Benutzung dieser Option zusammen mit " +"<option>-f</option> kann in einigen Situationen zu Fehlern führen. Wenn " +"ein Paket zur Installation ausgewählt ist (besonders, wenn es auf der " +"Befehlszeile genannt wurde) und es nicht heruntergeladen werden kann, " +"wird es stillschweigend zurückgehalten. Konfigurationselement: " +"<literal>APT::Get::Fix-Missing</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:359 @@ -4186,14 +4282,15 @@ msgstr "<option>--no-download</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:360 msgid "" -"Disables downloading of packages. This is best used with <option>--ignore-" -"missing</option> to force APT to use only the .debs it has already " -"downloaded. Configuration Item: <literal>APT::Get::Download</literal>." +"Disables downloading of packages. This is best used with " +"<option>--ignore-missing</option> to force APT to use only the .debs it has " +"already downloaded. Configuration Item: " +"<literal>APT::Get::Download</literal>." msgstr "" "Schaltet das Herunterladen von Paketen aus. Dies wird am besten mit " -"<option>--ignore-missing</option> benutzt, um APT zu zwingen, nur die .debs " -"zu benutzten, die es bereits heruntergeladenen hat. Konfigurationselement: " -"<literal>APT::Get::Download</literal>." +"<option>--ignore-missing</option> benutzt, um APT zu zwingen, nur die " +".debs zu benutzten, die es bereits heruntergeladenen hat. " +"Konfigurationselement: <literal>APT::Get::Download</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:367 @@ -4206,14 +4303,15 @@ msgid "" "may decided to do something you did not expect. Configuration Item: " "<literal>quiet</literal>." msgstr "" -"Still; erzeugt eine Ausgabe, die f??r Protokollierung geeignet ist und " -"Fortschrittsanzeiger wegl??sst. Mehr ??q??s unterdr??cken mehr Ausgaben, bis " -"zu einem Maximum von 2. Sie k??nnen au??erdem <option>-q=#</option> " -"benutzen, um die Stillestufe zu setzen, was die Konfigurationsdatei ??" -"berschreibt. Beachten Sie, dass Stillestufe 2 <option>-y</option> " -"impliziert. Sie sollten niemals -qq ohne einen keine-Aktion-Umwandler, wie -" -"d, --print-uris oder -s benutzen, da APT entscheiden k??nnte, etwas zu tun, " -"das Sie nicht erwarten. Konfigurationselement: <literal>quiet</literal>." +"Still; erzeugt eine Ausgabe, die für Protokollierung geeignet ist und " +"Fortschrittsanzeiger weglässt. Mehr »q«s unterdrücken mehr Ausgaben, bis " +"zu einem Maximum von 2. Sie können außerdem <option>-q=#</option> " +"benutzen, um die Stillestufe zu setzen, was die Konfigurationsdatei " +"überschreibt. Beachten Sie, dass Stillestufe 2 <option>-y</option> " +"impliziert. Sie sollten niemals -qq ohne einen keine-Aktion-Umwandler, " +"wie -d, --print-uris oder -s benutzen, da APT entscheiden könnte, etwas " +"zu tun, das Sie nicht erwarten. Konfigurationselement: " +"<literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:377 @@ -4229,30 +4327,32 @@ msgstr "<option>--dry-run</option>" #: apt-get.8.xml:382 msgid "" "No action; perform a simulation of events that would occur but do not " -"actually change the system. Configuration Item: <literal>APT::Get::" -"Simulate</literal>." +"actually change the system. Configuration Item: " +"<literal>APT::Get::Simulate</literal>." msgstr "" -"Keine Aktion; f??hrt eine Simulation von Ereignissen aus, die eintreten w??" -"rden, aber das aktuelle System nicht ver??ndern. Konfigurationselement: " +"Keine Aktion; führt eine Simulation von Ereignissen aus, die eintreten " +"würden, aber das aktuelle System nicht verändern. Konfigurationselement: " "<literal>APT::Get::Simulate</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:386 msgid "" -"Simulation run as user will deactivate locking (<literal>Debug::NoLocking</" -"literal>) automatic. Also a notice will be displayed indicating that this " -"is only a simulation, if the option <literal>APT::Get::Show-User-Simulation-" -"Note</literal> is set (Default: true). Neither NoLocking nor the notice " -"will be triggered if run as root (root should know what he is doing without " -"further warnings by <literal>apt-get</literal>)." +"Simulation run as user will deactivate locking " +"(<literal>Debug::NoLocking</literal>) automatic. Also a notice will be " +"displayed indicating that this is only a simulation, if the option " +"<literal>APT::Get::Show-User-Simulation-Note</literal> is set (Default: " +"true). Neither NoLocking nor the notice will be triggered if run as root " +"(root should know what he is doing without further warnings by " +"<literal>apt-get</literal>)." msgstr "" -"Ausf??hrung der Simulation als normaler Anwender wird das Sperren " -"(<literal>Debug::NoLocking</literal>) automatisch deaktivieren. Au??erdem " +"Ausführung der Simulation als normaler Anwender wird das Sperren " +"(<literal>Debug::NoLocking</literal>) automatisch deaktivieren. Außerdem " "wird eine Mitteilung angezeigt, die angibt, dass dies nur eine Simulation " -"ist, wenn die Option <literal>APT::Get::Show-User-Simulation-Note</literal> " -"gesetzt ist (Vorgabe ist true). Weder NoLocking noch die Mitteilung werden " -"ausgel??st, wenn es als root ausgef??hrt wird (root sollte ohne weitere " -"Warnungen von <literal>apt-get</literal> wissen, was er tut)." +"ist, wenn die Option " +"<literal>APT::Get::Show-User-Simulation-Note</literal> gesetzt ist " +"(Vorgabe ist true). Weder NoLocking noch die Mitteilung werden ausgelöst, " +"wenn es als root ausgeführt wird (root sollte ohne weitere Warnungen von " +"<literal>apt-get</literal> wissen, was er tut)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:392 @@ -4262,10 +4362,11 @@ msgid "" "indicate broken packages with and empty set of square brackets meaning " "breaks that are of no consequence (rare)." msgstr "" -"Simulieren gibt eine Serie von Zeilen aus, von denen jede eine Dpkg-" -"Operation darstellt: Konfigurieren (Conf), Entfernen (Remv), Entpacken " -"(Inst). Eckige Klammern zeigen besch??digte Pakete an und ein leeres Paar " -"eckiger Klammern bedeutet Unterbrechungen, die keine Folgen haben (selten)." +"Simulieren gibt eine Serie von Zeilen aus, von denen jede eine " +"Dpkg-Operation darstellt: Konfigurieren (Conf), Entfernen (Remv), " +"Entpacken (Inst). Eckige Klammern zeigen beschädigte Pakete an und ein " +"leeres Paar eckiger Klammern bedeutet Unterbrechungen, die keine Folgen " +"haben (selten)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:399 @@ -4291,12 +4392,12 @@ msgid "" "essential package occurs then <literal>apt-get</literal> will abort. " "Configuration Item: <literal>APT::Get::Assume-Yes</literal>." msgstr "" -"Automatisches ??Ja?? auf Anfragen; Versucht ??Ja?? auf alle Anfragen zu " -"antworten und ohne Eingaben zu laufen. Wenn eine unerw??nschte Situation " -"eintritt, wie ein gehaltenes Paket zu ??ndern, ein nicht authentifiziert " -"Paket zu installieren oder ein essentielles Paket zu entfernen, dann wird " -"<literal>apt-get</literal> abgebrochen. Konfigurationselement: <literal>APT::" -"Get::Assume-Yes</literal>." +"Automatisches »Ja« auf Anfragen; Versucht »Ja« auf alle Anfragen zu " +"antworten und ohne Eingaben zu laufen. Wenn eine unerwünschte Situation " +"eintritt, wie ein gehaltenes Paket zu ändern, ein nicht authentifiziert " +"Paket zu installieren oder ein essentielles Paket zu entfernen, dann " +"wird <literal>apt-get</literal> abgebrochen. Konfigurationselement: " +"<literal>APT::Get::Assume-Yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:408 @@ -4314,7 +4415,7 @@ msgid "" "Show upgraded packages; Print out a list of all packages that are to be " "upgraded. Configuration Item: <literal>APT::Get::Show-Upgraded</literal>." msgstr "" -"Zeigt Pakete, von denen ein Upgrade durchgef??hrt werden soll; Gibt eine " +"Zeigt Pakete, von denen ein Upgrade durchgeführt werden soll; Gibt eine " "Liste aller Pakete aus, von denen ein Upgrade gemacht wurde. " "Konfigurationselement: <literal>APT::Get::Show-Upgraded</literal>." @@ -4334,9 +4435,9 @@ msgid "" "Show full versions for upgraded and installed packages. Configuration Item: " "<literal>APT::Get::Show-Versions</literal>." msgstr "" -"Zeigt vollst??ndige Versionen f??r Pakete, von denen ein Upgrade durchgef??" -"hrt oder die installiert wurden. Konfigurationselement: <literal>APT::Get::" -"Show-Versions</literal>." +"Zeigt vollständige Versionen für Pakete, von denen ein Upgrade " +"durchgeführt oder die installiert wurden. Konfigurationselement: " +"<literal>APT::Get::Show-Versions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:419 @@ -4370,7 +4471,7 @@ msgstr "<option>--install-recommends</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:426 msgid "Also install recommended packages." -msgstr "Installiert au??erdem empfohlene Pakete." +msgstr "Installiert außerdem empfohlene Pakete." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:430 @@ -4390,11 +4491,11 @@ msgid "" "<literal>dist-upgrade</literal> to override a large number of undesired " "holds. Configuration Item: <literal>APT::Ignore-Hold</literal>." msgstr "" -"Ignoriert zur??ckhalten des Paketes; Dies veranlasst <command>apt-get</" -"command>, ein f??r das Paket gesetztes ??Halten?? zu ignorieren. Dies kann " -"zusammen mit <literal>dist-upgrade</literal> n??tzlich sein, um eine gro??e " -"Anzahl ungew??nschter ??Halten?? zu ??berschreiben. Konfigurationselement: " -"<literal>APT::Ignore-Hold</literal>." +"Ignoriert zurückhalten des Paketes; Dies veranlasst " +"<command>apt-get</command>, ein für das Paket gesetztes »Halten« zu " +"ignorieren. Dies kann zusammen mit <literal>dist-upgrade</literal> " +"nützlich sein, um eine große Anzahl ungewünschter »Halten« zu " +"überschreiben. Konfigurationselement: <literal>APT::Ignore-Hold</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:440 @@ -4404,16 +4505,16 @@ msgstr "<option>--no-upgrade</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:441 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>." +"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>." msgstr "" -"Kein Upgrade von Paketen durchf??hren; Wenn es zusammen mit " -"<literal>install</literal> benutzt wird, wird <literal>no-upgrade</literal> " -"auf der Befehlszeile ein Upgrade von Paketen verhindern, wenn sie bereits " -"installiert sind. Konfigurationselement: <literal>APT::Get::Upgrade</" -"literal>." +"Kein Upgrade von Paketen durchführen; Wenn es zusammen mit " +"<literal>install</literal> benutzt wird, wird " +"<literal>no-upgrade</literal> auf der Befehlszeile ein Upgrade von " +"Paketen verhindern, wenn sie bereits installiert sind. " +"Konfigurationselement: <literal>APT::Get::Upgrade</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:447 @@ -4425,15 +4526,16 @@ msgstr "<option>--force-yes</option>" msgid "" "Force yes; This is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " -"not be used except in very special situations. Using <literal>force-yes</" -"literal> can potentially destroy your system! Configuration Item: " +"not be used except in very special situations. Using " +"<literal>force-yes</literal> can potentially destroy your system! " +"Configuration Item: <literal>APT::Get::force-yes</literal>." +msgstr "" +"»Ja« erzwingen; Dies ist eine gefährliche Option, die APT veranlasst, " +"ohne Nachfrage fortzufahren, wenn es etwas möglicherweise schädliches " +"tut. Es sollte nicht benutzt werden, außer in ganz besonderen " +"Situationen. <literal>force-yes</literal> zu benutzen, kann " +"möglicherweise ihr System zerstören! Konfigurationselement: " "<literal>APT::Get::force-yes</literal>." -msgstr "" -"??Ja?? erzwingen; Dies ist eine gef??hrliche Option, die APT veranlasst, " -"ohne Nachfrage fortzufahren, wenn es etwas m??glicherweise sch??dliches tut. " -"Es sollte nicht benutzt werden, au??er in ganz besonderen Situationen. " -"<literal>force-yes</literal> zu benutzen, kann m??glicherweise ihr System " -"zerst??ren! Konfigurationselement: <literal>APT::Get::force-yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:455 @@ -4447,39 +4549,42 @@ msgid "" "will have the path, the destination file name, the size and the expected md5 " "hash. Note that the file name to write to will not always match the file " "name on the remote site! This also works with the <literal>source</literal> " -"and <literal>update</literal> commands. When used with the <literal>update</" -"literal> command the MD5 and size are not included, and it is up to the user " -"to decompress any compressed files. Configuration Item: <literal>APT::Get::" -"Print-URIs</literal>." -msgstr "" -"Anstatt die Dateien herunterzuladen, werden ihre URIs ausgegeben. Jede URI " -"wird den Pfad, den Zieldateinamen, die Gr????e und den erwarteten md5-Hash " -"enthalten. Beachten Sie, dass der zu schreibende Dateiname nicht immer dem " -"Dateinamen auf der entfernt gelegenen Seite entspricht. Dies funktioniert " -"auch mit den Befehlen <literal>source</literal> und <literal>update</" -"literal>. Wenn es mit dem Befehl <literal>update</literal> benutzt wird, " -"sind MD5 und Gr????e nicht enthalten und es ist Aufgabe des Benutzers, " -"komprimierte Dateien zu dekomprimieren. Konfigurationselement: <literal>APT::" -"Get::Print-URIs</literal>." +"and <literal>update</literal> commands. When used with the " +"<literal>update</literal> command the MD5 and size are not included, and it " +"is up to the user to decompress any compressed files. Configuration Item: " +"<literal>APT::Get::Print-URIs</literal>." +msgstr "" +"Anstatt die Dateien herunterzuladen, werden ihre URIs ausgegeben. Jede " +"URI wird den Pfad, den Zieldateinamen, die Größe und den erwarteten " +"md5-Hash enthalten. Beachten Sie, dass der zu schreibende Dateiname nicht " +"immer dem Dateinamen auf der entfernt gelegenen Seite entspricht. Dies " +"funktioniert auch mit den Befehlen <literal>source</literal> und " +"<literal>update</literal>. Wenn es mit dem Befehl " +"<literal>update</literal> benutzt wird, sind MD5 und Größe nicht " +"enthalten und es ist Aufgabe des Benutzers, komprimierte Dateien zu " +"dekomprimieren. Konfigurationselement: " +"<literal>APT::Get::Print-URIs</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:466 msgid "<option>--purge</option>" msgstr "<option>--purge</option>" -# s/equivalent for/equivalent to the/ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:467 +# s/equivalent for/equivalent to the/ 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>." +"(\"*\") 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>." msgstr "" -"??remove?? ??purge?? f??r alles zu entfernende benutzen. Ein Stern (??*??) " -"wird bei Paketen angezeigt, die zum vollst??ndigen Entfernen vorgemerkt " -"sind. <option>remove --purge</option> entspricht dem Befehl <option>purge</" -"option>. Konfigurationselement: <literal>APT::Get::Purge</literal>." +"»remove« »purge« für alles zu entfernende benutzen. Ein Stern (»*«) wird " +"bei Paketen angezeigt, die zum vollständigen Entfernen vorgemerkt sind. " +"<option>remove --purge</option> entspricht dem Befehl " +"<option>purge</option>. Konfigurationselement: " +"<literal>APT::Get::Purge</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:474 @@ -4493,7 +4598,8 @@ msgid "" "Configuration Item: <literal>APT::Get::ReInstall</literal>." msgstr "" "Paket erneut installieren, die bereits installiert und in der neuesten " -"Version sind. Konfigurationselement: <literal>APT::Get::ReInstall</literal>." +"Version sind. Konfigurationselement: " +"<literal>APT::Get::ReInstall</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:479 @@ -4507,15 +4613,16 @@ msgid "" "it off. When on <command>apt-get</command> will automatically manage the " "contents of <filename>&statedir;/lists</filename> to ensure that obsolete " "files are erased. The only reason to turn it off is if you frequently " -"change your source list. Configuration Item: <literal>APT::Get::List-" -"Cleanup</literal>." -msgstr "" -"Diese Option ist standardm????ig eingeschaltet. Um sie auszuschalten, " -"benutzen Sie <literal>--no-list-cleanup</literal>. Wenn eingeschaltet, wird " -"<command>apt-get</command> den Inhalt von <filename>&statedir;/lists</" -"filename> automatisch verwalten, um sicherzustellen, dass veraltete Dateien " -"gel??scht werden. Nur das h??ufige ??ndern der Quelllisten stellt den " -"einzigen Grund zum Ausschalten der Option dar.Konfigurationselement: " +"change your source list. Configuration Item: " +"<literal>APT::Get::List-Cleanup</literal>." +msgstr "" +"Diese Option ist standardmäßig eingeschaltet. Um sie auszuschalten, benutzen " +"Sie <literal>--no-list-cleanup</literal>. Wenn eingeschaltet, wird " +"<command>apt-get</command> den Inhalt von " +"<filename>&statedir;/lists</filename> automatisch verwalten, um " +"sicherzustellen, dass veraltete Dateien gelöscht werden. Nur das häufige " +"Ändern der Quelllisten stellt den einzigen Grund zum Ausschalten der " +"Option dar.Konfigurationselement: " "<literal>APT::Get::List-Cleanup</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -4533,25 +4640,27 @@ msgstr "<option>--default-release</option>" msgid "" "This option controls the default input to the policy engine, it creates a " "default pin at priority 990 using the specified release string. This " -"overrides the general settings in <filename>/etc/apt/preferences</" -"filename>. Specifically pinned packages are not affected by the value of " -"this option. In short, this option lets you have simple control over which " -"distribution packages will be retrieved from. Some common examples might be " -"<option>-t '2.1*'</option>, <option>-t unstable</option> or <option>-t sid</" -"option>. Configuration Item: <literal>APT::Default-Release</literal>; see " -"also the &apt-preferences; manual page." -msgstr "" -"Diese Option steuert die standardm????ige Eingabe an die Einheit zur " -"Durchsetzung der Richtlinien (??policy??), sie erstellt eine Vorgabe-Pin mit " -"Priorit??t 990 unter Benutzung der angegebenen Release-Zeichenkette. Dies ??" -"berschreibt die allgemeinen Einstellungen in <filename>/etc/apt/preferences</" -"filename>. Pakete mit speziellem Pinning sind nicht vom Wert dieser Option " -"betroffen. Kurz gesagt, gibt Ihnen diese Option einfache Kontrolle dar??ber, " -"welche Distributions-Pakete heruntergeladen werden sollen. Einige typische " -"Beispiele k??nnten <option>-t '2.1*'</option>, <option>-t unstable</option> " -"oder <option>-t sid</option> sein. Konfigurationselement: <literal>APT::" -"Default-Release</literal>; Lesen Sie auch die &apt-preferences;-" -"Handbuchseite." +"overrides the general settings in " +"<filename>/etc/apt/preferences</filename>. Specifically pinned packages are " +"not affected by the value of this option. In short, this option lets you " +"have simple control over which distribution packages will be retrieved " +"from. Some common examples might be <option>-t '2.1*'</option>, <option>-t " +"unstable</option> or <option>-t sid</option>. Configuration Item: " +"<literal>APT::Default-Release</literal>; see also the &apt-preferences; " +"manual page." +msgstr "" +"Diese Option steuert die standardmäßige Eingabe an die Einheit zur " +"Durchsetzung der Richtlinien (»policy«), sie erstellt eine Vorgabe-Pin " +"mit Priorität 990 unter Benutzung der angegebenen Release-Zeichenkette. " +"Dies überschreibt die allgemeinen Einstellungen in " +"<filename>/etc/apt/preferences</filename>. Pakete mit speziellem Pinning " +"sind nicht vom Wert dieser Option betroffen. Kurz gesagt, gibt Ihnen " +"diese Option einfache Kontrolle darüber, welche Distributions-Pakete " +"heruntergeladen werden sollen. Einige typische Beispiele könnten " +"<option>-t '2.1*'</option>, <option>-t unstable</option> oder " +"<option>-t sid</option> sein. Konfigurationselement: " +"<literal>APT::Default-Release</literal>; Lesen Sie auch die " +"&apt-preferences;-Handbuchseite." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:504 @@ -4562,15 +4671,16 @@ msgstr "<option>--trivial-only</option>" #: apt-get.8.xml:506 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " -"related to <option>--assume-yes</option>, where <option>--assume-yes</" -"option> will answer yes to any prompt, <option>--trivial-only</option> will " -"answer no. Configuration Item: <literal>APT::Get::Trivial-Only</literal>." +"related to <option>--assume-yes</option>, where " +"<option>--assume-yes</option> will answer yes to any prompt, " +"<option>--trivial-only</option> will answer no. Configuration Item: " +"<literal>APT::Get::Trivial-Only</literal>." msgstr "" -"Nur Operationen ausf??hren, die ??trivial?? sind. Logischerweise kann dies " -"in Betracht bezogen auf <option>--assume-yes</option> sein, wobei <option>--" -"assume-yes</option> auf jede Frage mit ??Ja?? und <option>--trivial-only</" -"option> mit ??Nein?? antworten wird. Konfigurationselement: <literal>APT::" -"Get::Trivial-Only</literal>." +"Nur Operationen ausführen, die »trivial« sind. Logischerweise kann dies " +"in Betracht bezogen auf <option>--assume-yes</option> sein, wobei " +"<option>--assume-yes</option> auf jede Frage mit »Ja« und " +"<option>--trivial-only</option> mit »Nein« antworten wird. " +"Konfigurationselement: <literal>APT::Get::Trivial-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:512 @@ -4583,8 +4693,9 @@ msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." msgstr "" -"Wenn irgendwelche Pakete entfernt werden sollen, bricht apt-get sofort ohne " -"Nachfrage ab. Konfigurationselement: <literal>APT::Get::Remove</literal>." +"Wenn irgendwelche Pakete entfernt werden sollen, bricht apt-get sofort " +"ohne Nachfrage ab. Konfigurationselement: " +"<literal>APT::Get::Remove</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:518 @@ -4594,16 +4705,16 @@ msgstr "<option>--auto-remove</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:519 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>." +"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>." 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>." +"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>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:525 @@ -4613,21 +4724,21 @@ msgstr "<option>--only-source</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:526 msgid "" -"Only has meaning for the <literal>source</literal> and <literal>build-dep</" -"literal> commands. Indicates that the given source names are not to be " -"mapped through the binary table. This means that if this option is " -"specified, these commands will only accept source package names as " -"arguments, rather than accepting binary package names and looking up the " -"corresponding source package. Configuration Item: <literal>APT::Get::Only-" -"Source</literal>." +"Only has meaning for the <literal>source</literal> and " +"<literal>build-dep</literal> commands. Indicates that the given source " +"names are not to be mapped through the binary table. This means that if " +"this option is specified, these commands will only accept source package " +"names as arguments, rather than accepting binary package names and looking " +"up the corresponding source package. Configuration Item: " +"<literal>APT::Get::Only-Source</literal>." msgstr "" -"Hat nur eine Bedeutung f??r die Befehle <literal>source</literal> und " +"Hat nur eine Bedeutung für die Befehle <literal>source</literal> und " "<literal>build-dep</literal>. Zeigt an, dass die angegebenen Quellnamen " -"nicht durch die Programmtabelle ermittelt werden. Dies bedeutet, das dieser " -"Befehl, wenn diese Option angegeben ist, nur Quellpaketnamen als Argumente " -"akzeptiert, anstatt Programmpakete zu akzeptieren und nach den " -"entsprechenden Quellpaketen zu suchen. Konfigurationselement: <literal>APT::" -"Get::Only-Source</literal>." +"nicht durch die Programmtabelle ermittelt werden. Dies bedeutet, das " +"dieser Befehl, wenn diese Option angegeben ist, nur Quellpaketnamen als " +"Argumente akzeptiert, anstatt Programmpakete zu akzeptieren und nach den " +"entsprechenden Quellpaketen zu suchen. Konfigurationselement: " +"<literal>APT::Get::Only-Source</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:536 @@ -4648,13 +4759,14 @@ msgstr "<option>--tar-only</option>" #: apt-get.8.xml:537 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " -"Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" -"literal>, and <literal>APT::Get::Tar-Only</literal>." +"Item: <literal>APT::Get::Diff-Only</literal>, " +"<literal>APT::Get::Dsc-Only</literal>, and " +"<literal>APT::Get::Tar-Only</literal>." msgstr "" "Nur die diff-, dsc-, oder tar-Dateien eines Quellarchivs herunterladen. " "Konfigurationselemente: <literal>APT::Get::Diff-Only</literal>, " -"<literal>APT::Get::Dsc-Only</literal> und <literal>APT::Get::Tar-Only</" -"literal>." +"<literal>APT::Get::Dsc-Only</literal> und " +"<literal>APT::Get::Tar-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:542 @@ -4667,7 +4779,7 @@ msgid "" "Only process architecture-dependent build-dependencies. Configuration Item: " "<literal>APT::Get::Arch-Only</literal>." msgstr "" -"Nur architekturabh??ngige Bauabh??ngigkeiten verarbeiten. " +"Nur architekturabhängige Bauabhängigkeiten verarbeiten. " "Konfigurationselement: <literal>APT::Get::Arch-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -4679,11 +4791,11 @@ msgstr "<option>--allow-unauthenticated</option>" #: apt-get.8.xml:548 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::" -"AllowUnauthenticated</literal>." +"is useful for tools like pbuilder. Configuration Item: " +"<literal>APT::Get::AllowUnauthenticated</literal>." msgstr "" -"Ignorieren, wenn Pakete nicht authentifiziert werden k??nnen und nicht " -"danach fragen. Dies ist f??r Werkzeuge wie pbuilder n??tzlich. " +"Ignorieren, wenn Pakete nicht authentifiziert werden können und nicht " +"danach fragen. Dies ist für Werkzeuge wie pbuilder nützlich. " "Konfigurationselement: <literal>APT::Get::AllowUnauthenticated</literal>." #. type: Content of: <refentry><refsect1><variablelist> @@ -4699,12 +4811,12 @@ msgstr "" #: apt-get.8.xml:570 msgid "" "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " -"&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" -"preferences;, the APT Howto." +"&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, " +"&apt-preferences;, the APT Howto." msgstr "" "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " -"&apt-config;, &apt-secure;, Die APT-Benutzeranleitung in &guidesdir;, &apt-" -"preferences;, das APT-Howto." +"&apt-config;, &apt-secure;, Die APT-Benutzeranleitung in &guidesdir;, " +"&apt-preferences;, das APT-Howto." #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:576 @@ -4712,8 +4824,8 @@ msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." msgstr "" -"<command>apt-get</command> gibt bei normalen Operationen 0 zur??ck, dezimal " -"100 bei Fehlern." +"<command>apt-get</command> gibt bei normalen Operationen 0 zurück, " +"dezimal 100 bei Fehlern." #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:579 @@ -4743,18 +4855,18 @@ msgstr "apt-key" #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-key.8.xml:22 msgid "APT key management utility" -msgstr "APT-Schl??sselverwaltungsdienstprogramm" +msgstr "APT-Schlüsselverwaltungsdienstprogramm" #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-key.8.xml:28 msgid "" "<command>apt-key</command> <arg><replaceable>command</replaceable>/</arg> " -"<arg rep=\"repeat\"><option><replaceable>arguments</replaceable></option></" -"arg>" +"<arg " +"rep=\"repeat\"><option><replaceable>arguments</replaceable></option></arg>" msgstr "" "<command>apt-key</command> <arg><replaceable>Befehl</replaceable>/</arg> " -"<arg rep=\"repeat\"><option><replaceable>Argumente</replaceable></option></" -"arg>" +"<arg " +"rep=\"repeat\"><option><replaceable>Argumente</replaceable></option></arg>" #. type: Content of: <refentry><refsect1><para> #: apt-key.8.xml:36 @@ -4763,10 +4875,10 @@ msgid "" "authenticate packages. Packages which have been authenticated using these " "keys will be considered trusted." msgstr "" -"<command>apt-key</command> wird benutzt, um eine Liste von Schl??sseln zu " -"verwalten, die APT benutzt, um Pakete zu authentifizieren. Pakete, die durch " -"Benutzung dieser Schl??ssel authentifiziert wurden, werden als vertrauensw??" -"rdig betrachtet." +"<command>apt-key</command> wird benutzt, um eine Liste von Schlüsseln zu " +"verwalten, die APT benutzt, um Pakete zu authentifizieren. Pakete, die " +"durch Benutzung dieser Schlüssel authentifiziert wurden, werden als " +"vertrauenswürdig betrachtet." #. type: Content of: <refentry><refsect1><title> #: apt-key.8.xml:42 @@ -4785,32 +4897,32 @@ msgid "" "<replaceable>filename</replaceable>, or standard input if " "<replaceable>filename</replaceable> is <literal>-</literal>." msgstr "" -"Einen neuen Schl??ssel zur Liste der vertrauensw??rdigen Schl??ssel hinzuf??" -"gen. Der Schl??ssel wird aus <replaceable>Dateiname</replaceable> gelesen " -"oder, wenn <replaceable>Dateiname</replaceable> <literal>-</literal> ist, " -"von der Standardeingabe." +"Einen neuen Schlüssel zur Liste der vertrauenswürdigen Schlüssel " +"hinzufügen. Der Schlüssel wird aus <replaceable>Dateiname</replaceable> " +"gelesen oder, wenn <replaceable>Dateiname</replaceable> " +"<literal>-</literal> ist, von der Standardeingabe." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:56 msgid "del <replaceable>keyid</replaceable>" -msgstr "del <replaceable>Schl??ssel-ID</replaceable>" +msgstr "del <replaceable>Schlüssel-ID</replaceable>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:60 msgid "Remove a key from the list of trusted keys." msgstr "" -"Einen Schl??ssel von der Liste der vertrauensw??rdigen Schl??ssel entfernen." +"Einen Schlüssel von der Liste der vertrauenswürdigen Schlüssel entfernen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:67 msgid "export <replaceable>keyid</replaceable>" -msgstr "export <replaceable>Schl??ssel-ID</replaceable>" +msgstr "export <replaceable>Schlüssel-ID</replaceable>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:71 msgid "Output the key <replaceable>keyid</replaceable> to standard output." msgstr "" -"Den Schl??ssel <replaceable>Schl??ssel-ID</replaceable> auf der " +"Den Schlüssel <replaceable>Schlüssel-ID</replaceable> auf der " "Standardausgabe ausgeben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -4821,7 +4933,7 @@ msgstr "exportall" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:82 msgid "Output all trusted keys to standard output." -msgstr "Alle vertrauensw??rdigen Schl??ssel auf der Standardausgabe ausgeben." +msgstr "Alle vertrauenswürdigen Schlüssel auf der Standardausgabe ausgeben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:89 @@ -4831,7 +4943,7 @@ msgstr "list" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:93 msgid "List trusted keys." -msgstr "Vertrauensw??rdige Schl??ssel auflisten." +msgstr "Vertrauenswürdige Schlüssel auflisten." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:100 @@ -4841,7 +4953,7 @@ msgstr "finger" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:104 msgid "List fingerprints of trusted keys." -msgstr "Fingerabdr??cke vertrauensw??rdiger Schl??ssel auflisten." +msgstr "Fingerabdrücke vertrauenswürdiger Schlüssel auflisten." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:111 @@ -4854,8 +4966,8 @@ msgid "" "Pass advanced options to gpg. With adv --recv-key you can download the " "public key." msgstr "" -"Erweitere Optionen an gpg weiterleiten. Mit adv --recv-key k??nnen Sie den ??" -"ffentlichen Schl??ssel herunterladen." +"Erweitere Optionen an gpg weiterleiten. Mit adv --recv-key können Sie den " +"öffentlichen Schlüssel herunterladen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:127 @@ -4863,9 +4975,9 @@ 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 nicht l??nger g??ltig sind." +"Den lokalen Schlüsselring mit dem Schlüsselring der Debian-Archivschlüssel " +"aktualisieren und aus dem Schlüsselring die Archivschlüssel entfernen, die " +"nicht länger gültig sind." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:140 @@ -4876,8 +4988,8 @@ msgstr "<filename>/etc/apt/trusted.gpg</filename>" #: apt-key.8.xml:141 msgid "Keyring of local trusted keys, new keys will be added here." msgstr "" -"Schl??sselring der lokalen vertrauensw??rdigen Schl??ssel, neue Schl??ssel " -"werden hier hinzugef??gt." +"Schlüsselring der lokalen vertrauenswürdigen Schlüssel, neue Schlüssel " +"werden hier hinzugefügt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:144 @@ -4887,7 +4999,7 @@ msgstr "<filename>/etc/apt/trustdb.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:145 msgid "Local trust database of archive keys." -msgstr "Lokale Datenbank vertrauensw??rdiger Archivschl??ssel." +msgstr "Lokale Datenbank vertrauenswürdiger Archivschlüssel." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:148 @@ -4897,20 +5009,18 @@ msgstr "<filename>/usr/share/keyrings/debian-archive-keyring.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:149 msgid "Keyring of Debian archive trusted keys." -msgstr "Schl??sselring vertrauensw??rdiger Schl??ssel des Debian-Archivs." +msgstr "Schlüsselring vertrauenswürdiger Schlüssel des Debian-Archivs." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:152 -msgid "" -"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" -msgstr "" -"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" +msgid "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" +msgstr "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:153 msgid "Keyring of Debian archive removed trusted keys." msgstr "" -"Schl??sselring entfernter vertrauensw??rdiger Schl??ssel des Debian-Archivs." +"Schlüsselring entfernter vertrauenswürdiger Schlüssel des Debian-Archivs." #. type: Content of: <refentry><refsect1><para> #: apt-key.8.xml:164 @@ -4924,8 +5034,8 @@ 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>9. " -"August 2009</date>" +"&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>" +"9. August 2009</date>" #. type: Content of: <refentry><refnamediv><refname> #: apt-mark.8.xml:22 apt-mark.8.xml:29 @@ -4942,19 +5052,21 @@ msgstr "" #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-mark.8.xml:36 msgid "" -" <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>" -msgstr "" -" <command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-" -"f=<replaceable>DATEINAME</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>Paket</replaceable></arg> </" -"arg> <arg choice=\"plain\">showauto</arg> </group>" +" <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>" +msgstr "" +" <command>apt-mark</command> <arg><option>-hv</option></arg> " +"<arg><option>-f=<replaceable>DATEINAME</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>Paket</replaceable></arg> </arg> <arg " +"choice=\"plain\">showauto</arg> </group>" #. type: Content of: <refentry><refsect1><para> #: apt-mark.8.xml:53 @@ -4962,7 +5074,7 @@ msgid "" "<command>apt-mark</command> will change whether a package has been marked as " "being automatically installed." msgstr "" -"<command>apt-mark</command> wird ??ndern, ob ein Paket als automatisch " +"<command>apt-mark</command> wird ändern, ob ein Paket als automatisch " "installiert markiert ist." #. type: Content of: <refentry><refsect1><para> @@ -4975,10 +5087,10 @@ msgid "" "removed by e.g. <command>apt-get</command> or <command>aptitude</command>." msgstr "" "Wenn Sie die Installation eines Paketes anfordern und andere Pakete " -"installiert werden, um dessen Abh??ngigkeiten zu erf??llen, werden die Abh??" -"ngigkeiten als automatisch installiert markiert. Sobald keine manuell " -"installierten Pakete mehr von diesen automatisch installierten Paketen abh??" -"ngen, werden sie z.B durch <command>apt-get</command> oder " +"installiert werden, um dessen Abhängigkeiten zu erfüllen, werden die " +"Abhängigkeiten als automatisch installiert markiert. Sobald keine manuell " +"installierten Pakete mehr von diesen automatisch installierten Paketen " +"abhängen, werden sie z.B durch <command>apt-get</command> oder " "<command>aptitude</command> entfernt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -4994,8 +5106,8 @@ msgid "" "installed packages depend on this package." msgstr "" "<literal>markauto</literal> wird benutzt, um ein Paket als automatisch " -"installiert zu markieren, was veranlasst, dass das Paket entfernt wird, wenn " -"keine manuell installierten Pakete von ihm abh??ngen." +"installiert zu markieren, was veranlasst, dass das Paket entfernt wird, " +"wenn keine manuell installierten Pakete von ihm abhängen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-mark.8.xml:73 @@ -5011,7 +5123,7 @@ msgid "" msgstr "" "<literal>markauto</literal> wird benutzt, um ein Paket als manuell " "installiert zu markieren, was verhindert, dass das Paket automatisch " -"entfernt wird, wenn kein anderes Paket von ihm abh??ngt." +"entfernt wird, wenn kein anderes Paket von ihm abhängt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-mark.8.xml:81 @@ -5029,32 +5141,28 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-mark.8.xml:93 -msgid "" -"<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>" +msgid "<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>" msgstr "" "<option>-f=<filename><replaceable>DATEINAME</replaceable></filename></option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-mark.8.xml:94 -msgid "" -"<option>--file=<filename><replaceable>FILENAME</replaceable></filename></" -"option>" +msgid "<option>--file=<filename><replaceable>FILENAME</replaceable></filename></option>" msgstr "" -"<option>--file=<filename><replaceable>DATEINAME</replaceable></filename></" -"option>" +"<option>--file=<filename><replaceable>DATEINAME</replaceable></filename></option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:97 msgid "" -"Read/Write package stats from <filename><replaceable>FILENAME</replaceable></" -"filename> instead of the default location, which is " -"<filename>extended_status</filename> in the directory defined by the " -"Configuration Item: <literal>Dir::State</literal>." +"Read/Write package stats from " +"<filename><replaceable>FILENAME</replaceable></filename> instead of the " +"default location, which is <filename>extended_status</filename> in the " +"directory defined by the Configuration Item: <literal>Dir::State</literal>." msgstr "" "Paketstatus von <filename><replaceable>DATEINAME</replaceable></filename> " -"lesen/schreiben, anstatt vom Standardort, der <filename>extended_status</" -"filename> im von Konfigurationselement <literal>Dir::State</literal> " -"definierten Verzeichnis, ist." +"lesen/schreiben, anstatt vom Standardort, der " +"<filename>extended_status</filename> im von Konfigurationselement " +"<literal>Dir::State</literal> definierten Verzeichnis, ist." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-mark.8.xml:103 @@ -5094,9 +5202,9 @@ msgstr "<filename>/var/lib/apt/extended_states</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:125 msgid "" -"Status list of auto-installed packages. Configuration Item: <literal>Dir::" -"State</literal> sets the path to the <filename>extended_states</filename> " -"file." +"Status list of auto-installed packages. Configuration Item: " +"<literal>Dir::State</literal> sets the path to the " +"<filename>extended_states</filename> file." msgstr "" "Statusliste automatisch installierter Pakete. Konfigurationselement: " "<literal>Dir::State</literal> setzt den Pfad zur Datei " @@ -5113,7 +5221,7 @@ msgid "" "<command>apt-mark</command> returns zero on normal operation, non-zero on " "error." msgstr "" -"<command>apt-mark</command> gibt bei normalen Operationen Null zur??ck, bei " +"<command>apt-mark</command> gibt bei normalen Operationen Null zurück, bei " "Fehlern nicht Null." #. type: Content of: <refentry><refnamediv><refname> @@ -5124,7 +5232,7 @@ msgstr "apt-secure" #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-secure.8.xml:37 msgid "Archive authentication support for APT" -msgstr "Archivauthentifizierungsunterst??tzung f??r APT" +msgstr "Archivauthentifizierungsunterstützung für APT" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:42 @@ -5134,10 +5242,10 @@ msgid "" "packages in the archive can't be modified by people who have no access to " "the Release file signing key." msgstr "" -"Beginnend mit Version 0.6 enth??lt <command>apt</command> Code, der die " -"Signatur der Release-Datei f??r alle Archive pr??ft. Dies stellt sicher, " -"dass Pakete im Archiv nicht von Leuten ge??ndert werden k??nnen, die keinen " -"Zugriff auf den Signierschl??ssel der Release-Datei haben." +"Beginnend mit Version 0.6 enthält <command>apt</command> Code, der die " +"Signatur der Release-Datei für alle Archive prüft. Dies stellt sicher, dass " +"Pakete im Archiv nicht von Leuten geändert werden können, die keinen " +"Zugriff auf den Signierschlüssel der Release-Datei haben." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:50 @@ -5149,11 +5257,11 @@ msgid "" "sources to be verified before downloading packages from them." msgstr "" "Wenn ein Paket aus einem Archiv ohne Signatur stammt oder einem mit " -"Signatur, f??r das APT keinen Schl??ssel hat, wird dieses Paket als nicht " -"vertrauensw??rdig angesehen und es zu installieren, f??hrt zu einer gro??en " -"Warnung. <command>apt-get</command> wird aktuell nur bei nicht signierten " -"Archiven warnen, zuk??nftige Releases k??nnten die Pr??fung aller Quellen " -"vor dem Herunterladen von Paketen von dort erzwingen." +"Signatur, für das APT keinen Schlüssel hat, wird dieses Paket als nicht " +"vertrauenswürdig angesehen und es zu installieren, führt zu einer großen " +"Warnung. <command>apt-get</command> wird aktuell nur bei nicht " +"signierten Archiven warnen, zukünftige Releases könnten die Prüfung aller " +"Quellen vor dem Herunterladen von Paketen von dort erzwingen." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:59 @@ -5161,13 +5269,13 @@ msgid "" "The package frontends &apt-get;, &aptitude; and &synaptic; support this new " "authentication feature." msgstr "" -"Die Paketoberfl??chen &apt-get;, &aptitude; und &synaptic; unterst??tzen " +"Die Paketoberflächen &apt-get;, &aptitude; und &synaptic; unterstützen " "diese neue Authentifizierungsfunktion." #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml:64 msgid "Trusted archives" -msgstr "Vertrauensw??rdige Archive" +msgstr "Vertrauenswürdige Archive" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:67 @@ -5180,12 +5288,12 @@ msgid "" "archive integrity is correct." msgstr "" "Eine Kette des Vertrauens von einem APT-Archiv zum Endanwender wird durch " -"verschiedene Schritte erreicht. <command>apt-secure</command> ist der letzte " -"Schritt in dieser Kette. Einem Archiv zu vertrauen bedeutet nicht, dass das " -"Paket, dem Sie vertrauen, keinen schadhaften Code enth??lt, aber es " -"bedeutet, dass Sie dem Archivbetreuer vertrauen. Der Archivbetreuer ist daf??" -"r verantwortlich, dass er die Korrektheit der Integrit??t des Archivs " -"sicherstellt." +"verschiedene Schritte erreicht. <command>apt-secure</command> ist der " +"letzte Schritt in dieser Kette. Einem Archiv zu vertrauen bedeutet nicht, " +"dass das Paket, dem Sie vertrauen, keinen schadhaften Code enthält, aber " +"es bedeutet, dass Sie dem Archivbetreuer vertrauen. Der Archivbetreuer " +"ist dafür verantwortlich, dass er die Korrektheit der Integrität des " +"Archivs sicherstellt." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:75 @@ -5195,8 +5303,8 @@ msgid "" "<command>debsign</command> (provided in the debsig-verify and devscripts " "packages respectively)." msgstr "" -"apt-secure ??berpr??ft keine Signaturen auf einer Ebene des Pakets. Falls " -"Sie ein Werkzeug ben??tigen, das dies tut, sollten Sie einen Blick auf " +"apt-secure überprüft keine Signaturen auf einer Ebene des Pakets. Falls " +"Sie ein Werkzeug benötigen, das dies tut, sollten Sie einen Blick auf " "<command>debsig-verify</command> und <command>debsign</command> werfen " "(bereitgestellt von den Paketen debsig-verify beziehungsweise devscripts)." @@ -5206,17 +5314,17 @@ msgid "" "The chain of trust in Debian starts when a maintainer uploads a new package " "or a new version of a package to the Debian archive. This upload in order to " "become effective needs to be signed by a key of a maintainer within the " -"Debian maintainer's keyring (available in the debian-keyring package). " -"Maintainer's keys are signed by other maintainers following pre-established " -"procedures to ensure the identity of the key holder." +"Debian maintainer's keyring (available in the debian-keyring " +"package). Maintainer's keys are signed by other maintainers following " +"pre-established procedures to ensure the identity of the key holder." 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-keyring) " -"signiert werden. Betreuerschl??ssel werden von anderen Betreuern gem???? " -"vorbestimmter Regeln signiert, um die Identit??t des Schl??sselinhabers " -"sicherzustellen." +"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-keyring) signiert werden. Betreuerschlüssel werden von anderen " +"Betreuern gemäß vorbestimmter Regeln signiert, um die Identität des " +"Schlüsselinhabers sicherzustellen." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:92 @@ -5228,13 +5336,13 @@ 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 "" -"Sobald das hochgeladenen Paket ??berpr??ft und in das Archiv hinzugef??gt " +"Sobald das hochgeladenen Paket überprüft und in das Archiv hinzugefügt " "wurde, wird die Betreuersignatur entfernt, eine MD5-Summe des Pakets " "berechnet und in die Paketdatei getan. Dann werden die MD5-Summen aller " -"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." +"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." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:102 @@ -5245,11 +5353,11 @@ msgid "" "package was checked. Now both the MD5 sum and the signature of the Release " "file are checked." msgstr "" -"Jeder Endanwender kann die Signatur der Release-Datei pr??fen, die MD5-Summe " -"eines Paketes daraus entpacken und mit der MD5-Summe des Pakets vergleichen, " -"das er heruntergeladen hat. Vor Version 0.6 wurde nur die MD5-Summe des " -"heruntergeladenen Debian-Pakets gepr??ft. Nun werden sowohl die MD5-Summe " -"als auch die Signatur der Release-Datei gepr??ft." +"Jeder Endanwender kann die Signatur der Release-Datei prüfen, die " +"MD5-Summe eines Paketes daraus entpacken und mit der MD5-Summe des " +"Pakets vergleichen, das er heruntergeladen hat. Vor Version 0.6 wurde nur " +"die MD5-Summe des heruntergeladenen Debian-Pakets geprüft. Nun werden " +"sowohl die MD5-Summe als auch die Signatur der Release-Datei geprüft." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:109 @@ -5257,8 +5365,8 @@ msgid "" "Notice that this is distinct from checking signatures on a per package " "basis. It is designed to prevent two possible attacks:" msgstr "" -"Beachten Sie, dass dies verschieden von gepr??ften Signaturen auf Paketbasis " -"ist. Es wurde entworfen, um zwei m??gliche Angriffe zu verhindern:" +"Beachten Sie, dass dies verschieden von geprüften Signaturen auf Paketbasis " +"ist. Es wurde entworfen, um zwei mögliche Angriffe zu verhindern:" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:114 @@ -5269,12 +5377,12 @@ msgid "" "element (router, switch, etc.) or by redirecting traffic to a rogue server " "(through arp or DNS spoofing attacks)." msgstr "" -"<literal>Network \"man in the middle\" attacks</literal>. Ohne Signaturpr??" -"fung kann ein sch??dlicher Mittelsmann sich selbst in das Herunterladen von " -"Paketen einbringen und Schadsoftware bereitstellen. Dies kann entweder durch " -"Kontrolle eines Netzwerkelements (Router, Switch, etc.) oder durch Umleiten " -"des Netzverkehrs zu einem b??sartigen Server (durch ARP- oder DNS-" -"Manipulationsangriffe) erfolgen." +"<literal>Network \"man in the middle\" attacks</literal>. Ohne " +"Signaturprüfung kann ein schädlicher Mittelsmann sich selbst in das " +"Herunterladen von Paketen einbringen und Schadsoftware bereitstellen. " +"Dies kann entweder durch Kontrolle eines Netzwerkelements (Router, " +"Switch, etc.) oder durch Umleiten des Netzverkehrs zu einem bösartigen " +"Server (durch ARP- oder DNS-Manipulationsangriffe) erfolgen." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:122 @@ -5284,9 +5392,9 @@ msgid "" "propagate malicious software to all users downloading packages from that " "host." msgstr "" -"<literal>Mirror network compromise</literal>. Ohne Signaturpr??fung kann " -"ein sch??dlicher Mittelsmann einen Spiegelserver kompromittieren und die " -"Dateien darauf ver??ndern, um sch??dliche Software an alle Anwender zu " +"<literal>Mirror network compromise</literal>. Ohne Signaturprüfung kann " +"ein schädlicher Mittelsmann einen Spiegelserver kompromittieren und die " +"Dateien darauf verändern, um schädliche Software an alle Anwender zu " "verbreiten, die Pakete von diesem Rechner herunterladen." #. type: Content of: <refentry><refsect1><para> @@ -5294,13 +5402,14 @@ msgstr "" msgid "" "However, it does not defend against a compromise of the Debian master server " "itself (which signs the packages) or against a compromise of the key used to " -"sign the Release files. In any case, this mechanism can complement a per-" -"package signature." +"sign the Release files. In any case, this mechanism can complement a " +"per-package signature." msgstr "" -"Es sch??tzt jedoch nicht gegen eine Kompromittierung des Haupt-Debian-" -"Servers selbst (der die Pakete signiert) oder gegen eine Kompromittierung " -"des Schl??ssels, der zum Signieren der Release-Dateien benutzt wird. In " -"jedem Fall kann dieser Mechanismus eine Signatur pro Paket erg??nzen." +"Es schützt jedoch nicht gegen eine Kompromittierung des " +"Haupt-Debian-Servers selbst (der die Pakete signiert) oder gegen eine " +"Kompromittierung des Schlüssels, der zum Signieren der Release-Dateien " +"benutzt wird. In jedem Fall kann dieser Mechanismus eine Signatur pro " +"Paket ergänzen." #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml:135 @@ -5316,26 +5425,28 @@ msgid "" "keys used in the Debian package repositories." msgstr "" "<command>apt-key</command> ist das Programm, das die Liste der von APT " -"verwendeten Schl??ssel verwaltet. Es kann benutzt werden, um Schl??ssel " -"hinzuzuf??gen oder zu entfernen, obwohl eine Installation dieses Releases " -"automatisch die Standard-Debian-Archivsignierschl??ssel bereitstellt, die in " -"den Debian-Paketdepots benutzt werden." +"verwendeten Schlüssel verwaltet. Es kann benutzt werden, um Schlüssel " +"hinzuzufügen oder zu entfernen, obwohl eine Installation dieses Releases " +"automatisch die Standard-Debian-Archivsignierschlüssel bereitstellt, " +"die in den Debian-Paketdepots benutzt werden." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:144 msgid "" "In order to add a new key you need to first download it (you should make " "sure you are using a trusted communication channel when retrieving it), add " -"it with <command>apt-key</command> and then run <command>apt-get update</" -"command> so that apt can download and verify the <filename>Release.gpg</" -"filename> files from the archives you have configured." +"it with <command>apt-key</command> and then run <command>apt-get " +"update</command> so that apt can download and verify the " +"<filename>Release.gpg</filename> files from the archives you have " +"configured." msgstr "" -"Um einen neuen Schl??ssel hinzuzuf??gen, m??ssen Sie ihn zuerst " -"herunterladen (Sie sollten sicherstellen, dass Sie einen vertrauensw??rdigen " +"Um einen neuen Schlüssel hinzuzufügen, müssen Sie ihn zuerst herunterladen " +"(Sie sollten sicherstellen, dass Sie einen vertrauenswürdigen " "Kommunikationskanal benutzen, wenn Sie ihn herunterladen), ihn mit " -"<command>apt-key</command> hinzuf??gen und dann <command>apt-get update</" -"command> ausf??hren, so dass APT die <filename>Release.gpg</filename>-" -"Dateien der von Ihnen konfigurierten Archive herunterladen und pr??fen kann." +"<command>apt-key</command> hinzufügen und dann <command>apt-get " +"update</command> ausführen, so dass APT die " +"<filename>Release.gpg</filename>-Dateien der von Ihnen konfigurierten " +"Archive herunterladen und prüfen kann." #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml:153 @@ -5348,19 +5459,19 @@ msgid "" "If you want to provide archive signatures in an archive under your " "maintenance you have to:" msgstr "" -"Wenn Sie Archivsignaturen in einem von Ihnen betreuten Archiv zur Verf??gung " -"stellen m??chten, m??ssen Sie:" +"Wenn Sie Archivsignaturen in einem von Ihnen betreuten Archiv zur " +"Verfügung stellen möchten, müssen Sie:" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:160 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)." +"already. You can do this by running <command>apt-ftparchive " +"release</command> (provided in apt-utils)." msgstr "" "<literal>Create a toplevel Release file</literal>, wenn es nicht bereits " -"existiert. Sie k??nnen dies tun, indem Sie <command>apt-ftparchive release</" -"command> (aus apt-utils) ausf??hren." +"existiert. Sie können dies tun, indem Sie <command>apt-ftparchive " +"release</command> (aus apt-utils) ausführen." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:165 @@ -5368,8 +5479,8 @@ msgid "" "<literal>Sign it</literal>. You can do this by running <command>gpg -abs -o " "Release.gpg Release</command>." msgstr "" -"<literal>Sign it</literal>. Sie k??nnen dies tun, indem Sie <command>gpg -" -"abs -o Release.gpg Release</command> ausf??hren." +"<literal>Sign it</literal>. Sie können dies tun, indem Sie <command>gpg " +"-abs -o Release.gpg Release</command> ausführen." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:168 @@ -5378,9 +5489,9 @@ msgid "" "know what key they need to import in order to authenticate the files in the " "archive." msgstr "" -"<literal>Publish the key fingerprint</literal>, derart, dass Ihre Anwender " -"wissen, welchen Schl??ssel sie importieren m??ssen, um die Dateien im Archiv " -"zu authentifizieren." +"<literal>Publish the key fingerprint</literal>, derart, dass Ihre " +"Anwender wissen, welchen Schlüssel sie importieren müssen, um die Dateien " +"im Archiv zu authentifizieren." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:175 @@ -5389,9 +5500,9 @@ msgid "" "removed) the archive maintainer has to follow the first two steps previously " "outlined." msgstr "" -"Immer wenn sich die Inhalte des Archivs ??ndern (neue Pakete hinzugef??gt " -"oder entfernt werden), muss der Archivbetreuen den beiden zuerst skizzierten " -"Schritten folgen." +"Immer wenn sich die Inhalte des Archivs ändern (neue Pakete hinzugefügt " +"oder entfernt werden), muss der Archivbetreuen den beiden zuerst " +"skizzierten Schritten folgen." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:183 @@ -5405,19 +5516,20 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:187 msgid "" -"For more background information you might want to review the <ulink url=" -"\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7.en.html" -"\">Debian Security Infrastructure</ulink> chapter of the Securing Debian " -"Manual (available also in the harden-doc package) and the <ulink url=" -"\"http://www.cryptnet.net/fdp/crypto/strong_distro.html\" >Strong " +"For more background information you might want to review the <ulink " +"url=\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7.en.html\">Debian " +"Security Infrastructure</ulink> chapter of the Securing Debian Manual " +"(available also in the harden-doc package) and the <ulink " +"url=\"http://www.cryptnet.net/fdp/crypto/strong_distro.html\" >Strong " "Distribution HOWTO</ulink> by V. Alex Brennen." msgstr "" -"Um weitere Hintergrundinformationen zu erhalten, k??nnen Sie die <ulink url=" -"\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7.de.html\">Die " -"Infrastruktur f??r Sicherheit in Debian</ulink>-Kapitel des Handbuchs ??" -"Anleitung zum Absichern von Debian?? (auch verf??gbar im Paket harden-doc) " -"und dem <ulink url=\"http://www.cryptnet.net/fdp/crypto/strong_distro.html\" " -">Strong Distribution HOWTO</ulink> von V. Alex Brennen lesen." +"Um weitere Hintergrundinformationen zu erhalten, können Sie die <ulink " +"url=\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7.de.html\">" +"Die Infrastruktur für Sicherheit in Debian</ulink>-Kapitel des Handbuchs " +"»Anleitung zum Absichern von Debian« (auch verfügbar im Paket harden-doc) " +"und dem <ulink " +"url=\"http://www.cryptnet.net/fdp/crypto/strong_distro.html\" >Strong " +"Distribution HOWTO</ulink> von V. Alex Brennen lesen." #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml:200 @@ -5448,14 +5560,14 @@ msgstr "Werkzeug zum Sortieren von Paketindexdateien" msgid "" "<command>apt-sortpkgs</command> <arg><option>-hvs</option></arg> " "<arg><option>-o=<replaceable>config string</replaceable></option></arg> " -"<arg><option>-c=<replaceable>file</replaceable></option></arg> <arg choice=" -"\"plain\" rep=\"repeat\"><replaceable>file</replaceable></arg>" +"<arg><option>-c=<replaceable>file</replaceable></option></arg> <arg " +"choice=\"plain\" rep=\"repeat\"><replaceable>file</replaceable></arg>" msgstr "" "<command>apt-sortpkgs</command> <arg><option>-hvs</option></arg> " -"<arg><option>-o=<replaceable>Konfigurationszeichenkette</replaceable></" -"option></arg> <arg><option>-c=<replaceable>Datei</replaceable></option></" -"arg> <arg choice=\"plain\" rep=\"repeat\"><replaceable>Datei</replaceable></" -"arg>" +"<arg><option>-o=<replaceable>Konfigurationszeichenkette</replaceable>" +"</option></arg> " +"<arg><option>-c=<replaceable>Datei</replaceable></option></arg> <arg " +"choice=\"plain\" rep=\"repeat\"><replaceable>Datei</replaceable></arg>" #. type: Content of: <refentry><refsect1><para> #: apt-sortpkgs.1.xml:45 @@ -5466,16 +5578,16 @@ msgid "" "internal sorting rules." msgstr "" "<command>apt-sortpkgs</command> nimmt eine Indexdatei (Quell- oder " -"Paketindex) und sortiert die Datens??tze nach Paketnamen. Es wird au??erdem " -"die internen Felder jedes Datensatzes gem???? interner Sortierregeln " +"Paketindex) und sortiert die Datensätze nach Paketnamen. Es wird außerdem " +"die internen Felder jedes Datensatzes gemäß interner Sortierregeln " "sortieren." #. type: Content of: <refentry><refsect1><para> #: apt-sortpkgs.1.xml:51 msgid "All output is sent to stdout, the input must be a seekable file." msgstr "" -"Alle Ausgaben werden an stdout gesendet, die Eingabe muss eine durchsuchbare " -"Datei sein." +"Alle Ausgaben werden an stdout gesendet, die Eingabe muss eine " +"durchsuchbare Datei sein." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-sortpkgs.1.xml:58 @@ -5485,11 +5597,11 @@ msgstr "<option>--source</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-sortpkgs.1.xml:60 msgid "" -"Use Source index field ordering. Configuration Item: <literal>APT::" -"SortPkgs::Source</literal>." +"Use Source index field ordering. Configuration Item: " +"<literal>APT::SortPkgs::Source</literal>." msgstr "" -"Quellindexfeldanordnung benutzen. Konfigurationselement: <literal>APT::" -"SortPkgs::Source</literal>." +"Quellindexfeldanordnung benutzen. Konfigurationselement: " +"<literal>APT::SortPkgs::Source</literal>." #. type: Content of: <refentry><refsect1><para> #: apt-sortpkgs.1.xml:74 @@ -5497,22 +5609,23 @@ msgid "" "<command>apt-sortpkgs</command> returns zero on normal operation, decimal " "100 on error." msgstr "" -"<command>apt-sortpkgs</command> gibt bei normalen Operationen 0 zur??ck, " +"<command>apt-sortpkgs</command> gibt bei normalen Operationen 0 zurück, " "dezimal 100 bei Fehlern." #. The last update date #. type: Content of: <refentry><refentryinfo> #: apt.conf.5.xml:13 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>" +"&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>" 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-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>" #. type: Content of: <refentry><refnamediv><refname> #: apt.conf.5.xml:28 apt.conf.5.xml:35 @@ -5527,7 +5640,7 @@ msgstr "5" #. type: Content of: <refentry><refnamediv><refpurpose> #: apt.conf.5.xml:36 msgid "Configuration file for APT" -msgstr "Konfigurationsdatei f??r APT" +msgstr "Konfigurationsdatei für APT" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:40 @@ -5535,23 +5648,24 @@ 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 " +"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> ist die Hauptkonfigurationsdatei f??r die APT-" -"Werkzeugsammlung. Alle Werkzeuge benutzen die Konfigurationsdatei und einen " -"gemeinsamen Befehlszeilenauswerter, um eine einheitliche Umgebung " -"bereitzustellen. Wenn ein APT-Werkzeug startet, liest es die in der " -"Umgebungsvariablen <envar>APT_CONFIG</envar> (falls vorhanden) angegebene " -"Konfiguration, dann die Dateien in <literal>Dir::Etc::Parts</literal>, dann " -"die durch <literal>Dir::Etc::main</literal> angegebene Konfigurationsdatei " -"und ??bernimmt am Ende die Befehlszeilenoptionen, um " -"Konfigurationsdirektiven zu ??berschreiben und m??glicherweise sogar weitere " -"Konfigurationsdateien zu laden." +"<filename>apt.conf</filename> ist die Hauptkonfigurationsdatei für die " +"APT-Werkzeugsammlung. Alle Werkzeuge benutzen die Konfigurationsdatei " +"und einen gemeinsamen Befehlszeilenauswerter, um eine einheitliche " +"Umgebung bereitzustellen. Wenn ein APT-Werkzeug startet, liest es die in " +"der Umgebungsvariablen <envar>APT_CONFIG</envar> (falls vorhanden) " +"angegebene Konfiguration, dann die Dateien in " +"<literal>Dir::Etc::Parts</literal>, dann die durch " +"<literal>Dir::Etc::main</literal> angegebene Konfigurationsdatei und " +"übernimmt am Ende die Befehlszeilenoptionen, um Konfigurationsdirektiven " +"zu überschreiben und möglicherweise sogar weitere Konfigurationsdateien " +"zu laden." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:50 @@ -5562,31 +5676,32 @@ msgid "" "within the APT tool group, for the Get tool. options do not inherit from " "their parent groups." msgstr "" -"Die Konfigurationsdatei ist in einem Baum mit Optionen organisiert, die in " -"funktionellen Gruppen organisiert sind. Optionsspezifikation wird mit einer " -"doppelten Doppelpunktschreibweise angegeben, zum Beispiel ist <literal>APT::" -"Get::Assume-Yes</literal> eine Option innerhalb der APT-Werkzeuggruppe f??r " -"das Werkzeug Get. Optionen werden nicht von ihren Elterngruppe geerbt." +"Die Konfigurationsdatei ist in einem Baum mit Optionen organisiert, die " +"in funktionellen Gruppen organisiert sind. Optionsspezifikation wird mit " +"einer doppelten Doppelpunktschreibweise angegeben, zum Beispiel ist " +"<literal>APT::Get::Assume-Yes</literal> eine Option innerhalb der " +"APT-Werkzeuggruppe für das Werkzeug Get. Optionen werden nicht von ihren " +"Elterngruppe geerbt." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:56 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:" -msgstr "" -"Syntaktisch ist die Konfigurationssprache dem nachempfunden, was die ISC-" -"Werkzeuge, wie bind und dhcp, benutzen. Zeilen, die mit <literal>//</" -"literal> beginnen, werden als Kommentar betrachtet (und ignoriert), ebenso " -"wie jeglicher Text zwischen <literal>/*</literal> und <literal>*/</literal>, " -"wie bei C/C++-Kommentaren. Jede Zeile hat die Form <literal>APT::Get::Assume-" -"Yes \"true\";</literal>. Das abschlie??ende Semikolon wird ben??tigt und " -"Klammern sind optional. Ein neuer Geltungsbereich kann mit geschweiften " -"Klammern ge??ffnet werden, wie:" +"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:" +msgstr "" +"Syntaktisch ist die Konfigurationssprache dem nachempfunden, was die " +"ISC-Werkzeuge, wie bind und dhcp, benutzen. Zeilen, die mit " +"<literal>//</literal> beginnen, werden als Kommentar betrachtet (und " +"ignoriert), ebenso wie jeglicher Text zwischen <literal>/*</literal> und " +"<literal>*/</literal>, wie bei C/C++-Kommentaren. Jede Zeile hat die " +"Form <literal>APT::Get::Assume-Yes \"true\";</literal>. Das abschließende " +"Semikolon wird benötigt und Klammern sind optional. Ein neuer " +"Geltungsbereich kann mit geschweiften Klammern geöffnet werden, wie:" #. type: Content of: <refentry><refsect1><informalexample><programlisting> #: apt.conf.5.xml:66 @@ -5611,13 +5726,14 @@ msgstr "" msgid "" "with newlines placed to make it more readable. Lists can be created by " "opening a scope and including a single string enclosed in quotes followed by " -"a semicolon. Multiple entries can be included, each separated by a semicolon." +"a semicolon. Multiple entries can be included, each separated by a " +"semicolon." msgstr "" -"mit eingef??gten Zeilenumbr??chen, um es leserlicher zu gestalten. Listen k??" -"nnen erstellt werden, indem ein Geltungsbereich ge??ffnet wird und eine " -"einzelne, von Anf??hrungszeichen, denen ein Semikolon folgt, eingeschlossene " -"Zeichenkette eingef??gt wird. Es k??nnen mehrere Eintr??ge eingef??gt " -"werden, jeweils getrennt durch ein Semikolon." +"mit eingefügten Zeilenumbrüchen, um es leserlicher zu gestalten. Listen " +"können erstellt werden, indem ein Geltungsbereich geöffnet wird und eine " +"einzelne, von Anführungszeichen, denen ein Semikolon folgt, " +"eingeschlossene Zeichenkette eingefügt wird. Es können mehrere Einträge " +"eingefügt werden, jeweils getrennt durch ein Semikolon." #. type: Content of: <refentry><refsect1><informalexample><programlisting> #: apt.conf.5.xml:79 @@ -5628,12 +5744,13 @@ msgstr "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:82 msgid "" -"In general the sample configuration file in <filename>&docdir;examples/apt." -"conf</filename> &configureindex; is a good guide for how it should look." +"In general the sample configuration file in " +"<filename>&docdir;examples/apt.conf</filename> &configureindex; is a good " +"guide for how it should look." msgstr "" -"Im Allgemeinen bietet die Beispielkonfigurationsdatei in <filename>&docdir;" -"examples/apt.conf</filename> &configureindex; eine gute Anleitung, wie dies " -"aussehen k??nnte." +"Im Allgemeinen bietet die Beispielkonfigurationsdatei in " +"<filename>&docdir;examples/apt.conf</filename> &configureindex; eine gute " +"Anleitung, wie dies aussehen könnte." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:86 @@ -5641,60 +5758,61 @@ msgid "" "The names of the configuration items are not case-sensitive. So in the " "previous example you could use <literal>dpkg::pre-install-pkgs</literal>." msgstr "" -"Die Namen der Konfigurationselemente sind nicht von Gro??- und " -"Kleinschreibung abh??ngig. Deshalb k??nnten Sie im vorherigen Beispiel auch " +"Die Namen der Konfigurationselemente sind nicht von Groß- und " +"Kleinschreibung abhängig. Deshalb könnten Sie im vorherigen Beispiel auch " "<literal>dpkg::pre-install-pkgs</literal> benutzen." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:89 msgid "" "Names for the configuration items are optional if a list is defined as it " -"can be see in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. " -"If you don't specify a name a new entry will simply add a new option to the " -"list. If you specify a name you can override the option as every other " -"option by reassigning a new value to the option." +"can be see in the <literal>DPkg::Pre-Install-Pkgs</literal> example " +"above. If you don't specify a name a new entry will simply add a new option " +"to the list. If you specify a name you can override the option as every " +"other option by reassigning a new value to the option." msgstr "" -"Namen f??r die Konfigurationsdatei sind optional, wenn eine Liste, wie sie " +"Namen für die Konfigurationsdatei sind optional, wenn eine Liste, wie sie " "im Beispiel <literal>DPkg::Pre-Install-Pkgs</literal> oberhalb gesehen " "werden kann, definiert ist. Wenn Sie keinen neuen Namen angeben, wird ein " -"neuer Eintrag der Liste lediglich eine neue Option hinzuf??gen. Wenn Sie " -"einen Namen eingeben, k??nnen Sie die Option, wie jede andere Option, ??" -"berschreiben, indem Sie der Option erneut einen neuen Wert zuweisen." +"neuer Eintrag der Liste lediglich eine neue Option hinzufügen. Wenn Sie " +"einen Namen eingeben, können Sie die Option, wie jede andere Option, " +"überschreiben, indem Sie der Option erneut einen neuen Wert zuweisen." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:94 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 descendants are erased. (Note that these " -"lines also need to end with a semicolon.)" +"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 descendants are " +"erased. (Note that these lines also need to end with a semicolon.)" msgstr "" -"Es sind die beiden Spezialf??lle <literal>#include</literal> und " +"Es sind die beiden Spezialfälle <literal>#include</literal> und " "<literal>#clear</literal> erlaubt: <literal>#include</literal> wird die " -"angegebene Datei einf??gen au??er, wenn der Dateiname mit einem Schr??" -"gstrich endet, dann wird das ganze Verzeichnis eingef??gt. <literal>#clear</" -"literal> wird benutzt, um einen Teil des Konfigurationsbaums zu l??schen. " -"Das angegebene Element und alle davon absteigenden Elemente werden gel??" -"scht. (Beachten Sie, dass diese Zeilen auch mit einem Semikolon enden m??" -"ssen.)" +"angegebene Datei einfügen außer, wenn der Dateiname mit einem " +"Schrägstrich endet, dann wird das ganze Verzeichnis eingefügt. " +"<literal>#clear</literal> wird benutzt, um einen Teil des " +"Konfigurationsbaums zu löschen. Das angegebene Element und alle davon " +"absteigenden Elemente werden gelöscht. (Beachten Sie, dass diese Zeilen " +"auch mit einem Semikolon enden müssen.)" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:101 msgid "" "The #clear command is the only way to delete a list or a complete scope. " -"Reopening a scope or the ::-style described below will <emphasis>not</" -"emphasis> override previously written entries. Only options can be " -"overridden by addressing a new value to it - lists and scopes can't be " -"overridden, only cleared." +"Reopening a scope or the ::-style described below will " +"<emphasis>not</emphasis> override previously written entries. Only options " +"can be overridden by addressing a new value to it - lists and scopes can't " +"be overridden, only cleared." msgstr "" "Der #clear-Befehl ist der einzige Weg, eine Liste oder einen kompletten " -"Geltungsbereich zu l??schen. Erneutes ??ffnen eines Geltungsbereichs oder " -"der unten beschriebene ::-Stil werden vorherige Eintr??ge <emphasis>nicht</" -"emphasis> ??berschreiben. Optionen k??nnen nur ??berschrieben werden, indem " -"ein neuer Wert an sie adressiert wird ??? Listen und Geltungsbereiche k??" -"nnen nicht ??berschrieben, sondern nur bereinigt werden." +"Geltungsbereich zu löschen. Erneutes Öffnen eines Geltungsbereichs oder " +"der unten beschriebene ::-Stil werden vorherige Einträge " +"<emphasis>nicht</emphasis> überschreiben. Optionen können nur " +"überschrieben werden, indem ein neuer Wert an sie adressiert wird – " +"Listen und Geltungsbereiche können nicht überschrieben, sondern nur " +"bereinigt werden." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:106 @@ -5707,13 +5825,13 @@ msgid "" "suspect: The scope syntax can't be used on the command line.)" msgstr "" "Alle APT-Werkzeuge bringen eine Option -o mit, die es einer beliebigen " -"Installationsdirektiven erlaubt, auf der Befehlszeile angegeben zu werden. " -"Die Syntax ist ein vollst??ndiger Optionsname (<literal>APT::Get::Assume-" -"Yes</literal> zum Beispiel), gefolgt von einem Gleichheitszeichen und dann " -"dem neuen Wert der Option. Listen k??nnen ebenfalls durch Anh??ngen von " -"abschlie??enden :: zur Namensliste hinzugef??gt werden. (Wenn Ihnen das " -"merkw??rdig vorkommt: Die Geltungsbereichs-Syntax kann nicht auf der " -"Befehlszeile benutzt werden.)" +"Installationsdirektiven erlaubt, auf der Befehlszeile angegeben zu " +"werden. Die Syntax ist ein vollständiger Optionsname " +"(<literal>APT::Get::Assume-Yes</literal> zum Beispiel), gefolgt von einem " +"Gleichheitszeichen und dann dem neuen Wert der Option. Listen können " +"ebenfalls durch Anhängen von abschließenden :: zur Namensliste " +"hinzugefügt werden. (Wenn Ihnen das merkwürdig vorkommt: Die " +"Geltungsbereichs-Syntax kann nicht auf der Befehlszeile benutzt werden.)" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:113 @@ -5722,29 +5840,30 @@ msgid "" "that you should not use it in combination with the scope syntax. (The scope " "syntax implicit insert ::) Using both syntaxes together will trigger a bug " "which some users unfortunately relay on: An option with the unusual name " -"\"<literal>::</literal>\" which acts like every other option with a name. " -"These introduces many problems including that a user who writes multiple " -"lines in this <emphasis>wrong</emphasis> syntax in the hope to append to a " -"list will gain the opposite as only the last assignment for this option " -"\"<literal>::</literal>\" will be used. Upcoming APT versions will raise " -"errors and will stop working if they encounter this misuse, so please " +"\"<literal>::</literal>\" which acts like every other option with a " +"name. These introduces many problems including that a user who writes " +"multiple lines in this <emphasis>wrong</emphasis> syntax in the hope to " +"append to a list will gain the opposite as only the last assignment for this " +"option \"<literal>::</literal>\" will be used. Upcoming APT versions will " +"raise errors and will stop working if they encounter this misuse, so please " "correct such statements now as long as APT doesn't complain explicit about " "them." msgstr "" -"Beachten Sie, dass Sie :: nur benutzen k??nnen, um ein Element pro Zeile an " -"eine Liste anzuh??ngen und dass Sie es nicht nicht in Verbindung mit einer " -"Geltungsbereichs-Syntax benutzen sollten. (Die Geltungsbereichssysyntax f??" -"gt implizit :: ein) Die Benutzung der Syntax von beiden zusammen wird einen " -"Fehler ausl??sen, den einige Anwender ung??nstigerweise weitergeben an eine " -"Option mit dem un??blichen Namen ??<literal>::</literal>??, der wie jede " -"andere Option mit einem Namen agiert. Dies leitet viele Probleme ein, " -"einschlie??lich, dass der Anwender, der mehrere Zeilen in dieser " -"<emphasis>falschen</emphasis> Syntax in der Hoffnung etwas an die Liste " -"anzuh??ngen schreibt, das Gegenteil von nur der letzten Zuweisung zu diese " -"Option ??<literal>::</literal>?? erreicht. Bevorstehende APT-Versionen " -"werden Fehler ausgeben und die Arbeit stoppen, wenn sie auf diese falsche " -"Verwendung sto??en. Korrigieren Sie deshalb nun solche Anweisungen, solange " -"sich APT nicht explizit dar??ber beklagt." +"Beachten Sie, dass Sie :: nur benutzen können, um ein Element pro Zeile " +"an eine Liste anzuhängen und dass Sie es nicht nicht in Verbindung mit " +"einer Geltungsbereichs-Syntax benutzen sollten. (Die " +"Geltungsbereichssysyntax fügt implizit :: ein) Die Benutzung der Syntax " +"von beiden zusammen wird einen Fehler auslösen, den einige Anwender " +"ungünstigerweise weitergeben an eine Option mit dem unüblichen Namen " +"»<literal>::</literal>«, der wie jede andere Option mit einem Namen " +"agiert. Dies leitet viele Probleme ein, einschließlich, dass der " +"Anwender, der mehrere Zeilen in dieser <emphasis>falschen</emphasis> " +"Syntax in der Hoffnung etwas an die Liste anzuhängen schreibt, das " +"Gegenteil von nur der letzten Zuweisung zu diese Option " +"»<literal>::</literal>« erreicht. Bevorstehende APT-Versionen werden " +"Fehler ausgeben und die Arbeit stoppen, wenn sie auf diese falsche " +"Verwendung stoßen. Korrigieren Sie deshalb nun solche Anweisungen, " +"solange sich APT nicht explizit darüber beklagt." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:125 @@ -5757,8 +5876,8 @@ msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." msgstr "" -"Diese Gruppe von Optionen steuert das allgemeine Verhalten von APT, ebenso " -"wie es die Optionen f??r alle Werkzeuge enth??lt." +"Diese Gruppe von Optionen steuert das allgemeine Verhalten von APT, " +"ebenso wie es die Optionen für alle Werkzeuge enthält." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:130 @@ -5773,8 +5892,8 @@ msgid "" "compiled for." msgstr "" "Systemarchitektur; Setzt die Architektur die benutzt wird, wenn Dateien " -"heruntergeladen und Paketlisten ausgewertet werden. Die interne Vorgabe ist " -"die Architektur f??r die APT kompiliert wurde." +"heruntergeladen und Paketlisten ausgewertet werden. Die interne Vorgabe " +"ist die Architektur für die APT kompiliert wurde." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:136 @@ -5784,15 +5903,15 @@ msgstr "Default-Release" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:137 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;." +"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;." 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;." +"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;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:141 @@ -5805,8 +5924,9 @@ msgid "" "Ignore Held packages; This global option causes the problem resolver to " "ignore held packages in its decision making." msgstr "" -"Halten von Paketen ignorieren; Diese globale Option veranlasst den Probleml??" -"ser, gehaltene Pakete beim Treffen von Entscheidungen zu ignorieren." +"Halten von Paketen ignorieren; Diese globale Option veranlasst den " +"Problemlöser, gehaltene Pakete beim Treffen von Entscheidungen zu " +"ignorieren." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:146 @@ -5821,12 +5941,12 @@ msgid "" "then packages that are locally installed are also excluded from cleaning - " "but note that APT provides no direct means to reinstall them." msgstr "" -"Standardm????ig auf on (ein). Wenn es auf on gesetzt wird, wird die " -"automatische Bereinigungsfunktion alle Pakete entfernen, die nicht l??nger " -"aus dem Zwischenspeicher heruntergeladen werden k??nnen. Wenn es auf off " -"gesetzt wird, dann werden au??erden die Pakete, die lokal installiert sind, " -"vom Bereinigen ausgeschlossen ??? beachten Sie jedoch, dass APT keine " -"direkten M??glichkeiten bereitstellt, um sie erneut zu installieren." +"Standardmäßig auf on (ein). Wenn es auf on gesetzt wird, wird die automatische " +"Bereinigungsfunktion alle Pakete entfernen, die nicht länger aus dem " +"Zwischenspeicher heruntergeladen werden können. Wenn es auf off gesetzt " +"wird, dann werden außerden die Pakete, die lokal installiert sind, vom " +"Bereinigen ausgeschlossen – beachten Sie jedoch, dass APT keine direkten " +"Möglichkeiten bereitstellt, um sie erneut zu installieren." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:153 @@ -5842,11 +5962,12 @@ msgid "" "and may cause package install scripts to fail or worse. Use at your own " "risk." msgstr "" -"Sofortkonfiguration ausschalten; Diese gef??hrliche Option schaltet einigen " -"Befehlscode von APT aus, um es zu veranlassen, Dpkg seltener aufzurufen. " -"Dies zu tun, k??nnte auf besonders langsamen Einzelbenutzersystemen n??tig " -"sein, ist aber gef??hrlich und k??nnte Paketinstallationsskripte zum " -"Scheitern oder schlimmeren veranlassen. Benutzen Sie es auf eigene Gefahr." +"Sofortkonfiguration ausschalten; Diese gefährliche Option schaltet " +"einigen Befehlscode von APT aus, um es zu veranlassen, Dpkg seltener " +"aufzurufen. Dies zu tun, könnte auf besonders langsamen " +"Einzelbenutzersystemen nötig sein, ist aber gefährlich und könnte " +"Paketinstallationsskripte zum Scheitern oder schlimmeren veranlassen. " +"Benutzen Sie es auf eigene Gefahr." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:161 @@ -5857,19 +5978,19 @@ msgstr "Force-LoopBreak" #: apt.conf.5.xml:162 msgid "" "Never Enable this option unless you -really- know what you are doing. It " -"permits APT to temporarily remove an essential package to break a Conflicts/" -"Conflicts or Conflicts/Pre-Depend loop between two essential packages. SUCH " -"A LOOP SHOULD NEVER EXIST AND IS A GRAVE BUG. This option will work if the " -"essential packages are not tar, gzip, libc, dpkg, bash or anything that " -"those packages depend on." -msgstr "" -"Schalten Sie diese Option niemals ein, au??er wenn Sie -wirklich- wissen, " -"was Sie tun. Es erlaubt APT tempor??r ein essentielles Paket zu entfernen, " +"permits APT to temporarily remove an essential package to break a " +"Conflicts/Conflicts or Conflicts/Pre-Depend loop between two essential " +"packages. SUCH A LOOP SHOULD NEVER EXIST AND IS A GRAVE BUG. This option " +"will work if the essential packages are not tar, gzip, libc, dpkg, bash or " +"anything that those packages depend on." +msgstr "" +"Schalten Sie diese Option niemals ein, außer wenn Sie -wirklich- wissen, " +"was Sie tun. Es erlaubt APT temporär ein essentielles Paket zu entfernen, " "um eine Conflicts/Conflicts- oder Conflicts/Pre-Depend-Schleife zwischen " "zwei essentiellen Paketen zu unterbrechen. SOLCH EINE SCHLEIFE SOLLTE " "NIEMALS EXISTIEREN UND IST EIN SCHWERWIEGENDER FEHLER. Diese Option wird " "funktionieren, wenn die essentiellen Pakete nicht tar, gzip, libc, dpkg, " -"bash oder etwas, was davon abh??ngt, sind." +"bash oder etwas, was davon abhängt, sind." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:170 @@ -5882,8 +6003,8 @@ 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 benutzt eine Zwischenspeicherdatei mit fester Gr????e, um die ??verf??" -"gbar??-Informationen zu speichern. Dies setzt die Gr????e dieses " +"APT benutzt eine Zwischenspeicherdatei mit fester Größe, um die " +"»verfügbar«-Informationen zu speichern. Dies setzt die Größe dieses " "Zwischenspeichers (in Bytes)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -5895,8 +6016,8 @@ msgstr "Build-Essential" #: apt.conf.5.xml:176 msgid "Defines which package(s) are considered essential build dependencies." msgstr "" -"Definiert, welche(s) Paket(e) als essentielle Bauabh??ngigkeiten betrachtet " -"werde." +"Definiert, welche(s) Paket(e) als essentielle Bauabhängigkeiten " +"betrachtet werde." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:179 @@ -5910,7 +6031,7 @@ msgid "" "for more information about the options here." msgstr "" "Der Get-Unterabschnitt steuert das &apt-get;-Werkzeug. Lesen Sie bitte " -"dessen Dokumentation, um weitere Informationen ??ber die Optionen hier zu " +"dessen Dokumentation, um weitere Informationen über die Optionen hier zu " "erhalten." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -5924,9 +6045,9 @@ msgid "" "The Cache subsection controls the &apt-cache; tool, please see its " "documentation for more information about the options here." msgstr "" -"Der Cache-Unterabschnitt steuert das &apt-cache;-Werkzeug. Lesen Sie bitte " -"dessen Dokumentation, um weitere Informationen ??ber die Optionen hier zu " -"erhalten." +"Der Cache-Unterabschnitt steuert das &apt-cache;-Werkzeug. Lesen Sie " +"bitte dessen Dokumentation, um weitere Informationen über die Optionen " +"hier zu erhalten." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:189 @@ -5939,9 +6060,9 @@ msgid "" "The CDROM subsection controls the &apt-cdrom; tool, please see its " "documentation for more information about the options here." msgstr "" -"Der CDROM-Unterabschnitt steuert das &apt-cdrom;-Werkzeug. Lesen Sie bitte " -"dessen Dokumentation, um weitere Informationen ??ber die Optionen hier zu " -"erhalten." +"Der CDROM-Unterabschnitt steuert das &apt-cdrom;-Werkzeug. Lesen Sie " +"bitte dessen Dokumentation, um weitere Informationen über die Optionen " +"hier zu erhalten." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:196 @@ -5959,9 +6080,9 @@ msgid "" "Try to download deltas called <literal>PDiffs</literal> for Packages or " "Sources files instead of downloading whole ones. True by default." msgstr "" -"Versuchen, Deltas, die <literal>PDiffs</literal> genannt werden, f??r Paket- " -"oder Quelldateien herunterzuladen, statt der kompletten Dateien. Vorgabe ist " -"True." +"Versuchen, Deltas, die <literal>PDiffs</literal> genannt werden, für " +"Paket- oder Quelldateien herunterzuladen, statt der kompletten Dateien. " +"Vorgabe ist True." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:207 @@ -5971,18 +6092,18 @@ msgstr "Queue-Mode" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:208 msgid "" -"Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" -"literal> or <literal>access</literal> which determines how APT parallelizes " -"outgoing connections. <literal>host</literal> means that one connection per " -"target host will be opened, <literal>access</literal> means that one " -"connection per URI type will be opened." +"Queuing mode; <literal>Queue-Mode</literal> can be one of " +"<literal>host</literal> or <literal>access</literal> which determines how " +"APT parallelizes outgoing connections. <literal>host</literal> means that " +"one connection per target host will be opened, <literal>access</literal> " +"means that one connection per URI type will be opened." msgstr "" "Warteschlangenmodus; <literal>Queue-Mode</literal> kann entweder " "<literal>host</literal> oder <literal>access</literal> sein, wodurch " "festgelegt wird, wie APT ausgehende Verbindungen parallelisiert. " -"<literal>host</literal> bedeutet, dass eine Verbindung pro Zielrechner ge??" -"ffnet wird, <literal>access</literal> bedeutet, dass eine Verbindung pro URI-" -"Art ge??ffnet wird." +"<literal>host</literal> bedeutet, dass eine Verbindung pro Zielrechner " +"geöffnet wird, <literal>access</literal> bedeutet, dass eine Verbindung " +"pro URI-Art geöffnet wird." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:215 @@ -5995,8 +6116,9 @@ msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." msgstr "" -"Anzahl der auszuf??hrenden erneuten Versuche. Wenn dies nicht Null ist, wird " -"APT fehlgeschlagene Dateien in der angegebenen Zahl erneut versuchen." +"Anzahl der auszuführenden erneuten Versuche. Wenn dies nicht Null ist, " +"wird APT fehlgeschlagene Dateien in der angegebenen Zahl erneut " +"versuchen." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:220 @@ -6009,9 +6131,9 @@ msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." msgstr "" -"Symbolische Verweise f??r Quellarchive benutzen. Wenn dies auf true gesetzt " -"ist, werden Quellarchive, wenn m??glich, symbolisch verkn??pft, anstatt " -"kopiert zu werden. True ist die Vorgabe." +"Symbolische Verweise für Quellarchive benutzen. Wenn dies auf true " +"gesetzt ist, werden Quellarchive, wenn möglich, symbolisch verknüpft, " +"anstatt kopiert zu werden. True ist die Vorgabe." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:225 sources.list.5.xml:139 @@ -6023,18 +6145,20 @@ msgstr "http" 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. If no one of the above settings is specified, " -"<envar>http_proxy</envar> environment variable will be used." +"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. If no one of the above " +"settings is specified, <envar>http_proxy</envar> environment variable will " +"be used." msgstr "" "HTTP-URIs; http::Proxy ist der zu benutzende Standard-HTTP-Proxy. Er wird " -"standardm????ig in der Form <literal>http://[[Anwender][:Passwort]@]Host[:" -"Port]/</literal> angegeben. Durch Host-Proxies kann au??erdem in der Form " -"<literal>http::Proxy::<host></literal> mit dem speziellen Schl??" -"sselwort <literal>DIRECT</literal> angegeben werden, dass keine Proxies " -"benutzt werden. Falls keine der obigen Einstellungen angegeben wurde, wird " -"die Umgebungsvariable <envar>http_proxy</envar> benutzt." +"standardmäßig in der Form " +"<literal>http://[[Anwender][:Passwort]@]Host[:Port]/</literal> angegeben. " +"Durch Host-Proxies kann außerdem in der Form " +"<literal>http::Proxy::<host></literal> mit dem speziellen " +"Schlüsselwort <literal>DIRECT</literal> angegeben werden, dass keine " +"Proxies benutzt werden. Falls keine der obigen Einstellungen angegeben " +"wurde, wird die Umgebungsvariable <envar>http_proxy</envar> benutzt." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:234 @@ -6046,21 +6170,22 @@ msgid "" "than the given number of seconds. Debian updates its index files daily so " "the default is 1 day. <literal>No-Store</literal> specifies that the cache " "should never store this request, it is only set for archive files. This may " -"be useful to prevent polluting a proxy cache with very large .deb files. " -"Note: Squid 2.0.2 does not support any of these options." -msgstr "" -"F??r die Steuerung des Zwischenspeichers mit HTTP/1.1-konformen Proxy-" -"Zwischenspeichern stehen drei Einstellungen zur Verf??gung. <literal>No-" -"Cache</literal> teilt dem Proxy mit, dass er unter keinen Umst??nden seine " -"zwischengespeicherten Antworten benutzen soll, <literal>Max-Age</literal> " -"wird nur f??r Indexdateien gesendet und sagt dem Zwischenspeicher, dass er " -"seine Objekte erneuern soll, die ??lter als die angegebene Zahl in Sekunden " -"sind. Debian aktualisiert seine Indexdateien t??glich, so dass die Vorgabe " -"ein Tag ist. <literal>No-Store</literal> gibt an, dass der Zwischenspeicher " -"diese Anfragen niemals speichern soll, es ist nur f??r Archivdateien " -"gesetzt. Dies k??nnte n??tzlich sein, um Verunreinigungen des Proxy-" -"Zwischenspeichers mit sehr gro??en .deb-Dateien zu verhindern. Beachten Sie: " -"Squid 2.0.2 unterst??tzt keine dieser Optionen." +"be useful to prevent polluting a proxy cache with very large .deb " +"files. Note: Squid 2.0.2 does not support any of these options." +msgstr "" +"Für die Steuerung des Zwischenspeichers mit HTTP/1.1-konformen " +"Proxy-Zwischenspeichern stehen drei Einstellungen zur Verfügung. " +"<literal>No-Cache</literal> teilt dem Proxy mit, dass er unter keinen " +"Umständen seine zwischengespeicherten Antworten benutzen soll, " +"<literal>Max-Age</literal> wird nur für Indexdateien gesendet und sagt " +"dem Zwischenspeicher, dass er seine Objekte erneuern soll, die älter als " +"die angegebene Zahl in Sekunden sind. Debian aktualisiert seine " +"Indexdateien täglich, so dass die Vorgabe ein Tag ist. " +"<literal>No-Store</literal> gibt an, dass der Zwischenspeicher diese " +"Anfragen niemals speichern soll, es ist nur für Archivdateien gesetzt. " +"Dies könnte nützlich sein, um Verunreinigungen des " +"Proxy-Zwischenspeichers mit sehr großen .deb-Dateien zu verhindern. " +"Beachten Sie: Squid 2.0.2 unterstützt keine dieser Optionen." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:244 apt.conf.5.xml:301 @@ -6069,9 +6194,9 @@ msgid "" "method, this applies to all things including connection timeout and data " "timeout." msgstr "" -"Die Option <literal>timeout</literal> stellt den Zeitnehmer f??r die Zeit??" -"berschreitung ein, die von der Methode benutzt wird. Dies wird auf alle " -"Dinge, einschlie??lich Verbindungs- und Datenzeit??berschreitungen, " +"Die Option <literal>timeout</literal> stellt den Zeitnehmer für die " +"Zeitüberschreitung ein, die von der Methode benutzt wird. Dies wird auf " +"alle Dinge, einschließlich Verbindungs- und Datenzeitüberschreitungen, " "angewandt." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> @@ -6085,30 +6210,31 @@ msgid "" "connections - otherwise data corruption will occur. Hosts which require this " "are in violation of RFC 2068." msgstr "" -"Eine Einstellung wird bereitgestellt, um die Tiefe der Warteschlange in F??" -"llen zu steuern, in denen der andere Server nicht RFC-konform oder " -"fehlerhaft (so wie Squid 2.0.2) ist. <literal>Acquire::http::Pipeline-Depth</" -"literal> kann ein Wert von 0 bis 5 sein, der anzeigt, wie viele ausstehende " -"Anfragen APT senden soll. Ein Wert von Null MUSS angegeben werden, falls der " -"andere Server nicht ordnungsgem???? auf TCP-Verbindungen wartet ??? " +"Eine Einstellung wird bereitgestellt, um die Tiefe der Warteschlange in " +"Fällen zu steuern, in denen der andere Server nicht RFC-konform oder " +"fehlerhaft (so wie Squid 2.0.2) ist. " +"<literal>Acquire::http::Pipeline-Depth</literal> kann " +"ein Wert von 0 bis 5 sein, der anzeigt, wie viele ausstehende Anfragen " +"APT senden soll. Ein Wert von Null MUSS angegeben werden, falls der " +"andere Server nicht ordnungsgemäß auf TCP-Verbindungen wartet – " "anderenfalls werden fehlerhafte Daten erscheinen. Rechner, die dies " -"erfordern, versto??en gegen RFC 2068." +"erfordern, verstoßen gegen RFC 2068." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:255 msgid "" -"The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" -"literal> which accepts integer values in kilobyte. The default value is 0 " -"which deactivates the limit and tries uses as much as possible of the " -"bandwidth (Note that this option implicit deactivates the download from " -"multiple servers at the same time.)" +"The used bandwidth can be limited with " +"<literal>Acquire::http::Dl-Limit</literal> which accepts integer values in " +"kilobyte. The default value is 0 which deactivates the limit and tries uses " +"as much as possible of the bandwidth (Note that this option implicit " +"deactivates the download from multiple servers at the same time.)" msgstr "" -"Die benutzte Bandbreite kann durch <literal>Acquire::http::Dl-Limit</" -"literal> eingeschr??nkt werden, was Ganzzahlwerte in Kilobyte akzeptiert. " -"Der Vorgabewert ist 0, was die Beschr??nkung ausschaltet und versucht, " -"soviel wie m??glich von der Bandbreite zu benutzen. (Beachten Sie, dass " -"diese Optionen implizit das Herunterladen von mehreren Servern zur gleichen " -"Zeit deaktiviert.)" +"Die benutzte Bandbreite kann durch " +"<literal>Acquire::http::Dl-Limit</literal> eingeschränkt werden, was " +"Ganzzahlwerte in Kilobyte akzeptiert. Der Vorgabewert ist 0, was die " +"Beschränkung ausschaltet und versucht, soviel wie möglich von der " +"Bandbreite zu benutzen. (Beachten Sie, dass diese Optionen implizit das " +"Herunterladen von mehreren Servern zur gleichen Zeit deaktiviert.)" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:261 @@ -6123,8 +6249,8 @@ msgid "" "not supported yet." msgstr "" "HTTPS-URIs. Zwischenspeichersteuerung und Proxy-Optionen entsprehen denen " -"der <literal>http</literal>-Methode. Die Option <literal>Pipeline-Depth</" -"literal> wird noch nicht unterst??tzt." +"der <literal>http</literal>-Methode. Die Option " +"<literal>Pipeline-Depth</literal> wird noch nicht unterstützt." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:266 @@ -6135,35 +6261,38 @@ msgid "" "suboption determines whether verify server's host certificate against " "trusted certificates or not. <literal><host>::Verify-Peer</literal> " "is corresponding per-host option. <literal>Verify-Host</literal> boolean " -"suboption determines whether verify server's hostname or not. <literal><" -"host>::Verify-Host</literal> is corresponding per-host option. " -"<literal>SslCert</literal> determines what certificate to use for client " -"authentication. <literal><host>::SslCert</literal> is corresponding " -"per-host option. <literal>SslKey</literal> determines what private key to " -"use for client authentication. <literal><host>::SslKey</literal> is " -"corresponding per-host option. <literal>SslForceVersion</literal> overrides " -"default SSL version to use. Can contain 'TLSv1' or 'SSLv3' string. " +"suboption determines whether verify server's hostname or not. " +"<literal><host>::Verify-Host</literal> is corresponding per-host " +"option. <literal>SslCert</literal> determines what certificate to use for " +"client authentication. <literal><host>::SslCert</literal> is " +"corresponding per-host option. <literal>SslKey</literal> determines what " +"private key to use for client " +"authentication. <literal><host>::SslKey</literal> is corresponding " +"per-host option. <literal>SslForceVersion</literal> overrides default SSL " +"version to use. Can contain 'TLSv1' or 'SSLv3' string. " "<literal><host>::SslForceVersion</literal> is corresponding per-host " "option." msgstr "" "Die Unteroption <literal>CaInfo</literal> gibt den Ort an, an dem " -"Informationen ??ber vertrauensw??rdige Zertifikate bereitgehalten werden. " -"<literal><host>::CaInfo</literal> ist die entsprechende per-Host-" -"Option. Die boolsche Unteroption <literal>Verify-Peer</literal> entscheidet, " -"ob das Host-Zertifikat des Servers mit den vertrauensw??rdigen Zertifikaten " -"gepr??ft wird oder nicht. <literal><host>::Verify-Peer</literal> ist " -"die entsprechende per-Host-Option. Die boolsche Unteroption <literal>Verify-" -"Host</literal> entscheidet, ob der Host-Name des Servers gepr??ft wird oder " -"nicht. <literal><host>::Verify-Host</literal> ist die entsprechende " -"per-Host-Option. <literal>SslCert</literal> entscheidet, welches Zertifikat " -"zur Client-Authentifizierung benutzt wird. <literal><host>::SslCert</" -"literal> ist die entsprechende per-Host-Option. <literal>SslKey</literal> " -"entscheidet, welche privaten Schl??ssel f??r die Client-Authentifizierung " -"benutzt werden. <literal><host>::SslKey</literal> ist die " -"entsprechende per-Host-Option. <literal>SslForceVersion</literal> ??" -"berschreibt die zu benutzende Standard-SSL-Version. Es kann die " -"Zeichenketten ??TLSv1?? oder ??SSLv3?? enthalten. <literal><host>::" -"SslForceVersion</literal> ist die entsprechende per-Host-Option." +"Informationen über vertrauenswürdige Zertifikate bereitgehalten werden. " +"<literal><host>::CaInfo</literal> ist die entsprechende " +"per-Host-Option. Die boolsche Unteroption <literal>Verify-Peer</literal> " +"entscheidet, ob das Host-Zertifikat des Servers mit den " +"vertrauenswürdigen Zertifikaten geprüft wird oder nicht. " +"<literal><host>::Verify-Peer</literal> ist die entsprechende " +"per-Host-Option. Die boolsche Unteroption <literal>Verify-Host</literal> " +"entscheidet, ob der Host-Name des Servers geprüft wird oder nicht. " +"<literal><host>::Verify-Host</literal> ist die entsprechende " +"per-Host-Option. <literal>SslCert</literal> entscheidet, welches " +"Zertifikat zur Client-Authentifizierung benutzt wird. " +"<literal><host>::SslCert</literal> ist die entsprechende " +"per-Host-Option. <literal>SslKey</literal> entscheidet, welche privaten " +"Schlüssel für die Client-Authentifizierung benutzt werden. " +"<literal><host>::SslKey</literal> ist die entsprechende " +"per-Host-Option. <literal>SslForceVersion</literal> überschreibt die " +"zu benutzende Standard-SSL-Version. Es kann die Zeichenketten »TLSv1« " +"oder »SSLv3« enthalten. <literal><host>::SslForceVersion</literal> " +"ist die entsprechende per-Host-Option." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:284 sources.list.5.xml:150 @@ -6175,35 +6304,38 @@ msgstr "ftp" 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 " -"proxies can also be specified by using the form <literal>ftp::Proxy::<" -"host></literal> with the special keyword <literal>DIRECT</literal> " -"meaning to use no proxies. If no one of the above settings is specified, " -"<envar>ftp_proxy</envar> environment variable will be used. 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." +"proxies can also be specified by using the form " +"<literal>ftp::Proxy::<host></literal> with the special keyword " +"<literal>DIRECT</literal> meaning to use no proxies. If no one of the above " +"settings is specified, <envar>ftp_proxy</envar> environment variable will be " +"used. 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." msgstr "" "FTP-URIs; ftp::Proxy ist der zu benutzende Standard-FTP-Proxy. Er wird " -"standardm????ig in der Form <literal>ftp://[[Anwender][:Passwort]@]Host[:" -"Port]/</literal> angegeben. pro-Host-Proxys kann au??erdem in der Form " +"standardmäßig in der Form " +"<literal>ftp://[[Anwender][:Passwort]@]Host[:Port]/</literal> angegeben. " +"pro-Host-Proxys kann außerdem in der Form " "<literal>ftp::Proxy::<host></literal> angegeben werden. Hierbei " -"bedeutet das spezielle Schl??sselwort <literal>DIRECT</literal>, dass keine " -"Proxys benutzt werden. Falls keine der obigen Einstellungen angegeben wurde, " -"wird die Umgebungsvariable <envar>ftp_proxy</envar> benutzt. Um einen FTP-" -"Proxy zu benutzen, m??ssen Sie in der Konfigurationsdatei das Skript " -"<literal>ftp::ProxyLogin</literal> setzen. Dieser Eintrag gibt die Befehle " -"an, die gesendet werden m??ssen, um dem Proxy-Server mitzuteilen, womit er " -"sich verbinden soll. Um ein Beispiel zu erhalten, wie das gemacht wird, " -"lesen Sie bitte &configureindex;. Die Platzhaltervariablen sind <literal>" -"$(PROXY_USER)</literal>, <literal>$(PROXY_PASS)</literal>, <literal>" -"$(SITE_USER)</literal>, <literal>$(SITE_PASS)</literal>, <literal>$(SITE)</" -"literal> und <literal>$(SITE_PORT)</literal>. Jede wird von ihrem " -"entsprechenden URI-Bestandteil genommen." +"bedeutet das spezielle Schlüsselwort <literal>DIRECT</literal>, dass " +"keine Proxys benutzt werden. Falls keine der obigen Einstellungen " +"angegeben wurde, wird die Umgebungsvariable <envar>ftp_proxy</envar> " +"benutzt. Um einen FTP-Proxy zu benutzen, müssen Sie in der " +"Konfigurationsdatei das Skript <literal>ftp::ProxyLogin</literal> setzen. " +"Dieser Eintrag gibt die Befehle an, die gesendet werden müssen, um dem " +"Proxy-Server mitzuteilen, womit er sich verbinden soll. Um ein Beispiel " +"zu erhalten, wie das gemacht wird, lesen Sie bitte &configureindex;. Die " +"Platzhaltervariablen sind <literal>$(PROXY_USER)</literal>, " +"<literal>$(PROXY_PASS)</literal>, <literal>$(SITE_USER)</literal>, " +"<literal>$(SITE_PASS)</literal>, <literal>$(SITE)</literal> und " +"<literal>$(SITE_PORT)</literal>. Jede wird von ihrem entsprechenden " +"URI-Bestandteil genommen." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:304 @@ -6214,27 +6346,28 @@ msgid "" "instead. This can be done globally, for connections that go through a proxy " "or for a specific host (See the sample config file for examples)." msgstr "" -"Mehrere Einstellungen werden zum Steuern des passiven Modus bereitgestellt. " -"Generell ist es sicher, den passiven Modus eingeschaltet zu lassen, er " -"funktioniert in nahezu jeder Umgebung. Jedoch erfordern einige Situationen, " -"dass der passive Modus ausgeschaltet und stattdessen Port-Modus-FTP benutzt " -"wird. Dies kann global f??r Verbindungen gemacht werden, die durch einen " -"Proxy oder ??ber einen bestimmten Host gehen (Lesen Sie die " -"Beispielskonfiguration, um Beispiele zu erhalten)." +"Mehrere Einstellungen werden zum Steuern des passiven Modus " +"bereitgestellt. Generell ist es sicher, den passiven Modus eingeschaltet " +"zu lassen, er funktioniert in nahezu jeder Umgebung. Jedoch erfordern " +"einige Situationen, dass der passive Modus ausgeschaltet und stattdessen " +"Port-Modus-FTP benutzt wird. Dies kann global für Verbindungen gemacht " +"werden, die durch einen Proxy oder über einen bestimmten Host gehen " +"(Lesen Sie die Beispielskonfiguration, um Beispiele zu erhalten)." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:311 msgid "" -"It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" -"envar> environment variable to a http url - see the discussion of the http " -"method above for syntax. You cannot set this in the configuration file and " -"it is not recommended to use FTP over HTTP due to its low efficiency." +"It is possible to proxy FTP over HTTP by setting the " +"<envar>ftp_proxy</envar> environment variable to a http url - see the " +"discussion of the http method above for syntax. You cannot set this in the " +"configuration file and it is not recommended to use FTP over HTTP due to its " +"low efficiency." msgstr "" -"Es ist m??glich FTP ??ber HTTP zu leiten, indem die Umgebungsvariable " -"<envar>ftp_proxy</envar> auf eine HTTP-Url gesetzt wird ??? lesen Sie die " -"Besprechung der HTTP-Methode oberhalb bez??glich der Syntax. Sie k??nnen " -"dies nicht in der Konfigurationsdatei setzen und es wird wegen der geringen " -"Effizienz nicht empfohlen FTP ??ber HTTP zu benutzen." +"Es ist möglich FTP über HTTP zu leiten, indem die Umgebungsvariable " +"<envar>ftp_proxy</envar> auf eine HTTP-Url gesetzt wird – lesen Sie die " +"Besprechung der HTTP-Methode oberhalb bezüglich der Syntax. Sie können " +"dies nicht in der Konfigurationsdatei setzen und es wird wegen der " +"geringen Effizienz nicht empfohlen FTP über HTTP zu benutzen." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:316 @@ -6245,12 +6378,12 @@ msgid "" "IPv6. Setting this to true forces their use even on IPv4 connections. Note " "that most FTP servers do not support RFC2428." msgstr "" -"Die Einstellung <literal>ForceExtended</literal> steuert die Benutzung der " -"RFC2428-Befehle <literal>EPSV</literal> und <literal>EPRT</literal>. Die " -"Vorgabe ist false, was bedeutet, dass diese Befehle nur benutzt werden, wenn " -"die Steuerverbindung IPv6 ist. Dies auf true zu stellen erzwingt die " -"Benutzung selbst auf IPv4-Verbindungen. Beachten Sie, dass die wenigsten FTP-" -"Server RFC2428 unterst??tzen." +"Die Einstellung <literal>ForceExtended</literal> steuert die Benutzung " +"der RFC2428-Befehle <literal>EPSV</literal> und <literal>EPRT</literal>. " +"Die Vorgabe ist false, was bedeutet, dass diese Befehle nur benutzt " +"werden, wenn die Steuerverbindung IPv6 ist. Dies auf true zu stellen " +"erzwingt die Benutzung selbst auf IPv4-Verbindungen. Beachten Sie, dass " +"die wenigsten FTP-Server RFC2428 unterstützen." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:323 sources.list.5.xml:132 @@ -6275,15 +6408,15 @@ msgid "" "cdrom block. It is important to have the trailing slash. Unmount commands " "can be specified using UMount." msgstr "" -"CDROM-URIs; Die einzige Einstellung f??r CDROM-URIs ist der Einh??ngepunkt " -"<literal>cdrom::Mount</literal>, der der Einh??ngepunkt des CDROM-Laufwerks " -"sein muss, wie er in <filename>/etc/fstab</filename> angegeben wurde. Es ist " -"m??glich alternative Ein- und Aush??ngebefehle anzugeben, falls Ihr Einh??" -"ngepunkt nicht in der fstab aufgelistet werden kann (so wie beim Einh??ngen " -"per SMB und alten Mount-Paketen). Die Syntax besteht darin, <placeholder " -"type=\"literallayout\" id=\"0\"/> in den CDROM-Block einzuf??gen. Der " -"abschlie??ende Schr??gstrich ist wichtig. Aush??ngebefehle k??nnen per " -"UMount angegeben werden." +"CDROM-URIs; Die einzige Einstellung für CDROM-URIs ist der Einhängepunkt " +"<literal>cdrom::Mount</literal>, der der Einhängepunkt des " +"CDROM-Laufwerks sein muss, wie er in <filename>/etc/fstab</filename> " +"angegeben wurde. Es ist möglich alternative Ein- und Aushängebefehle " +"anzugeben, falls Ihr Einhängepunkt nicht in der fstab aufgelistet werden " +"kann (so wie beim Einhängen per SMB und alten Mount-Paketen). Die Syntax " +"besteht darin, <placeholder type=\"literallayout\" id=\"0\"/> in den " +"CDROM-Block einzufügen. Der abschließende Schrägstrich ist wichtig. " +"Aushängebefehle können per UMount angegeben werden." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:334 @@ -6297,9 +6430,9 @@ msgid "" "parameters to gpgv. <literal>gpgv::Options</literal> Additional options " "passed to gpgv." msgstr "" -"GPGV-URIs; Die einzige Option f??r GPGV-URIs ist die Option zus??tzliche " -"Parameter an gpgv weiterzuleiten. <literal>gpgv::Options</literal> Zus??" -"tzliche Parameter werden an gpgv weitergeleitet." +"GPGV-URIs; Die einzige Option für GPGV-URIs ist die Option zusätzliche " +"Parameter an gpgv weiterzuleiten. <literal>gpgv::Options</literal> " +"Zusätzliche Parameter werden an gpgv weitergeleitet." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt.conf.5.xml:340 @@ -6309,8 +6442,12 @@ msgstr "CompressionTypes" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> #: apt.conf.5.xml:346 #, no-wrap -msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" -msgstr "Acquire::CompressionTypes::<replaceable>Dateierweiterung</replaceable> \"<replaceable>Methodenname</replaceable>\";" +msgid "" +"Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> " +"\"<replaceable>Methodname</replaceable>\";" +msgstr "" +"Acquire::CompressionTypes::<replaceable>Dateierweiterung</replaceable> " +"\"<replaceable>Methodenname</replaceable>\";" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:341 @@ -6318,19 +6455,19 @@ msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " "compression formats. Per default the acquire methods can decompress " -"<command>bzip2</command>, <command>lzma</command> and <command>gzip</" -"command> compressed files, with this setting more formats can be added on " -"the fly or the used method can be changed. The syntax for this is: " +"<command>bzip2</command>, <command>lzma</command> and " +"<command>gzip</command> compressed files, with this setting more formats can " +"be added on the fly or the used method can be changed. The syntax for this " +"is: <placeholder type=\"synopsis\" id=\"0\"/>" +msgstr "" +"Die List der Kompressionstypen die von den »aquire«-Methoden " +"verstanden werden. Dateien wie <filename>Packages</filename> können in " +"verschiedenen Kompressionsformaten verfügbar sein. Standardmäßig können " +"die »aquire«-Methoden <command>bzip2</command>-, <command>lzma</command>- " +"und <command>gzip</command>-komprimierte Dateien dekomprimieren. Mit " +"dieser Einstellung können spontan weiter Formate hinzugefügt oder die " +"benutzte Methode geändert werden. Die Syntax dafür lautet: " "<placeholder type=\"synopsis\" id=\"0\"/>" -msgstr "" -"Die List der Kompressionstypen die von den ??aquire??-Methoden verstanden " -"werden. Dateien wie <filename>Packages</filename> k??nnen in verschiedenen " -"Kompressionsformaten verf??gbar sein. Standardm????ig k??nnen die ??aquire??-" -"Methoden <command>bzip2</command>-, <command>lzma</command>- und " -"<command>gzip</command>-komprimierte Dateien dekomprimieren. Mit dieser " -"Einstellung k??nnen spontan weiter Formate hinzugef??gt oder die benutzte " -"Methode ge??ndert werden. Die Syntax daf??r lautet: <placeholder type=" -"\"synopsis\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> #: apt.conf.5.xml:351 @@ -6352,29 +6489,31 @@ msgid "" "acquire system will try the first and proceed with the next compression type " "in this list on error, so to prefer one over the other type simple add the " "preferred type at first - not already added default types will be added at " -"run time to the end of the list, so e.g. <placeholder type=\"synopsis\" id=" -"\"0\"/> can be used to prefer <command>gzip</command> compressed files over " -"<command>bzip2</command> and <command>lzma</command>. If <command>lzma</" -"command> should be preferred over <command>gzip</command> and " +"run time to the end of the list, so e.g. <placeholder type=\"synopsis\" " +"id=\"0\"/> can be used to prefer <command>gzip</command> compressed files " +"over <command>bzip2</command> and <command>lzma</command>. If " +"<command>lzma</command> should be preferred over <command>gzip</command> and " "<command>bzip2</command> the configure setting should look like this " "<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 "" -"Au??erdem kann die Untergruppe <literal>Order</literal> benutzt werden, um " -"zu definieren, in welcher Reihenfolge das ??aquire??-System die " -"komprimierten Dateien herunterzuladen versucht. Das ??aquire??-System wird " -"die erste versuchen und mit dem n??chsten Kompressionstyp in dieser Liste " +"Außerdem kann die Untergruppe <literal>Order</literal> benutzt werden, um " +"zu definieren, in welcher Reihenfolge das »aquire«-System die " +"komprimierten Dateien herunterzuladen versucht. Das »aquire«-System wird " +"die erste versuchen und mit dem nächsten Kompressionstyp in dieser Liste " "bei einem Fehler fortfahren. Um daher einen nach dem anderen Typ " -"vorzuziehen, f??gen Sie einfach den bevorzugten Typ zuerst in die Liste ??? " -"noch nicht hinzugef??gte Standardtypen werden zur Laufzeit an das Ende der " -"Liste angeh??ngt, so kann z.B. <placeholder type=\"synopsis\"id=\"0\"/> " -"verwandt werden, um <command>gzip</command>-komprimierte Dateien ??ber " +"vorzuziehen, fügen Sie einfach den bevorzugten Typ zuerst in die Liste " +"– noch nicht hinzugefügte Standardtypen werden zur Laufzeit an das Ende " +"der Liste angehängt, so kann z.B. " +"<placeholder type=\"synopsis\"id=\"0\"/> verwandt werden, um " +"<command>gzip</command>-komprimierte Dateien über " "<command>bzip2</command> und <command>lzma</command> zu bevorzugen. Falls " -"<command>lzma</command> vor <command>gzip</command> und <command>bzip2</" -"command> vorgezogen werden soll, sollte die Konfigurationseinstellung so " -"aussehen: <placeholder type=\"synopsis\" id=\"1\"/>. Es ist nicht n??tig " -"<literal>bz2</literal> explizit zur Liste hinzuzuf??gen, da es automatisch " -"hinzuf??gt wird." +"<command>lzma</command> vor <command>gzip</command> und " +"<command>bzip2</command> vorgezogen werden soll, sollte die " +"Konfigurationseinstellung so aussehen: " +"<placeholder type=\"synopsis\" id=\"1\"/>. Es ist nicht nötig " +"<literal>bz2</literal> explizit zur Liste hinzuzufügen, da es automatisch " +"hinzufügt wird." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> #: apt.conf.5.xml:358 @@ -6385,28 +6524,30 @@ msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:356 msgid "" -"Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</" -"replaceable></literal> will be checked: If this setting exists the method " -"will only be used if this file exists, e.g. for the bzip2 method (the " -"inbuilt) setting is <placeholder type=\"literallayout\" id=\"0\"/> Note also " -"that list entries specified on the command line will be added at the end of " -"the list specified in the configuration files, but before the default " -"entries. To prefer a type in this case over the ones specified in in the " -"configuration files you can set the option direct - not in list style. This " -"will not override the defined list, it will only prefix the list with this " -"type." -msgstr "" -"Beachten Sie, dass <literal>Dir::Bin::<replaceable>Methodenname</" -"replaceable></literal> zur Laufzeit gepr??ft wird: Falls diese Einstellung " -"existiert, wird die Methode nur benutzt, wenn die Datei existiert, z.B. f??r " -"die (integrierte) bzip2-Methode ist die Einstellung <placeholder type=" -"\"literallayout\" id=\"0\"/>. Beachten Sie, dass diese auf der Befehlszeile " -"eingegebenen Eintr??ge an das Ende der Liste angeh??ngt werden, die in den " -"Konfigurationsdateien angegeben wurde, aber vor den Vorgabeeintr??gen. Um " -"einen Eintrag in diesem Fall vor einem, ??ber die in der Konfigurationsdatei " -"angegebenen, zu bevorzugen, k??nnen Sie diese Option direkt setzen ??? nicht " -"im Listenstil. Dies wird die definierte Liste nicht ??berschreiben, es wird " -"diesen Typ nur vor die Liste setzen." +"Note that at run time the " +"<literal>Dir::Bin::<replaceable>Methodname</replaceable></literal> will be " +"checked: If this setting exists the method will only be used if this file " +"exists, e.g. for the bzip2 method (the inbuilt) setting is <placeholder " +"type=\"literallayout\" id=\"0\"/> Note also that list entries specified on " +"the command line will be added at the end of the list specified in the " +"configuration files, but before the default entries. To prefer a type in " +"this case over the ones specified in in the configuration files you can set " +"the option direct - not in list style. This will not override the defined " +"list, it will only prefix the list with this type." +msgstr "" +"Beachten Sie, dass " +"<literal>Dir::Bin::<replaceable>Methodenname</replaceable></literal> zur " +"Laufzeit geprüft wird: Falls diese Einstellung existiert, wird die " +"Methode nur benutzt, wenn die Datei existiert, z.B. für die (integrierte) " +"bzip2-Methode ist die Einstellung " +"<placeholder type=\"literallayout\" id=\"0\"/>. Beachten Sie, dass diese " +"auf der Befehlszeile eingegebenen Einträge an das Ende der Liste " +"angehängt werden, die in den Konfigurationsdateien angegeben wurde, aber " +"vor den Vorgabeeinträgen. Um einen Eintrag in diesem Fall vor einem, über " +"die in der Konfigurationsdatei angegebenen, zu bevorzugen, können Sie " +"diese Option direkt setzen – nicht im Listenstil. Dies wird die " +"definierte Liste nicht überschreiben, es wird diesen Typ nur vor die " +"Liste setzen." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:363 @@ -6417,23 +6558,24 @@ msgid "" "time false negatives. Future versions will maybe include a way to really " "prefer uncompressed files to support the usage of local mirrors." msgstr "" -"Obwohl es m??glich ist, einen leeren Komprimierungstyp zu der " -"Reihenfolgenliste hinzuzuf??gen, versteht dies APT in der aktuellen Version " -"nicht richtig und wird viele Warnungen wegen nicht heruntergeladener Dateien " -"anzeigen ??? diese Warnungen sind meistens inkorrekte Treffer. Zuk??nftige " -"Versionen werden m??glicherweise eine M??glichkeit enthalten, um wirklich " -"unkomprimierte Dateien vorzuziehen, um den Gebrauch lokaler Spiegel zu " -"unterst??tzen." +"Obwohl es möglich ist, einen leeren Komprimierungstyp zu der " +"Reihenfolgenliste hinzuzufügen, versteht dies APT in der aktuellen " +"Version nicht richtig und wird viele Warnungen wegen nicht " +"heruntergeladener Dateien anzeigen – diese Warnungen sind meistens " +"inkorrekte Treffer. Zukünftige Versionen werden möglicherweise eine " +"Möglichkeit enthalten, um wirklich unkomprimierte Dateien vorzuziehen, um " +"den Gebrauch lokaler Spiegel zu unterstützen." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:197 msgid "" "The <literal>Acquire</literal> group of options controls the download of " -"packages and the URI handlers. <placeholder type=\"variablelist\" id=\"0\"/>" -msgstr "" -"Die <literal>Acquire</literal>-Gruppe der Optionen steuert das Herunterladen " -"von Paketen und die URI-Steuerprogramme. <placeholder type=\"variablelist\" " +"packages and the URI handlers. <placeholder type=\"variablelist\" " "id=\"0\"/>" +msgstr "" +"Die <literal>Acquire</literal>-Gruppe der Optionen steuert das " +"Herunterladen von Paketen und die URI-Steuerprogramme. " +"<placeholder type=\"variablelist\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:372 @@ -6448,17 +6590,17 @@ msgid "" "downloaded package lists in and <literal>status</literal> is the name of the " "dpkg status file. <literal>preferences</literal> is the name of the APT " "preferences file. <literal>Dir::State</literal> contains the default " -"directory to prefix on all sub items if they do not start with <filename>/</" -"filename> or <filename>./</filename>." +"directory to prefix on all sub items if they do not start with " +"<filename>/</filename> or <filename>./</filename>." msgstr "" "Der <literal>Dir::State</literal>-Abschnitt hat Verzeichnisse, die zu " -"lokalen Statusinformationen geh??ren. <literal>lists</literal> ist das " +"lokalen Statusinformationen gehören. <literal>lists</literal> ist das " "Verzeichnis, in das heruntergeladene Paketlisten platziert werden und " "<literal>status</literal> ist der Name der Dpkg-Statusdatei. " "<literal>preferences</literal> ist der Name der APT-Einstellungsdatei. " -"<literal>Dir::State</literal> enth??lt das Standardverzeichnis, das allen " -"Unterelementen vorangestellt wird, falls sie nicht mit <filename>/</" -"filename> oder <filename>./</filename> beginnen." +"<literal>Dir::State</literal> enthält das Standardverzeichnis, das allen " +"Unterelementen vorangestellt wird, falls sie nicht mit " +"<filename>/</filename> oder <filename>./</filename> beginnen." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:381 @@ -6472,16 +6614,16 @@ msgid "" "pkgcache rather than the srcpkgcache. Like <literal>Dir::State</literal> the " "default directory is contained in <literal>Dir::Cache</literal>" msgstr "" -"<literal>Dir::Cache</literal> enth??lt Orte, die zu lokalen " -"Zwischenspeicherinformationen geh??ren, so wie die beiden " -"Paketzwischenspeicher <literal>srcpkgcache</literal> und <literal>pkgcache</" -"literal>, sowie der Ort, an den heruntergeladene Archive platziert werden, " -"<literal>Dir::Cache::archives</literal>. Die Generierung von " -"Zwischenspeichern kann ausgeschaltet werden, indem ihre Namen leer gelassen " -"werden. Dies wird den Start verlangsamen, aber Plattenplatz sparen. Es ist " -"vermutlich vorzuziehen, statt des ??pkgcache??s den ??srcpkgcache?? " -"auszuschalten. Wie <literal>Dir::State</literal> ist das Standardverzeichnis " -"in <literal>Dir::Cache</literal> enthalten." +"<literal>Dir::Cache</literal> enthält Orte, die zu lokalen " +"Zwischenspeicherinformationen gehören, so wie die beiden " +"Paketzwischenspeicher <literal>srcpkgcache</literal> und " +"<literal>pkgcache</literal>, sowie der Ort, an den heruntergeladene " +"Archive platziert werden, <literal>Dir::Cache::archives</literal>. " +"Die Generierung von Zwischenspeichern kann ausgeschaltet werden, indem ihre " +"Namen leer gelassen werden. Dies wird den Start verlangsamen, aber " +"Plattenplatz sparen. Es ist vermutlich vorzuziehen, statt des »pkgcache«s " +"den »srcpkgcache« auszuschalten. Wie <literal>Dir::State</literal> ist das " +"Standardverzeichnis in <literal>Dir::Cache</literal> enthalten." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:390 @@ -6492,11 +6634,11 @@ msgid "" "effect, unless it is done from the config file specified by " "<envar>APT_CONFIG</envar>)." msgstr "" -"<literal>Dir::Etc</literal> enth??lt den Ort der Konfigurationsdateien, " -"<literal>sourcelist</literal> gibt den Ort der Quellliste und <literal>main</" -"literal> ist die Standardkonfigurationsdatei (Einstellung hat keine " -"Auswirkung, au??er wenn sie aus der in <envar>APT_CONFIG</envar> angegebenen " -"Konfigurationsdatei erfolgt)." +"<literal>Dir::Etc</literal> enthält den Ort der Konfigurationsdateien, " +"<literal>sourcelist</literal> gibt den Ort der Quellliste und " +"<literal>main</literal> ist die Standardkonfigurationsdatei (Einstellung " +"hat keine Auswirkung, außer wenn sie aus der in <envar>APT_CONFIG</envar> " +"angegebenen Konfigurationsdatei erfolgt)." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:396 @@ -6507,26 +6649,27 @@ msgid "" msgstr "" "Die <literal>Dir::Parts</literal>-Einstellung liest in allen " "Konfigurationsteilen in lexikalischer Reihenfolge vom angegebenen " -"Verzeichnis. Nachdem dies geschehen ist, wird die Hauptkonfigurationsdatei " -"geladen." +"Verzeichnis. Nachdem dies geschehen ist, wird die " +"Hauptkonfigurationsdatei geladen." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:400 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>bzip2</literal>, <literal>lzma</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." +"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>bzip2</literal>, <literal>lzma</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." msgstr "" -"Auf bin??re Programme wird von <literal>Dir::Bin</literal> verwiesen. " +"Auf binäre Programme wird von <literal>Dir::Bin</literal> verwiesen. " "<literal>Dir::Bin::Methods</literal> gibt den Ort des " -"Methodensteuerungsprogramms an und <literal>gzip</literal>, <literal>bzip2</" -"literal>, <literal>lzma</literal>, <literal>dpkg</literal>, <literal>apt-" -"get</literal>, <literal>dpkg-source</literal>, <literal>dpkg-buildpackage</" -"literal> und <literal>apt-cache</literal> geben den Ort des jeweiligen " -"Programms an." +"Methodensteuerungsprogramms an und <literal>gzip</literal>, " +"<literal>bzip2</literal>, <literal>lzma</literal>, " +"<literal>dpkg</literal>, <literal>apt-get</literal>, " +"<literal>dpkg-source</literal>, <literal>dpkg-buildpackage</literal> und " +"<literal>apt-cache</literal> geben den Ort des jeweiligen Programms an." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:408 @@ -6535,18 +6678,20 @@ msgid "" "set, all paths in <literal>Dir::</literal> will be relative to " "<literal>RootDir</literal>, <emphasis>even paths that are specified " "absolutely</emphasis>. So, for instance, if <literal>RootDir</literal> is " -"set to <filename>/tmp/staging</filename> and <literal>Dir::State::status</" -"literal> is set to <filename>/var/lib/dpkg/status</filename>, then the " -"status file will be looked up in <filename>/tmp/staging/var/lib/dpkg/status</" -"filename>." +"set to <filename>/tmp/staging</filename> and " +"<literal>Dir::State::status</literal> is set to " +"<filename>/var/lib/dpkg/status</filename>, then the status file will be " +"looked up in <filename>/tmp/staging/var/lib/dpkg/status</filename>." msgstr "" "Das Konfigurationselement <literal>RootDir</literal> hat eine besondere " -"Bedeutung. Falls es gesetzt ist, sind alle Pfad relativ zu <literal>RootDir</" -"literal>, <emphasis>sogar Pfade, die absolut angegeben wurden</emphasis>. So " -"wird zum Beispiel, wenn <literal>RootDir</literal> auf <filename>/tmp/" -"staging</filename> und <literal>Dir::State::status</literal> auf <filename>/" -"var/lib/dpkg/status</filename> gesetzt ist, nach der Statusdatei in " -"<filename>/tmp/staging/var/lib/dpkg/status</filename> nachgesehen." +"Bedeutung. Falls es gesetzt ist, sind alle Pfad relativ zu " +"<literal>RootDir</literal>, <emphasis>sogar Pfade, die absolut angegeben " +"wurden</emphasis>. So wird zum Beispiel, wenn <literal>RootDir</literal> " +"auf <filename>/tmp/staging</filename> und " +"<literal>Dir::State::status</literal> auf " +"<filename>/var/lib/dpkg/status</filename> gesetzt ist, nach der " +"Statusdatei in <filename>/tmp/staging/var/lib/dpkg/status</filename> " +"nachgesehen." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:421 @@ -6579,13 +6724,13 @@ msgid "" "for instance). pre-auto performs this action before downloading new " "packages." msgstr "" -"Zwischenspeicherbereinigungsmodus; Dieser Wert kann entweder always, prompt, " -"auto, pre-auto oder never sein. always und prompt werden, nachdem das " -"Upgrade durchgef??hrt wurde, alle Pakete aus dem Zwischenspeicher entfernen, " -"prompt (die Vorgabe) tut dies bedingt. auto entfernt nur jene Pakete, die " -"nicht l??nger heruntergeladen werden k??nnen (zum Beispiel, weil sie durch " -"eine neue Version ersetzt wurden). pre-auto f??hrt diese Aktion vor dem " -"Herunterladen neuer Pakete durch." +"Zwischenspeicherbereinigungsmodus; Dieser Wert kann entweder always, " +"prompt, auto, pre-auto oder never sein. always und prompt werden, nachdem " +"das Upgrade durchgeführt wurde, alle Pakete aus dem Zwischenspeicher " +"entfernen, prompt (die Vorgabe) tut dies bedingt. auto entfernt nur jene " +"Pakete, die nicht länger heruntergeladen werden können (zum Beispiel, " +"weil sie durch eine neue Version ersetzt wurden). pre-auto führt diese " +"Aktion vor dem Herunterladen neuer Pakete durch." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:437 @@ -6593,8 +6738,8 @@ msgid "" "The contents of this variable is passed to &apt-get; as command line options " "when it is run for the install phase." msgstr "" -"Die Inhalte dieser Variablen werden als Befehlszeilenoptionen an &apt-get; ??" -"bermittelt, wenn es f??r die Installationsphase durchlaufen wird." +"Die Inhalte dieser Variablen werden als Befehlszeilenoptionen an &apt-get; " +"übermittelt, wenn es für die Installationsphase durchlaufen wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:441 @@ -6607,8 +6752,8 @@ msgid "" "The contents of this variable is passed to &apt-get; as command line options " "when it is run for the update phase." msgstr "" -"Die Inhalte dieser Variable werden als Befehlszeilenoptionen an &apt-get; ??" -"bermittelt, wenn es f??r die Aktualisierungsphase durchlaufen wird." +"Die Inhalte dieser Variable werden als Befehlszeilenoptionen an &apt-get; " +"übermittelt, wenn es für die Aktualisierungsphase durchlaufen wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:446 @@ -6645,9 +6790,9 @@ msgid "" "using the list notation and each list item is passed as a single argument to " "&dpkg;." msgstr "" -"Dies ist eine Liste von Optionen, die an Dpkg ??bermittelt werden. Die " -"Optionen m??ssen unter Benutzung der Listenschreibweise angegeben werden und " -"jedes Listenelement wird als einzelnes Argument an &dpkg; ??bermittelt." +"Dies ist eine Liste von Optionen, die an Dpkg übermittelt werden. Die " +"Optionen müssen unter Benutzung der Listenschreibweise angegeben werden " +"und jedes Listenelement wird als einzelnes Argument an &dpkg; übermittelt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:464 @@ -6667,11 +6812,11 @@ msgid "" "commands are invoked in order using <filename>/bin/sh</filename>, should any " "fail APT will abort." msgstr "" -"Dies ist eine Liste von Shell-Befehlen, die vor/nach dem Aufruf von &dpkg; " -"ausgef??hrt werden. Wie <literal>options</literal> muss dies in " -"Listenschreibweise angegeben werden. Die Befehle werden der Reihenfolge nach " -"mit <filename>/bin/sh</filename> aufgerufen, sollte einer fehlschlagen, wird " -"APT abgebrochen." +"Dies ist eine Liste von Shell-Befehlen, die vor/nach dem Aufruf von " +"&dpkg; ausgeführt werden. Wie <literal>options</literal> muss dies in " +"Listenschreibweise angegeben werden. Die Befehle werden der Reihenfolge " +"nach mit <filename>/bin/sh</filename> aufgerufen, sollte einer " +"fehlschlagen, wird APT abgebrochen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:471 @@ -6687,28 +6832,30 @@ msgid "" "fail APT will abort. APT will pass to the commands on standard input the " "filenames of all .deb files it is going to install, one per line." msgstr "" -"Dies ist eine Liste von Shell-Befehlen, die vor dem Aufruf von Dpkg ausgef??" -"hrt werden. Wie <literal>options</literal> muss dies in Listenschreibweise " -"angegeben werden. Die Befehle werden der Reihenfolge nach mit <filename>/bin/" -"sh</filename> aufgerufen, sollte einer fehlschlagen, wird APT abgebrochen. " -"APT wird den Befehlen auf der Standardeingabe die Dateinamen aller .deb-" -"Dateien, die es installieren wird, ??bergeben, einen pro Zeile." +"Dies ist eine Liste von Shell-Befehlen, die vor dem Aufruf von Dpkg " +"ausgeführt werden. Wie <literal>options</literal> muss dies in " +"Listenschreibweise angegeben werden. Die Befehle werden der Reihenfolge " +"nach mit <filename>/bin/sh</filename> aufgerufen, sollte einer " +"fehlschlagen, wird APT abgebrochen. APT wird den Befehlen auf der " +"Standardeingabe die Dateinamen aller .deb-Dateien, die es installieren " +"wird, übergeben, einen pro Zeile." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:478 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " -"being changed. Version 2 is enabled by setting <literal>DPkg::Tools::" -"options::cmd::Version</literal> to 2. <literal>cmd</literal> is a command " -"given to <literal>Pre-Install-Pkgs</literal>." +"being changed. Version 2 is enabled by setting " +"<literal>DPkg::Tools::options::cmd::Version</literal> to " +"2. <literal>cmd</literal> is a command given to " +"<literal>Pre-Install-Pkgs</literal>." msgstr "" -"Version 2 dieses Protokolls gibt mehr Informationen aus, einschlie??lich der " -"Protokollversion, dem APT-Konfigurationsraum und den Paketen, Dateien und " -"den Versionen, die ge??ndert werden. Version 2 wird durch Setzen von " -"<literal>DPkg::Tools::options::cmd::Version</literal> auf 2 eingeschaltet. " -"<literal>cmd</literal> ist ein Befehl, der an <literal>Pre-Install-Pkgs</" -"literal> gegeben wird." +"Version 2 dieses Protokolls gibt mehr Informationen aus, einschließlich " +"der Protokollversion, dem APT-Konfigurationsraum und den Paketen, Dateien " +"und den Versionen, die geändert werden. Version 2 wird durch Setzen von " +"<literal>DPkg::Tools::options::cmd::Version</literal> auf 2 " +"eingeschaltet. <literal>cmd</literal> ist ein Befehl, der an " +"<literal>Pre-Install-Pkgs</literal> gegeben wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:485 @@ -6718,8 +6865,8 @@ msgstr "Run-Directory" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:486 msgid "" -"APT chdirs to this directory before invoking dpkg, the default is <filename>/" -"</filename>." +"APT chdirs to this directory before invoking dpkg, the default is " +"<filename>/</filename>." msgstr "" "APT wechselt mit chdir in dieses Verzeichnis, bevor Dpkg aufgerufen wird, " "die Vorgabe ist <filename>/</filename>." @@ -6735,14 +6882,14 @@ msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages, the " "default is to disable signing and produce all binaries." msgstr "" -"Diese Optionen werden an &dpkg-buildpackage; beim Kompilieren von Paketen ??" -"bermittelt. Standardm????ig wird das Signieren augeschaltet und alle " +"Diese Optionen werden an &dpkg-buildpackage; beim Kompilieren von Paketen " +"übermittelt. Standardmäßig wird das Signieren augeschaltet und alle " "Programme werden erstellt." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt.conf.5.xml:496 msgid "dpkg trigger usage (and related options)" -msgstr "Dpkd-Trigger-Benutzung (und zugeh??riger Optionen)" +msgstr "Dpkd-Trigger-Benutzung (und zugehöriger Optionen)" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt.conf.5.xml:497 @@ -6759,17 +6906,17 @@ msgid "" "100% state while it actually configures all packages." msgstr "" "APT kann Dpkg auf eine Art aufrufen, auf die aggressiv Gebrauch von " -"Triggern ??ber mehrere Dpkg-Aufrufe gemacht wird. Ohne weitere Optionen wird " -"Dpkg Trigger nur w??hrend seiner eigenen Ausf??hrung benutzen. Diese " -"Optionen zu benutzen, kann daher die zum Installieren/Upgrade ben??tigte " -"Zeit verk??rzen. Beachten Sie, dass geplant ist, diese Optionen in Zukunft " -"standardm????ig zu aktivieren, aber da es die Art, wie APT Dpkg aufruft, " -"drastisch ??ndert, ben??tigt es noch viele weitere Tests. <emphasis>Diese " -"Optionen sind daher aktuell noch experimentell und sollten nicht in " -"produktiven Umgebungen benutzt werden.</emphasis> Au??erdem unterbricht es " -"die Fortschrittsanzeige, so dass alle Oberfl??chen aktuell in der halben " -"(oder mehr) Zeit auf dem Status 100% stehen, w??hrend es aktuell alle Pakete " -"konfiguriert." +"Triggern über mehrere Dpkg-Aufrufe gemacht wird. Ohne weitere Optionen " +"wird Dpkg Trigger nur während seiner eigenen Ausführung benutzen. Diese " +"Optionen zu benutzen, kann daher die zum Installieren/Upgrade benötigte " +"Zeit verkürzen. Beachten Sie, dass geplant ist, diese Optionen " +"in Zukunft standardmäßig zu aktivieren, aber da es die Art, wie APT " +"Dpkg aufruft, drastisch ändert, benötigt es noch viele weitere Tests. " +"<emphasis>Diese Optionen sind daher aktuell noch experimentell und " +"sollten nicht in produktiven Umgebungen benutzt werden.</emphasis> " +"Außerdem unterbricht es die Fortschrittsanzeige, so dass alle " +"Oberflächen aktuell in der halben (oder mehr) Zeit auf dem Status 100% " +"stehen, während es aktuell alle Pakete konfiguriert." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> #: apt.conf.5.xml:512 @@ -6798,17 +6945,18 @@ msgid "" "see e.g. <command>dpkg --audit</command>. A defensive option combination " "would be <placeholder type=\"literallayout\" id=\"0\"/>" msgstr "" -"Beachten Sie, dass es nicht gew??hrleistet ist, dass APT diese Optionen " -"unterst??tzen wird oder dass diese Optionen in der Zukunft keinen (gro??" -"en) ??rger machen. Wenn Sie die allgemeinen Risiken und Probleme mit diesen " +"Beachten Sie, dass es nicht gewährleistet ist, dass APT diese Optionen " +"unterstützen wird oder dass diese Optionen in der Zukunft keinen (großen) " +"Ärger machen. Wenn Sie die allgemeinen Risiken und Probleme mit diesen " "Optionen verstanden haben, aber tapfer genug sind, sie testen zu helfen, " -"erstellen Sie eine neue Konfigurationsdatei und testen Sie eine Kombination " -"von Optionen. Bitte berichten Sie auf Englisch jegliche Fehler, Probleme und " -"Verbesserungen, denen Sie begegnen und stellen Sie sicher, dass Sie alle von " -"Ihnen benutzten Optionen in Ihren Berichten vermerken. Zum Zweck der " -"Fehlersuche k??nnte es au??erdem n??tzlich sein, Dpkg um Hilfe zu fragen. " -"Lesen Sie z.B. <command>dpkg --audit</command>. Eine defensive " -"Optionenkombination w??re <placeholder type=\"literallayout\" id=\"0\"/>" +"erstellen Sie eine neue Konfigurationsdatei und testen Sie eine " +"Kombination von Optionen. Bitte berichten Sie auf Englisch jegliche " +"Fehler, Probleme und Verbesserungen, denen Sie begegnen und stellen Sie " +"sicher, dass Sie alle von Ihnen benutzten Optionen in Ihren Berichten " +"vermerken. Zum Zweck der Fehlersuche könnte es außerdem nützlich sein, " +"Dpkg um Hilfe zu fragen. Lesen Sie z.B. <command>dpkg --audit</command>. " +"Eine defensive Optionenkombination wäre " +"<placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt.conf.5.xml:518 @@ -6826,15 +6974,16 @@ msgid "" "Previously these option only append --no-triggers to the configure calls to " "dpkg - now apt will add these flag also to the unpack and remove calls." msgstr "" -"Die keine-Trigger-Markierung zu allen Dpkg-Aufrufen hinzuf??gen (ausgenommen " -"den ConfigurePending-Aufruf). Siehe &dpkg;, wenn Sie interessiert sind, was " -"dies tats??chlich bedeutet. In K??rze: Dpkg wird die Trigger nicht ausf??" -"hren, dann ist diese Markierung vorhanden, au??er sie wird explizit " -"aufgerufen, um dies in einem gesonderten Aufruf zu tun. Beachten Sie, dass " -"diese Option au??erdem in ??lteren APT-Versionen mit einer geringf??gig " -"anderen Bedeutung existiert (nicht dokumentiert): Vorher hing diese Option " -"nur --no-triggers an die Konfigurationsaufrufe f??r Dpkg an ??? nun wird APT " -"diese Markierung au??erdem an die unpack- und remove-Aufrufe anh??ngen." +"Die keine-Trigger-Markierung zu allen Dpkg-Aufrufen hinzufügen " +"(ausgenommen den ConfigurePending-Aufruf). Siehe &dpkg;, wenn Sie " +"interessiert sind, was dies tatsächlich bedeutet. In Kürze: Dpkg wird die " +"Trigger nicht ausführen, dann ist diese Markierung vorhanden, außer sie " +"wird explizit aufgerufen, um dies in einem gesonderten Aufruf zu tun. " +"Beachten Sie, dass diese Option außerdem in älteren APT-Versionen mit " +"einer geringfügig anderen Bedeutung existiert (nicht dokumentiert): " +"Vorher hing diese Option nur --no-triggers an die Konfigurationsaufrufe " +"für Dpkg an – nun wird APT diese Markierung außerdem an die unpack- und " +"remove-Aufrufe anhängen." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt.conf.5.xml:526 @@ -6849,26 +6998,27 @@ msgid "" "value and causes APT to configure all packages explicit. The " "\"<literal>smart</literal>\" way is it to configure only packages which need " "to be configured before another package can be unpacked (Pre-Depends) and " -"let the rest configure by dpkg with a call generated by the next option. " -"\"<literal>no</literal>\" on the other hand will not configure anything and " -"totally relay on dpkg for configuration (which will at the moment fail if a " -"Pre-Depends is encountered). Setting this option to another than the all " -"value will implicit activate also the next option per default as otherwise " -"the system could end in an unconfigured status which could be unbootable!" -msgstr "" -"G??ltige Werte sind ??<literal>all</literal>??, ??<literal>smart</literal>?? " -"und ??<literal>no</literal>??. ??<literal>all</literal>?? ist der " -"Vorgabewert und veranlasst APT alle Pakete explizit zu konfigurieren. Die " -"Art von ??<literal>smart</literal>?? ist es, nur die Pakete zu " -"konfigurieren, die konfiguriert werden m??ssen, bevor eine anderes Paket " -"entpackt (Pre-Depends) werden kann und den Rest von Dpkg mit einem Aufruf, " -"der von der n??chsten Option generiert wurde, konfigurieren zu lassen. Im " -"Gegensatz dazu wird ??<literal>no</literal>?? nicht konfigurieren und v??" -"llig die Konfiguration von Dpkg weitergeben (die in dem Moment fehlschl??gt, " -"in dem ein Pre-Depends vorkommt). Diese Option auf etwas anderes als all zu " -"setzen, wird au??erdem implizit standardm????ig die n??chste Option " -"aktivieren, da das System anderenfalls in einem nicht konfigurierten Status " -"enden k??nnte, der nicht mehr startbar sein k??nnte." +"let the rest configure by dpkg with a call generated by the next " +"option. \"<literal>no</literal>\" on the other hand will not configure " +"anything and totally relay on dpkg for configuration (which will at the " +"moment fail if a Pre-Depends is encountered). Setting this option to " +"another than the all value will implicit activate also the next option per " +"default as otherwise the system could end in an unconfigured status which " +"could be unbootable!" +msgstr "" +"Gültige Werte sind »<literal>all</literal>«, »<literal>smart</literal>« " +"und »<literal>no</literal>«. »<literal>all</literal>« ist der Vorgabewert " +"und veranlasst APT alle Pakete explizit zu konfigurieren. Die Art von " +"»<literal>smart</literal>« ist es, nur die Pakete zu konfigurieren, die " +"konfiguriert werden müssen, bevor eine anderes Paket entpackt " +"(Pre-Depends) werden kann und den Rest von Dpkg mit einem Aufruf, der " +"von der nächsten Option generiert wurde, konfigurieren zu lassen. Im " +"Gegensatz dazu wird »<literal>no</literal>« nicht konfigurieren und " +"völlig die Konfiguration von Dpkg weitergeben (die in dem Moment " +"fehlschlägt, in dem ein Pre-Depends vorkommt). Diese Option auf etwas " +"anderes als all zu setzen, wird außerdem implizit standardmäßig die nächste " +"Option aktivieren, da das System anderenfalls in einem nicht " +"konfigurierten Status enden könnte, der nicht mehr startbar sein könnte." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt.conf.5.xml:537 @@ -6878,21 +7028,22 @@ msgstr "DPkg::ConfigurePending" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:538 msgid "" -"If this option is set apt will call <command>dpkg --configure --pending</" -"command> to let dpkg handle all required configurations and triggers. This " -"option is activated automatic per default if the previous option is not set " -"to <literal>all</literal>, but deactivating could be useful if you want to " -"run APT multiple times in a row - e.g. in an installer. In this sceneries " -"you could deactivate this option in all but the last run." -msgstr "" -"Wenn diese Option gesetzt ist, wird APT <command>dpkg --configure --pending</" -"command> aufrufen, um Dpkg alle ben??tigten Konfigurationen und Trigger " -"handhaben zu lassen. Diese Option ist als Vorgabe automatisch aktiviert, " -"wenn die vorherige Option nicht auf <literal>all</literal> gesetzt ist, aber " -"Deaktivieren k??nnte n??tzlich sein, wenn Sie APT mehrmals hintereinander " -"ausf??hren m??chten ??? z.B. in einem Installationsprogramm. In diesen " -"Szenarien k??nnten Sie diese Option au??er in allen au??er der letzten Ausf??" -"hrung deaktivieren." +"If this option is set apt will call <command>dpkg --configure " +"--pending</command> to let dpkg handle all required configurations and " +"triggers. This option is activated automatic per default if the previous " +"option is not set to <literal>all</literal>, but deactivating could be " +"useful if you want to run APT multiple times in a row - e.g. in an " +"installer. In this sceneries you could deactivate this option in all but the " +"last run." +msgstr "" +"Wenn diese Option gesetzt ist, wird APT <command>dpkg --configure " +"--pending</command> aufrufen, um Dpkg alle benötigten Konfigurationen " +"und Trigger handhaben zu lassen. Diese Option ist als Vorgabe automatisch " +"aktiviert, wenn die vorherige Option nicht auf <literal>all</literal> " +"gesetzt ist, aber Deaktivieren könnte nützlich sein, wenn Sie APT mehrmals " +"hintereinander ausführen möchten – z.B. in einem Installationsprogramm. In " +"diesen Szenarien könnten Sie diese Option außer in allen außer der " +"letzten Ausführung deaktivieren." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt.conf.5.xml:544 @@ -6908,12 +7059,12 @@ msgid "" "for Pre-Dependencies (see debbugs #526774). Note that this will process all " "triggers, not only the triggers needed to configure this package." msgstr "" -"N??tzlich f??r <literal>smart</literal>-Konfiguration, da ein Paket mit " -"ausstehenden Triggern nicht als <literal>installed</literal> angesehen wird " -"und Dpkg es als aktuell entpackt betrachtet, was ein Hemmschuh f??r Pre-" -"Dependencies ist (siehe Debian-Fehler #526774). Beachten Sie, dass dies alle " -"Trigger ausf??hrt, nicht nur die Trigger, die zum Konfigurieren dieses " -"Pakets ben??tigt werden." +"Nützlich für <literal>smart</literal>-Konfiguration, da ein Paket mit " +"ausstehenden Triggern nicht als <literal>installed</literal> angesehen " +"wird und Dpkg es als aktuell entpackt betrachtet, was ein Hemmschuh für " +"Pre-Dependencies ist (siehe Debian-Fehler #526774). Beachten Sie, dass dies " +"alle Trigger ausführt, nicht nur die Trigger, die zum Konfigurieren dieses " +"Pakets benötigt werden." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt.conf.5.xml:550 @@ -6924,21 +7075,21 @@ msgstr "PackageManager::UnpackAll" #: apt.conf.5.xml:551 msgid "" "As the configuration can be deferred to be done at the end by dpkg it can be " -"tried to order the unpack series only by critical needs, e.g. by Pre-" -"Depends. Default is true and therefore the \"old\" method of ordering in " +"tried to order the unpack series only by critical needs, e.g. by " +"Pre-Depends. Default is true and therefore the \"old\" method of ordering in " "various steps by everything. While both method were present in earlier APT " "versions the <literal>OrderCritical</literal> method was unused, so this " "method is very experimental and needs further improvements before becoming " "really useful." msgstr "" "Da die Konfiguration an das Ende von Dpkg verschoben werden kann, kann " -"versucht werden, nur die Entpackserien von kritischen Notwendigkeiten, z.B. " -"von Pre-Depends, anzuweisen. Vorgabe ist true und daher die ??alte?? Methode " -"zum Sortieren nach allem in mehreren Schritten. Obwohl in fr??heren " +"versucht werden, nur die Entpackserien von kritischen Notwendigkeiten, " +"z.B. von Pre-Depends, anzuweisen. Vorgabe ist true und daher die »alte« " +"Methode zum Sortieren nach allem in mehreren Schritten. Obwohl in früheren " "Versionen von APT beide Methoden enthalten waren, wurde die " "<literal>OrderCritical</literal>-Methode nicht benutzt, so dass diese " -"Methode sehr experimentell ist und weitere Verbesserungen ben??tigt, bevor " -"sie wirklich n??tzlich wird." +"Methode sehr experimentell ist und weitere Verbesserungen benötigt, bevor " +"sie wirklich nützlich wird." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt.conf.5.xml:558 @@ -6976,16 +7127,17 @@ msgid "" "change the scoring. The following example shows the settings with there " "default values. <placeholder type=\"literallayout\" id=\"0\"/>" msgstr "" -"Essentielle Pakete (und ihre Abh??ngigkeiten) sollten sofort nach dem " -"Entpacken konfiguriert werden. Es ist eine gute Idee, dies ziemlich fr??h im " -"Upgrade-Prozess zu tun, da diese Konfigurationsaufrufe aktuell au??erdem " -"<literal>DPkg::TriggersPending</literal> ben??tigen, das eine Reihe von " -"Triggern ausf??hrt (die m??glicherweise nicht gebraucht werden). Essentielle " -"Pakete haben als Vorgabe eine hohe Bewertung, aber die immediate-Markierung " -"ist relativ niedrig (ein Paket, das Pre-Depends hat, wird h??her bewertet). " -"Diese Option und die anderen in der gleichen Gruppe k??nnen benutzt werden, " -"um die Bewertung zu ??ndern. Das folgende Beispiel zeigt die Einstellungen " -"mit ihren Vorgabewerten. <placeholder type=\"literallayout\" id=\"0\"/>" +"Essentielle Pakete (und ihre Abhängigkeiten) sollten sofort nach dem " +"Entpacken konfiguriert werden. Es ist eine gute Idee, dies ziemlich früh " +"im Upgrade-Prozess zu tun, da diese Konfigurationsaufrufe aktuell " +"außerdem <literal>DPkg::TriggersPending</literal> benötigen, das eine Reihe " +"von Triggern ausführt (die möglicherweise nicht gebraucht werden). " +"Essentielle Pakete haben als Vorgabe eine hohe Bewertung, aber die " +"immediate-Markierung ist relativ niedrig (ein Paket, das Pre-Depends hat, " +"wird höher bewertet). Diese Option und die anderen in der gleichen Gruppe " +"können benutzt werden, um die Bewertung zu ändern. Das folgende Beispiel " +"zeigt die Einstellungen mit ihren Vorgabewerten. " +"<placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:579 @@ -7000,11 +7152,12 @@ msgid "" "<literal>/etc/cron.daily/apt</literal> script. See header of this script for " "the brief documentation of these options." msgstr "" -"<literal>APT::Periodic</literal>- und <literal>APT::Archives</literal>-" -"Gruppen von Optionen konfigurieren das Verhalten periodischer APT-" -"Aktualisierungen, die vom Skript <literal>/etc/cron.daily/apt</literal> " -"durchgef??hrt werden. Lesen Sie die Kopfzeilen dieses Skripts, um eine kurze " -"Dokumentation dieser Optionen zu erhalten." +"<literal>APT::Periodic</literal>- und " +"<literal>APT::Archives</literal>-Gruppen von Optionen konfigurieren das " +"Verhalten periodischer APT-Aktualisierungen, die vom Skript " +"<literal>/etc/cron.daily/apt</literal> durchgeführt werden. Lesen Sie die " +"Kopfzeilen dieses Skripts, um eine kurze Dokumentation dieser Optionen zu " +"erhalten." #. type: Content of: <refentry><refsect1><title> #: apt.conf.5.xml:588 @@ -7017,39 +7170,40 @@ msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " "utilizing the <literal>apt</literal> libraries, or enable special program " -"modes that are primarily useful for debugging the behavior of <literal>apt</" -"literal>. Most of these options are not interesting to a normal user, but a " -"few may be:" +"modes that are primarily useful for debugging the behavior of " +"<literal>apt</literal>. Most of these options are not interesting to a " +"normal user, but a few may be:" msgstr "" "Einschalten von Optionen im Abschnitt <literal>Debug::</literal> wird " -"veranlassen, dass Fehlersuchinformationen an die Standardfehlerausgabe des " -"Programms gesendet werden, das die <literal>apt</literal>-Bibliotheken " -"benutzt oder besondere Programmmodi einschaltet, die in erster Linie f??r " -"das Fehlersuchverhalten von <literal>apt</literal> n??tzlich sind. Die " -"meisten dieser Optionen sind f??r den normalen Anwender uninteressant, aber " -"ein paar k??nnten es sein:" +"veranlassen, dass Fehlersuchinformationen an die Standardfehlerausgabe " +"des Programms gesendet werden, das die <literal>apt</literal>-Bibliotheken " +"benutzt oder besondere Programmmodi einschaltet, die in erster Linie für " +"das Fehlersuchverhalten von <literal>apt</literal> nützlich sind. Die " +"meisten dieser Optionen sind für den normalen Anwender uninteressant, " +"aber ein paar könnten es sein:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.conf.5.xml:601 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " -"decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" -"literal>." +"decisions made by <literal>dist-upgrade, upgrade, install, remove, " +"purge</literal>." msgstr "" -"<literal>Debug::pkgProblemResolver</literal> schaltet die Ausgabe ??ber die " -"von <literal>dist-upgrade, upgrade, install, remove, purge</literal> " +"<literal>Debug::pkgProblemResolver</literal> schaltet die Ausgabe über " +"die von <literal>dist-upgrade, upgrade, install, remove, purge</literal> " "getroffenen Entscheidungen ein." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.conf.5.xml:609 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " -"used to run some operations (for instance, <literal>apt-get -s install</" -"literal>) as a non-root user." +"used to run some operations (for instance, <literal>apt-get -s " +"install</literal>) as a non-root user." msgstr "" -"<literal>Debug::NoLocking</literal> schaltet jegliches Sperren von Dateien " -"aus. Dies kann benutzt werden, um einige Operationen (zum Beispiel " -"<literal>apt-get -s install</literal>) als nicht root-Anwender auszuf??hren." +"<literal>Debug::NoLocking</literal> schaltet jegliches Sperren von " +"Dateien aus. Dies kann benutzt werden, um einige Operationen (zum " +"Beispiel <literal>apt-get -s install</literal>) als nicht root-Anwender " +"auszuführen." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> #: apt.conf.5.xml:618 @@ -7057,8 +7211,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> gibt die aktuelle Befehlszeile jedesmal " -"aus, wenn <literal>apt</literal> &dpkg; aufruft." +"<literal>Debug::pkgDPkgPM</literal> gibt die aktuelle Befehlszeile " +"jedesmal aus, wenn <literal>apt</literal> &dpkg; aufruft." #. TODO: provide a #. motivating example, except I haven't a clue why you'd want @@ -7069,13 +7223,13 @@ msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CDROM IDs." msgstr "" -"<literal>Debug::IdentCdrom</literal> schaltet das Einbeziehen von statfs-" -"Daten in CDROM-IDs aus." +"<literal>Debug::IdentCdrom</literal> schaltet das Einbeziehen von " +"statfs-Daten in CDROM-IDs aus." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:636 msgid "A full list of debugging options to apt follows." -msgstr "Eine vollst??ndige Liste der Fehlersuchoptionen von APT folgt." +msgstr "Eine vollständige Liste der Fehlersuchoptionen von APT folgt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:641 @@ -7084,11 +7238,10 @@ msgstr "<literal>Debug::Acquire::cdrom</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:645 -msgid "" -"Print information related to accessing <literal>cdrom://</literal> sources." +msgid "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" -"Gibt Informationen aus, die sich auf Zugriffe von <literal>cdrom://</" -"literal>-Quellen beziehen." +"Gibt Informationen aus, die sich auf Zugriffe von " +"<literal>cdrom://</literal>-Quellen beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:652 @@ -7099,8 +7252,8 @@ msgstr "<literal>Debug::Acquire::ftp</literal>" #: apt.conf.5.xml:656 msgid "Print information related to downloading packages using FTP." msgstr "" -"Gibt Informationen aus, die sich auf das Herunterladen von Paketen per FTP " -"beziehen." +"Gibt Informationen aus, die sich auf das Herunterladen von Paketen per " +"FTP beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:663 @@ -7111,8 +7264,8 @@ msgstr "<literal>Debug::Acquire::http</literal>" #: apt.conf.5.xml:667 msgid "Print information related to downloading packages using HTTP." msgstr "" -"Gibt Informationen aus, die sich auf das Herunterladen von Paketen per HTTP " -"beziehen." +"Gibt Informationen aus, die sich auf das Herunterladen von Paketen per " +"HTTP beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:674 @@ -7123,8 +7276,8 @@ msgstr "<literal>Debug::Acquire::https</literal>" #: apt.conf.5.xml:678 msgid "Print information related to downloading packages using HTTPS." msgstr "" -"Gibt Informationen aus, die sich auf das Herunterladen von Paketen per HTTPS " -"beziehen." +"Gibt Informationen aus, die sich auf das Herunterladen von Paketen per " +"HTTPS beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:685 @@ -7137,8 +7290,8 @@ msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" -"Gibt Informationen aus, die sich auf das Pr??fen kryptografischer Signaturen " -"mittels <literal>gpg</literal> beziehen." +"Gibt Informationen aus, die sich auf das Prüfen kryptografischer " +"Signaturen mittels <literal>gpg</literal> beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:696 @@ -7151,7 +7304,7 @@ msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" -"Informationen ??ber den Zugriffsprozess auf Paketsammlungen ausgeben, die " +"Informationen über den Zugriffsprozess auf Paketsammlungen ausgeben, die " "auf CD-ROMs gespeichert sind." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -7163,7 +7316,7 @@ msgstr "<literal>Debug::BuildDeps</literal>" #: apt.conf.5.xml:710 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" -"Beschreibt den Prozess der Aufl??sung von Bauabh??ngigkeiten in &apt-get;." +"Beschreibt den Prozess der Auflösung von Bauabhängigkeiten in &apt-get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:717 @@ -7173,11 +7326,11 @@ msgstr "<literal>Debug::Hashes</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:720 msgid "" -"Output each cryptographic hash that is generated by the <literal>apt</" -"literal> libraries." +"Output each cryptographic hash that is generated by the " +"<literal>apt</literal> libraries." msgstr "" -"Jeden kryptografischen Hash ausgeben, der von den <literal>apt</literal>-" -"Bibliotheken generiert wurde." +"Jeden kryptografischen Hash ausgeben, der von den " +"<literal>apt</literal>-Bibliotheken generiert wurde." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:727 @@ -7191,9 +7344,9 @@ msgid "" "of used and free blocks on the CD-ROM filesystem, when generating an ID for " "a CD-ROM." msgstr "" -"Keine Informationen von <literal>statfs</literal> einschlie??en, und zwar " -"die Anzahl der benutzten und freien Bl??cke auf dem CD-ROM-Dateisystem, wenn " -"eine ID f??r eine CD-ROM generiert wird." +"Keine Informationen von <literal>statfs</literal> einschließen, und zwar " +"die Anzahl der benutzten und freien Blöcke auf dem CD-ROM-Dateisystem, " +"wenn eine ID für eine CD-ROM generiert wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:738 @@ -7206,9 +7359,9 @@ 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 "" -"Jegliches Sperren von Dateien ausschalten. Dies wird zum Beispiel erlauben, " -"dass zwei Instanzen von <quote><literal>apt-get update</literal></quote> zur " -"gleichen Zeit laufen." +"Jegliches Sperren von Dateien ausschalten. Dies wird zum Beispiel " +"erlauben, dass zwei Instanzen von " +"<quote><literal>apt-get update</literal></quote> zur gleichen Zeit laufen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:749 @@ -7218,9 +7371,8 @@ msgstr "<literal>Debug::pkgAcquire</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:753 msgid "Log when items are added to or removed from the global download queue." -msgstr "" -"Protokollieren, wenn Elemente aus der globalen Warteschlange zum " -"Herunterladen hinzugef??gt oder entfernt werden." +msgstr "Protokollieren, wenn Elemente aus der globalen Warteschlange zum " +"Herunterladen hinzugefügt oder entfernt werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:760 @@ -7233,8 +7385,8 @@ msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." msgstr "" -"Statusmeldungen und Fehler ausgeben, die sich auf das Pr??fen von Pr??" -"fsummen und kryptografischen Signaturen von heruntergeladenen Dateien " +"Statusmeldungen und Fehler ausgeben, die sich auf das Prüfen von " +"Prüfsummen und kryptografischen Signaturen von heruntergeladenen Dateien " "beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -7248,8 +7400,9 @@ msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." msgstr "" -"Informationen ??ber das Herunterladen und Anwenden von Paketindexlisten-" -"Diffs und Fehler, die die Paketindexlisten-Diffs betreffen, ausgeben." +"Informationen über das Herunterladen und Anwenden von " +"Paketindexlisten-Diffs und Fehler, die die Paketindexlisten-Diffs " +"betreffen, ausgeben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:781 @@ -7263,7 +7416,7 @@ msgid "" "index diffs instead of full indices." msgstr "" "Informationen ausgeben, die sich auf das Patchen von Paketlisten von APT " -"beziehen, wenn Index-Diffs anstelle vollst??ndiger Indizes heruntergeladen " +"beziehen, wenn Index-Diffs anstelle vollständiger Indizes heruntergeladen " "werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -7273,11 +7426,10 @@ msgstr "<literal>Debug::pkgAcquire::Worker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:796 -msgid "" -"Log all interactions with the sub-processes that actually perform downloads." +msgid "Log all interactions with the sub-processes that actually perform downloads." msgstr "" -"Alle Interaktionen mit Unterprozessen protokollieren, die aktuell Downloads " -"durchf??hren." +"Alle Interaktionen mit Unterprozessen protokollieren, die aktuell " +"Downloads durchführen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:803 @@ -7290,9 +7442,9 @@ msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." msgstr "" -"Alle Ereignisse protokollieren, die sich auf den automatisch-installiert-" -"Status von Paketen und auf das Entfernen von nicht benutzten Paketen " -"beziehen." +"Alle Ereignisse protokollieren, die sich auf den " +"automatisch-installiert-Status von Paketen und auf das Entfernen von " +"nicht benutzten Paketen beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:814 @@ -7303,17 +7455,17 @@ msgstr "<literal>Debug::pkgDepCache::AutoInstall</literal>" #: apt.conf.5.xml:817 msgid "" "Generate debug messages describing which packages are being automatically " -"installed to resolve dependencies. This corresponds to the initial auto-" -"install pass performed in, e.g., <literal>apt-get install</literal>, and not " -"to the full <literal>apt</literal> dependency resolver; see <literal>Debug::" -"pkgProblemResolver</literal> for that." +"installed to resolve dependencies. This corresponds to the initial " +"auto-install pass performed in, e.g., <literal>apt-get install</literal>, " +"and not to the full <literal>apt</literal> dependency resolver; see " +"<literal>Debug::pkgProblemResolver</literal> for that." msgstr "" -"Fehlersuchmeldungen generieren, die beschreiben, welche Pakete automatisch " -"installiert werden, um Abh??ngigkeiten aufzul??sen. Dies entspricht dem " -"anfangs durchgef??hrten auto-install-Durchlauf, z.B. in <literal>apt-get " -"install</literal> und nicht dem vollst??ndigen <literal>apt</literal>-Abh??" -"ngigkeitsaufl??ser. Lesen Sie daf??r <literal>Debug::pkgProblemResolver</" -"literal>." +"Fehlersuchmeldungen generieren, die beschreiben, welche Pakete " +"automatisch installiert werden, um Abhängigkeiten aufzulösen. Dies " +"entspricht dem anfangs durchgeführten auto-install-Durchlauf, z.B. in " +"<literal>apt-get install</literal> und nicht dem vollständigen " +"<literal>apt</literal>-Abhängigkeitsauflöser. Lesen Sie dafür " +"<literal>Debug::pkgProblemResolver</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:828 @@ -7323,34 +7475,36 @@ msgstr "<literal>Debug::pkgDepCache::Marker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:831 msgid "" -"Generate debug messages describing which package is marked as keep/install/" -"remove while the ProblemResolver does his work. Each addition or deletion " -"may trigger additional actions; they are shown indented two additional space " -"under the original entry. The format for each line is <literal>MarkKeep</" -"literal>, <literal>MarkDelete</literal> or <literal>MarkInstall</literal> " -"followed by <literal>package-name <a.b.c -> d.e.f | x.y.z> (section)" -"</literal> where <literal>a.b.c</literal> is the current version of the " -"package, <literal>d.e.f</literal> is the version considered for installation " -"and <literal>x.y.z</literal> is a newer version, but not considered for " -"installation (because of a low pin score). The later two can be omitted if " -"there is none or if it is the same version as the installed. " -"<literal>section</literal> is the name of the section the package appears in." -msgstr "" -"Generiert Fehlersuchmeldungen, die beschreiben, welches Paket als keep/" -"install/remove markiert ist, w??hren der ProblemResolver seine Arbeit " -"verrichtet. Jedes Hinzuf??gen oder L??schen kann zus??tzliche Aktionen ausl??" -"sen. Sie werden nach zwei einger??ckten Leerzeichen unter dem " -"Originaleintrag angezeigt. Jede Zeile hat das Format <literal>MarkKeep</" -"literal>, <literal>MarkDelete</literal> oder <literal>MarkInstall</literal> " -"gefolgt von <literal>Paketname <a.b.c -> d.e.f | x.y.z> (Abschnitt)" -"</literal> wobei <literal>a.b.c</literal> die aktuelle Version des Paketes " -"ist, <literal>d.e.f</literal> die Version ist, die zur Installation " -"vorgesehen ist und <literal>x.y.z</literal> eine neuere Version ist, die " -"aber nicht zur Installation vorgesehen ist (aufgrund einer niedrigen Pinning-" -"Bewertung). Die letzten beiden k??nnen weggelassen werden, wenn es keine " -"gibt oder wenn sie die gleiche Version haben, wie die, die installiert ist. " -"<literal>section</literal> ist der Name des Abschnitts, in dem das Paket " -"erscheint." +"Generate debug messages describing which package is marked as " +"keep/install/remove while the ProblemResolver does his work. Each addition " +"or deletion may trigger additional actions; they are shown indented two " +"additional space under the original entry. The format for each line is " +"<literal>MarkKeep</literal>, <literal>MarkDelete</literal> or " +"<literal>MarkInstall</literal> followed by <literal>package-name <a.b.c " +"-> d.e.f | x.y.z> (section)</literal> where <literal>a.b.c</literal> " +"is the current version of the package, <literal>d.e.f</literal> is the " +"version considered for installation and <literal>x.y.z</literal> is a newer " +"version, but not considered for installation (because of a low pin " +"score). The later two can be omitted if there is none or if it is the same " +"version as the installed. <literal>section</literal> is the name of the " +"section the package appears in." +msgstr "" +"Generiert Fehlersuchmeldungen, die beschreiben, welches Paket als " +"keep/install/remove markiert ist, währen der ProblemResolver seine Arbeit " +"verrichtet. Jedes Hinzufügen oder Löschen kann zusätzliche Aktionen " +"auslösen. Sie werden nach zwei eingerückten Leerzeichen unter dem " +"Originaleintrag angezeigt. Jede Zeile hat das Format " +"<literal>MarkKeep</literal>, <literal>MarkDelete</literal> oder " +"<literal>MarkInstall</literal> gefolgt von <literal>Paketname <a.b.c " +"-> d.e.f | x.y.z> (Abschnitt)</literal> wobei " +"<literal>a.b.c</literal> die aktuelle Version des Paketes ist, " +"<literal>d.e.f</literal> die Version ist, die zur Installation vorgesehen " +"ist und <literal>x.y.z</literal> eine neuere Version ist, die aber nicht " +"zur Installation vorgesehen ist (aufgrund einer niedrigen " +"Pinning-Bewertung). Die letzten beiden können weggelassen werden, wenn es " +"keine gibt oder wenn sie die gleiche Version haben, wie die, die " +"installiert ist. <literal>section</literal> ist der Name des Abschnitts, in " +"dem das Paket erscheint." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:850 @@ -7389,8 +7543,8 @@ msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" -"Alle von &dpkg; empfangenen Daten ??ber einen Status-Datei-Deskriptor und " -"alle w??hrend deren Auswertung gefundenen Fehler ausgeben." +"Alle von &dpkg; empfangenen Daten über einen Status-Datei-Deskriptor und " +"alle während deren Auswertung gefundenen Fehler ausgeben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:881 @@ -7403,7 +7557,7 @@ msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" -"Eine Aufzeichnung des Algorithmus generieren, der ??ber die Reihenfolge " +"Eine Aufzeichnung des Algorithmus generieren, der über die Reihenfolge " "entscheidet, in der <literal>apt</literal> Pakete an &dpkg; weiterleiten " "soll." @@ -7414,11 +7568,10 @@ msgstr "<literal>Debug::pkgPackageManager</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:897 -msgid "" -"Output status messages tracing the steps performed when invoking &dpkg;." +msgid "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" "Statusmeldungen ausgeben, die die Schritte nachverfolgen, die beim Aufruf " -"von &dpkg; ausgef??hrt werden." +"von &dpkg; ausgeführt werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:904 @@ -7428,7 +7581,7 @@ msgstr "<literal>Debug::pkgPolicy</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:908 msgid "Output the priority of each package list on startup." -msgstr "Die Priorit??t jeder Paketliste beim Start ausgeben." +msgstr "Die Priorität jeder Paketliste beim Start ausgeben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:914 @@ -7441,8 +7594,8 @@ msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." msgstr "" -"Die Ausf??hrung des Abh??ngigkeitenverfolgers aufzeichnen (dies wird nur auf " -"das angewandt, was geschieht, wenn ein komplexes Abh??ngigkeitsproblem " +"Die Ausführung des Abhängigkeitenverfolgers aufzeichnen (dies wird nur auf " +"das angewandt, was geschieht, wenn ein komplexes Abhängigkeitsproblem " "aufgetreten ist)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -7457,10 +7610,10 @@ msgid "" "the pkgProblemResolver. The description of the package is the same as " "described in <literal>Debug::pkgDepCache::Marker</literal>" msgstr "" -"Eine Liste aller installierten Pakete mit ihren berechneten Bewertungen, die " -"vom pkgProblemResolver benutzt werden, ausgeben. Die Beschreibung des Pakets " -"ist die gleiche, wie in <literal>Debug::pkgDepCache::Marker</literal> " -"beschrieben." +"Eine Liste aller installierten Pakete mit ihren berechneten Bewertungen, " +"die vom pkgProblemResolver benutzt werden, ausgeben. Die Beschreibung des " +"Pakets ist die gleiche, wie in " +"<literal>Debug::pkgDepCache::Marker</literal> beschrieben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt.conf.5.xml:937 @@ -7470,10 +7623,10 @@ msgstr "<literal>Debug::sourceList</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt.conf.5.xml:941 msgid "" -"Print information about the vendors read from <filename>/etc/apt/vendors." -"list</filename>." +"Print information about the vendors read from " +"<filename>/etc/apt/vendors.list</filename>." msgstr "" -"Die Informationen ??ber die in <filename>/etc/apt/vendors.list</filename> " +"Die Informationen über die in <filename>/etc/apt/vendors.list</filename> " "gelesenen Anbieter ausgeben." #. type: Content of: <refentry><refsect1><para> @@ -7482,8 +7635,8 @@ msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." msgstr "" -"&configureindex; ist eine Konfigurationsdatei, die Beispielwerte f??r alle " -"m??glichen Optionen zeigen." +"&configureindex; ist eine Konfigurationsdatei, die Beispielwerte für alle " +"möglichen Optionen zeigen." #. type: Content of: <refentry><refsect1><variablelist> #: apt.conf.5.xml:970 @@ -7500,7 +7653,8 @@ msgstr "&apt-cache;, &apt-config;, &apt-preferences;." #. type: Content of: <refentry><refentryinfo> #: apt_preferences.5.xml:13 msgid "&apt-author.team; &apt-email; &apt-product; <date>04 May 2009</date>" -msgstr "&apt-author.team; &apt-email; &apt-product; <date>04. Mai 2009</date>" +msgstr "" +"&apt-author.team; &apt-email; &apt-product; <date>04. Mai 2009</date>" #. type: Content of: <refentry><refnamediv><refname> #: apt_preferences.5.xml:21 apt_preferences.5.xml:28 @@ -7510,7 +7664,7 @@ msgstr "apt_preferences" #. type: Content of: <refentry><refnamediv><refpurpose> #: apt_preferences.5.xml:29 msgid "Preference control file for APT" -msgstr "Voreinstellungssteuerdatei f??r APT" +msgstr "Voreinstellungssteuerdatei für APT" #. type: Content of: <refentry><refsect1><para> #: apt_preferences.5.xml:34 @@ -7521,9 +7675,9 @@ msgid "" "installation." msgstr "" "Die APT-Einstellungsdatei <filename>/etc/apt/preferences</filename> und " -"Teildateien im Verzeichnis <filename>/etc/apt/preferences.d/</filename> k??" -"nnen benutzt werden, um zu steuern, welcher Versionen von Paketen zur " -"Installation ausgew??hlt werden." +"Teildateien im Verzeichnis <filename>/etc/apt/preferences.d/</filename> " +"können benutzt werden, um zu steuern, welcher Versionen von Paketen zur " +"Installation ausgewählt werden." #. type: Content of: <refentry><refsect1><para> #: apt_preferences.5.xml:39 @@ -7537,15 +7691,15 @@ msgid "" "priorities that APT assigns to package versions by default, thus giving the " "user control over which one is selected for installation." msgstr "" -"Es k??nnten mehrere Versionen eines Pakets zur Installation verf??gbar sein, " -"wenn die Datei &sources-list; Bez??ge zu mehr als einer Distribution enth??" -"lt (zum Beispiel <literal>stable</literal> und <literal>testing</literal>). " -"APT weist jeder verf??gbaren Version eine Priorit??t zu. Abh??ngig von Abh??" -"ngigkeitsbedingungen, w??hlt <command>apt-get</command> die Version mit der " -"h??chsten Priorit??t zur Installation aus. Die APT-Einstellungsdatei ??" -"berschreibt die Priorit??ten, die APT den Paketversionen standardm????ig " -"zuweist, was dem Anwender die Kontrolle dar??ber gibt, welche zur " -"Installation ausgew??hlt wird." +"Es könnten mehrere Versionen eines Pakets zur Installation verfügbar " +"sein, wenn die Datei &sources-list; Bezüge zu mehr als einer Distribution " +"enthält (zum Beispiel <literal>stable</literal> und " +"<literal>testing</literal>). APT weist jeder verfügbaren Version eine " +"Priorität zu. Abhängig von Abhängigkeitsbedingungen, wählt " +"<command>apt-get</command> die Version mit der höchsten Priorität zur " +"Installation aus. Die APT-Einstellungsdatei überschreibt die Prioritäten, " +"die APT den Paketversionen standardmäßig zuweist, was dem Anwender die " +"Kontrolle darüber gibt, welche zur Installation ausgewählt wird." #. type: Content of: <refentry><refsect1><para> #: apt_preferences.5.xml:49 @@ -7556,23 +7710,27 @@ msgid "" "the &sources-list; file. The APT preferences file does not affect the " "choice of instance, only the choice of version." msgstr "" -"Es k??nnten mehrere Instanzen der gleichen Version eines Paketes verf??gbar " -"sein, wenn die Datei &sources-list; Bez??ge zu mehr als einer Distribution " -"enth??lt. In diesem Fall l??dt <command>apt-get</command> die Instanz " -"herunter, die in der Datei &sources-list; als erstes aufgelistet ist. Die " -"APT-Einstellungsdatei beeinflusst die Wahl der Instanz nicht, nur die Wahl " -"der Version." +"Es könnten mehrere Instanzen der gleichen Version eines Paketes verfügbar " +"sein, wenn die Datei &sources-list; Bezüge zu mehr als einer Distribution " +"enthält. In diesem Fall lädt <command>apt-get</command> die Instanz " +"herunter, die in der Datei &sources-list; als erstes aufgelistet ist. " +"Die APT-Einstellungsdatei beeinflusst die Wahl der Instanz nicht, nur die " +"Wahl der Version." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:56 msgid "APT's Default Priority Assignments" -msgstr "APTs Standardpriorit??tszuweisungen" +msgstr "APTs Standardprioritätszuweisungen" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:71 #, no-wrap -msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" -msgstr "<command>apt-get install -t testing <replaceable>irgendein_Paket</replaceable></command>\n" +msgid "" +"<command>apt-get install -t testing " +"<replaceable>some-package</replaceable></command>\n" +msgstr "" +"<command>apt-get install -t testing " +"<replaceable>irgendein_Paket</replaceable></command>\n" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:74 @@ -7590,29 +7748,31 @@ msgid "" "receives a higher priority than other distributions do by default. The " "target release can be set on the <command>apt-get</command> command line or " "in the APT configuration file <filename>/etc/apt/apt.conf</filename>. Note " -"that this has precedence over any general priority you set in the <filename>/" -"etc/apt/preferences</filename> file described later, but not over " -"specifically pinned packages. For example, <placeholder type=" -"\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>" +"that this has precedence over any general priority you set in the " +"<filename>/etc/apt/preferences</filename> file described later, but not over " +"specifically pinned packages. For example, <placeholder " +"type=\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" " +"id=\"1\"/>" msgstr "" "Wenn es keine Einstellungsdatei gibt oder es in der Datei keinen Eintrag " "gibt, der sich auf eine bestimmte Version bezieht, dann ist die dieser " -"Version zugewiesene Priorit??t, die Priorit??t der Distribution zu der die " -"Version geh??rt. Es ist m??glich eine Distribution auszuzeichnen, ??das Ziel-" -"Release??, die eine h??here Priorit??t erh??lt, als dies andere " -"Distributionen standardm????ig tun. Das Ziel-Release kann auf der " -"<command>apt-get</command>-Befehlszeile oder in der APT-Konfigurationsdatei " -"<filename>/etc/apt/apt.conf</filename> gesetzt werden. Beachten Sie, dass " -"dies Vorrang vor einer allgemeinen Priorit??t hat, die Sie, wie sp??ter " -"beschrieben, in der Datei <filename>/etc/apt/preferences</filename> setzen, " -"aber nicht vor bestimmten mit Pinning gewichteten Paketen. Beispielsweise " -"<placeholder type=\"programlisting\" id=\"0\"/> <placeholder type=" -"\"programlisting\" id=\"1\"/>" +"Version zugewiesene Priorität, die Priorität der Distribution zu der die " +"Version gehört. Es ist möglich eine Distribution auszuzeichnen, »das " +"Ziel-Release«, die eine höhere Priorität erhält, als dies andere " +"Distributionen standardmäßig tun. Das Ziel-Release kann auf der " +"<command>apt-get</command>-Befehlszeile oder in der " +"APT-Konfigurationsdatei <filename>/etc/apt/apt.conf</filename> gesetzt " +"werden. Beachten Sie, dass dies Vorrang vor einer allgemeinen Priorität " +"hat, die Sie, wie später beschrieben, in der Datei " +"<filename>/etc/apt/preferences</filename> setzen, aber nicht vor " +"bestimmten mit Pinning gewichteten Paketen. Beispielsweise <placeholder " +"type=\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" " +"id=\"1\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:83 msgid "priority 100" -msgstr "Priorit??t 100" +msgstr "Priorität 100" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:84 @@ -7622,7 +7782,7 @@ msgstr "zu der Version, die bereits installiert ist (wenn vorhanden)." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:88 msgid "priority 500" -msgstr "Priorit??t 500" +msgstr "Priorität 500" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:89 @@ -7630,20 +7790,19 @@ msgid "" "to the versions that are not installed and do not belong to the target " "release." msgstr "" -"zu den Versionen, die nicht installiert sind und die nicht zum Ziel-Release " -"geh??ren." +"zu den Versionen, die nicht installiert sind und die nicht zum " +"Ziel-Release gehören." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:93 msgid "priority 990" -msgstr "Priorit??t 990" +msgstr "Priorität 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:94 -msgid "" -"to the versions that are not installed and belong to the target release." +msgid "to the versions that are not installed and belong to the target release." msgstr "" -"zu den Versionen, die nicht installiert sind und zum Ziel-Release geh??ren." +"zu den Versionen, die nicht installiert sind und zum Ziel-Release gehören." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:78 @@ -7653,7 +7812,7 @@ msgid "" "<placeholder type=\"variablelist\" id=\"0\"/>" msgstr "" "Wenn das Ziel-Release angegeben wurde, dann benutzt APT den folgenden " -"Algorithmus, um die Priorit??ten der Versionen eines Paketes zu setzen. " +"Algorithmus, um die Prioritäten der Versionen eines Paketes zu setzen. " "Zuweisung: <placeholder type=\"variablelist\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> @@ -7664,8 +7823,8 @@ msgid "" "uninstalled package versions." 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 100 und allen nicht " +"installierten Paketversionen eine Priorität von 500 zu." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:103 @@ -7674,8 +7833,8 @@ msgid "" "determine which version of a package to install." msgstr "" "APT wendet dann die folgenden Regeln an, aufgelistet in der Reihenfolge " -"ihres Vorrangs, um zu bestimmen in welcher Version das Paket zu installieren " -"ist." +"ihres Vorrangs, um zu bestimmen in welcher Version das Paket zu " +"installieren ist." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:106 @@ -7686,17 +7845,17 @@ msgid "" "exceeds 1000; such high priorities can only be set in the preferences file. " "Note also that downgrading a package can be risky.)" msgstr "" -"F??hren Sie niemals ein Downgrade durch, au??er wenn die Priorit??t verf??" -"gbarer Pakete 1000 ??bersteigt. ??Downgrading?? ist das Installieren einer " -"weniger aktuellen Version, an Stelle einer aktuelleren Version. Beachten " -"Sie, dass keine Standardpriorit??t von APT 1000 ??bersteigt. So hohe " -"Priorit??ten k??nnen nur durch die Einstellungsdatei gesetzt werden. " -"Beachten Sie au??erdem, dass Downgrading eines Paketes riskant sein kann.)" +"Führen Sie niemals ein Downgrade durch, außer wenn die Priorität " +"verfügbarer Pakete 1000 übersteigt. »Downgrading« ist das Installieren " +"einer weniger aktuellen Version, an Stelle einer aktuelleren Version. " +"Beachten Sie, dass keine Standardpriorität von APT 1000 übersteigt. So " +"hohe Prioritäten können nur durch die Einstellungsdatei gesetzt werden. " +"Beachten Sie außerdem, dass Downgrading eines Paketes riskant sein kann.)" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:112 msgid "Install the highest priority version." -msgstr "Die Version mit der h??chsten Priorit??t installieren." +msgstr "Die Version mit der höchsten Priorität installieren." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:113 @@ -7704,20 +7863,20 @@ msgid "" "If two or more versions have the same priority, install the most recent one " "(that is, the one with the higher version number)." msgstr "" -"Wenn zwei oder mehr Versionen die gleiche Priorit??t haben, wird die " -"aktuellste installiert (das ist die mit der h??heren Versionsnummer)." +"Wenn zwei oder mehr Versionen die gleiche Priorität haben, wird die " +"aktuellste installiert (das ist die mit der höheren Versionsnummer)." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:116 msgid "" "If two or more versions have the same priority and version number but either " -"the packages differ in some of their metadata or the <literal>--reinstall</" -"literal> option is given, install the uninstalled one." +"the packages differ in some of their metadata or the " +"<literal>--reinstall</literal> option is given, install the uninstalled one." msgstr "" -"Wenn zwei oder mehr Versionen die gleiche Priorit??t und Versionsnummer " -"haben, die Pakete sich aber entweder in ihren Metadaten unterscheiden oder " -"die Option <literal>--reinstall</literal> angegeben wurde, wird die nicht " -"installierte installiert." +"Wenn zwei oder mehr Versionen die gleiche Priorität und Versionsnummer " +"haben, die Pakete sich aber entweder in ihren Metadaten unterscheiden " +"oder die Option <literal>--reinstall</literal> angegeben wurde, wird die " +"nicht installierte installiert." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:122 @@ -7725,29 +7884,31 @@ msgid "" "In a typical situation, the installed version of a package (priority 100) " "is not as recent as one of the versions available from the sources listed in " "the &sources-list; file (priority 500 or 990). Then the package will be " -"upgraded when <command>apt-get install <replaceable>some-package</" -"replaceable></command> or <command>apt-get upgrade</command> is executed." +"upgraded when <command>apt-get install " +"<replaceable>some-package</replaceable></command> or <command>apt-get " +"upgrade</command> is executed." msgstr "" -"In einer typischen Situation ist die Version eines Paketes (Priorit??t 100) " -"nicht so aktuell, wie eine der verf??gbaren Versionen, die in der Quellliste " -"der Datei &sources-list; steht (Priorit??t 500 oder 900). Dann wird ein " -"Upgrade des Pakets durchgef??hrt, wenn <command>apt-get install " -"<replaceable>irgendein_Paket</replaceable></command> oder <command>apt-get " -"upgrade</command> ausgef??hrt wird." +"In einer typischen Situation ist die Version eines Paketes (Priorität " +"100) nicht so aktuell, wie eine der verfügbaren Versionen, die in der " +"Quellliste der Datei &sources-list; steht (Priorität 500 oder 900). Dann " +"wird ein Upgrade des Pakets durchgeführt, wenn <command>apt-get install " +"<replaceable>irgendein_Paket</replaceable></command> oder " +"<command>apt-get upgrade</command> ausgeführt wird." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:129 msgid "" "More rarely, the installed version of a package is <emphasis>more</emphasis> " "recent than any of the other available versions. The package will not be " -"downgraded when <command>apt-get install <replaceable>some-package</" -"replaceable></command> or <command>apt-get upgrade</command> is executed." +"downgraded when <command>apt-get install " +"<replaceable>some-package</replaceable></command> or <command>apt-get " +"upgrade</command> is executed." msgstr "" -"Seltener ist die installierte Version eines Pakets <emphasis>neuer</" -"emphasis>, als jede andere der verf??gbaren Versionen. F??r das Paket wird " -"kein Downgrade durchgef??hrt, wenn <command>apt-get install " -"<replaceable>irgendein_Paket</replaceable></command> oder <command>apt-get " -"upgrade</command> ausgef??hrt wird." +"Seltener ist die installierte Version eines Pakets " +"<emphasis>neuer</emphasis>, als jede andere der verfügbaren Versionen. " +"Für das Paket wird kein Downgrade durchgeführt, wenn <command>apt-get " +"install <replaceable>irgendein_Paket</replaceable></command> oder " +"<command>apt-get upgrade</command> ausgeführt wird." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:134 @@ -7761,12 +7922,12 @@ msgid "" "than the installed version." msgstr "" "Manchmal ist die installierte Version eines Pakets aktueller, als die " -"Version, die zum Ziel-Release geh??rt, aber nicht so aktuell, wie eine " -"Version, die zu einer anderen Distribution geh??rt. F??r ein derartiges " -"Paket wird tats??chlich ein Upgrade durchgef??hrt, wenn <command>apt-get " -"install <replaceable>irgendein_Paket</replaceable></command> oder " -"<command>apt-get upgrade</command> ausgef??hrt wird, weil mindestens " -"<emphasis>eine</emphasis> der verf??gbaren Versionen eine h??here Priorit??t " +"Version, die zum Ziel-Release gehört, aber nicht so aktuell, wie eine " +"Version, die zu einer anderen Distribution gehört. Für ein derartiges " +"Paket wird tatsächlich ein Upgrade durchgeführt, wenn <command>apt-get " +"install <replaceable>irgendein_Paket</replaceable></command> " +"oder <command>apt-get upgrade</command> ausgeführt wird, weil mindestens " +"<emphasis>eine</emphasis> der verfügbaren Versionen eine höhere Priorität " "als die installierte Version hat." #. type: Content of: <refentry><refsect1><refsect2><title> @@ -7783,10 +7944,10 @@ msgid "" "specific form and a general form." msgstr "" "Die APT-Einstellungsdatei erlaubt einem Systemverwalter die Zuweisung von " -"Priorit??ten zu steuern. Die Datei besteht aus einem oder mehreren " -"mehrzeiligen Datens??tzen, die durch leere Zeilen getrennt sind. Datens??tze " -"k??nnen eine von zwei Gestalten haben, eine spezielle Gestalt oder eine " -"allgemeine Gestalt." +"Prioritäten zu steuern. Die Datei besteht aus einem oder mehreren " +"mehrzeiligen Datensätzen, die durch leere Zeilen getrennt sind. " +"Datensätze können eine von zwei Gestalten haben, eine spezielle Gestalt " +"oder eine allgemeine Gestalt." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:151 @@ -7797,12 +7958,12 @@ msgid "" "<filename>perl</filename> package whose version number begins with " "\"<literal>5.8</literal>\". Multiple packages can be separated by spaces." msgstr "" -"Die spezielle Form weist die Priorit??t (eine ??Pin-Priorit??t??) einem oder " +"Die spezielle Form weist die Priorität (eine »Pin-Priorität«) einem oder " "mehreren angegebenen Paketen und angegebenen Versionen oder " "Versionsbereichen zu. Der folgende Datensatz weist zum Beispiel allen " -"Versionen des <filename>perl</filename>-Pakets eine h??here Priorit??t zu, " -"deren Versionsnummer mit ??<literal>5.8</literal>?? beginnt. Mehrere Pakete " -"k??nnen durch Leerzeichen getrennt werden." +"Versionen des <filename>perl</filename>-Pakets eine höhere Priorität zu, " +"deren Versionsnummer mit »<literal>5.8</literal>« beginnt. Mehrere Pakete " +"können durch Leerzeichen getrennt werden." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:158 @@ -7827,9 +7988,10 @@ msgid "" msgstr "" "Die allgemeine Form weist allen Paketversionen in einer gegebenen " "Distribution (d.h. alle Versionen von Paketen, die in einer bestimmten " -"<filename>Release</filename>-Datei gelistet sind) oder allen Paketversionen, " -"die von einer speziellen Internet-Site kommen, die durch ihren voll " -"ausgebildeten Dom??nennamen identifiziert wird, eine Priorit??t zu." +"<filename>Release</filename>-Datei gelistet sind) oder allen " +"Paketversionen, die von einer speziellen Internet-Site kommen, die durch " +"ihren voll ausgebildeten Domänennamen identifiziert wird, eine Priorität " +"zu." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:170 @@ -7840,7 +8002,7 @@ msgid "" msgstr "" "Dieser Eintrag in allgemeiner Form in der APT-Einstellungsdatei verwendet " "nur Gruppen von Paketen. Der folgende Eintrag weist zum Beispiel allen " -"Paketversionen eine hohe Priorit??t zu, die lokale liegen." +"Paketversionen eine hohe Priorität zu, die lokale liegen." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:175 @@ -7863,23 +8025,24 @@ msgid "" "a <filename>Release</filename> file is not an 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??." +"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«." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:186 msgid "" "The following record assigns a low priority to all package versions " -"belonging to any distribution whose Archive name is \"<literal>unstable</" -"literal>\"." +"belonging to any distribution whose Archive name is " +"\"<literal>unstable</literal>\"." msgstr "" "Der folgende Datensatz weist allen Paketversionen, die zu Distributionen " -"geh??ren, deren Archivname ??<literal>unstable</literal>?? ist, eine " -"niedrige Priorit??t zu." +"gehören, deren Archivname »<literal>unstable</literal>« ist, eine niedrige " +"Priorität zu." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:190 @@ -7897,12 +8060,12 @@ msgstr "" #: apt_preferences.5.xml:195 msgid "" "The following record assigns a high priority to all package versions " -"belonging to any distribution whose Codename is \"<literal>squeeze</literal>" -"\"." +"belonging to any distribution whose Codename is " +"\"<literal>squeeze</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." +"Der folgende Datensatz weist allen Paketversionen, die zu einer " +"Distribution gehören, deren Codename »<literal>squeeze</literal>« ist, " +"eine hohe Priorität zu." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:199 @@ -7923,9 +8086,9 @@ msgid "" "belonging to any release whose Archive name is \"<literal>stable</literal>\" " "and whose release Version number is \"<literal>3.0</literal>\"." msgstr "" -"Der folgende Datensatz weist allen Paketversionen, die zu einer Distribution " -"geh??ren, deren Archivname ??<literal>stable</literal>?? und deren Release-" -"Nummer ??<literal>3.0</literal>?? ist, eine hohe Priorit??t zu." +"Der folgende Datensatz weist allen Paketversionen, die zu einer " +"Distribution gehören, deren Archivname »<literal>stable</literal>« und " +"deren Release-Nummer »<literal>3.0</literal>« ist, eine hohe Priorität zu." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:209 @@ -7942,7 +8105,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:220 msgid "How APT Interprets Priorities" -msgstr "Wie APT Priorit??ten interpretiert" +msgstr "Wie APT Prioritäten interpretiert" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:228 @@ -7955,8 +8118,8 @@ msgid "" "causes a version to be installed even if this constitutes a downgrade of the " "package" msgstr "" -"veranlasst, dass eine Version installiert wird, auch wenn dies ein Downgrade " -"des Pakets durchf??hrt" +"veranlasst, dass eine Version installiert wird, auch wenn dies ein " +"Downgrade des Pakets durchführt" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:233 @@ -7970,7 +8133,7 @@ msgid "" "release, unless the installed version is more recent" msgstr "" "veranlasst, dass eine Version installiert wird, auch wenn diese nicht vom " -"Ziel-Release kommt, au??er wenn die installierte Version aktueller ist" +"Ziel-Release kommt, außer wenn die installierte Version aktueller ist" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:239 @@ -7983,8 +8146,8 @@ msgid "" "causes a version to be installed unless there is a version available " "belonging to the target release or the installed version is more recent" msgstr "" -"veranlasst, dass eine Version installiert wird, au??er wenn eine Version " -"verf??gbar ist, die zum Ziel-Release geh??rt oder die installierte Version " +"veranlasst, dass eine Version installiert wird, außer wenn eine Version " +"verfügbar ist, die zum Ziel-Release gehört oder die installierte Version " "neuer ist" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> @@ -7998,8 +8161,8 @@ msgid "" "causes a version to be installed unless there is a version available " "belonging to some other distribution or the installed version is more recent" msgstr "" -"veranlasst, dass eine Version installiert wird, au??er wenn eine Version " -"verf??gbar ist, die zu einer anderen Distribution geh??rt oder die " +"veranlasst, dass eine Version installiert wird, außer wenn eine Version " +"verfügbar ist, die zu einer anderen Distribution gehört oder die " "installierte Version neuer ist" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> @@ -8033,7 +8196,7 @@ msgid "" "negative integers. They are interpreted as follows (roughly speaking): " "<placeholder type=\"variablelist\" id=\"0\"/>" msgstr "" -"Die in der APT-Einstellungsdatei zugewiesenen Priorit??ten (P) m??ssen " +"Die in der APT-Einstellungsdatei zugewiesenen Prioritäten (P) müssen " "positive oder negative Ganzzahlen sein. Sie werden wie folgt interpretiert " "(grob gesagt): <placeholder type=\"variablelist\" id=\"0\"/>" @@ -8045,11 +8208,11 @@ msgid "" "that, if any general-form records match an available package version then " "the first such record determines the priority of the package version." msgstr "" -"Wenn irgendwelche Datens??tze mit speziellem Format zu einer verf??gbaren " -"Paketversion passen, dann legt der erste dieser Datens??tze die Priorit??t " -"der Paketversion fest. Schl??gt dies fehl und es passen irgendwelche Datens??" -"tze mit allgemeinem Format zu einer verf??gbaren Paketversion, dann legt der " -"erste dieser Datens??tze die Priorit??t der Paketversion fest." +"Wenn irgendwelche Datensätze mit speziellem Format zu einer verfügbaren " +"Paketversion passen, dann legt der erste dieser Datensätze die Priorität " +"der Paketversion fest. Schlägt dies fehl und es passen irgendwelche " +"Datensätze mit allgemeinem Format zu einer verfügbaren Paketversion, dann " +"legt der erste dieser Datensätze die Priorität der Paketversion fest." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:268 @@ -8057,8 +8220,8 @@ msgid "" "For example, suppose the APT preferences file contains the three records " "presented earlier:" msgstr "" -"Nehmen wir zum Beispiel an, die APT-Einstellungsdatei enth??lt die drei " -"bereits gezeigten Datens??tze:" +"Nehmen wir zum Beispiel an, die APT-Einstellungsdatei enthält die drei " +"bereits gezeigten Datensätze:" #. type: Content of: <refentry><refsect1><refsect2><programlisting> #: apt_preferences.5.xml:272 @@ -8102,11 +8265,12 @@ msgid "" "<literal>perl</literal> is available and the installed version is 5.9*, then " "<literal>perl</literal> will be downgraded." msgstr "" -"Es wird die aktuellste verf??gbare Version des Pakets <literal>perl</" -"literal> installiert, so lange die Versionsnummer mit ??<literal>5.8</" -"literal>?? anf??ngt. Wenn <emphasis>irgendeine</emphasis> 5.8*-Version von " -"<literal>perl</literal>verf??gbar ist und die installierte Version 5.9* ist, " -"dann wird von <literal>perl</literal> ein Downgrade durchgef??hrt." +"Es wird die aktuellste verfügbare Version des Pakets " +"<literal>perl</literal> installiert, so lange die Versionsnummer mit " +"»<literal>5.8</literal>« anfängt. Wenn <emphasis>irgendeine</emphasis> " +"5.8*-Version von <literal>perl</literal>verfügbar ist und die installierte " +"Version 5.9* ist, dann wird von <literal>perl</literal> ein Downgrade " +"durchgeführt." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:292 @@ -8115,22 +8279,22 @@ msgid "" "available from the local system has priority over other versions, even " "versions belonging to the target release." msgstr "" -"Eine Version irgendeines anderen Pakets als <literal>perl</literal>, die vom " -"lokalen System verf??gbar ist, hat eine Priorit??t ??ber anderen Versionen, " -"sogar wenn diese Versionen zum Ziel-Release geh??ren." +"Eine Version irgendeines anderen Pakets als <literal>perl</literal>, die " +"vom lokalen System verfügbar ist, hat eine Priorität über anderen " +"Versionen, sogar wenn diese Versionen zum Ziel-Release gehören." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:296 msgid "" "A version of a package whose origin is not the local system but some other " -"site listed in &sources-list; and which belongs to an <literal>unstable</" -"literal> distribution is only installed if it is selected for installation " -"and no version of the package is already installed." -msgstr "" -"Eine Version eines Pakets, dessen Ursprung nicht das lokale System ist, aber " -"ein anderer in &sources-list; aufgelisteter Ort und der zu einer " -"<literal>unstable</literal>-Distribution geh??rt. wird nur installiert, " -"falls es zur Installation ausgew??hlt wurde und nicht bereits eine Version " +"site listed in &sources-list; and which belongs to an " +"<literal>unstable</literal> distribution is only installed if it is selected " +"for installation and no version of the package is already installed." +msgstr "" +"Eine Version eines Pakets, dessen Ursprung nicht das lokale System ist, " +"aber ein anderer in &sources-list; aufgelisteter Ort und der zu einer " +"<literal>unstable</literal>-Distribution gehört. wird nur installiert, " +"falls es zur Installation ausgewählt wurde und nicht bereits eine Version " "des Pakets installiert ist." #. type: Content of: <refentry><refsect1><refsect2><title> @@ -8147,7 +8311,7 @@ msgid "" msgstr "" "Die in der &sources-list;-Datei aufgelisteten Orte sollten " "<filename>Packages</filename>- und <filename>Release</filename>-Dateien " -"bereitstellen, um die an diesem Ort verf??gbaren Pakete zu beschreiben." +"bereitstellen, um die an diesem Ort verfügbaren Pakete zu beschreiben." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:320 @@ -8167,28 +8331,28 @@ msgstr "die <literal>Version:</literal>-Zeile" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:325 msgid "gives the version number for the named package" -msgstr "gibt die Versionsnummer f??r das genannte Paket an" +msgstr "gibt die Versionsnummer für das genannte Paket an" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:312 msgid "" "The <filename>Packages</filename> file is normally found in the directory " -"<filename>.../dists/<replaceable>dist-name</replaceable>/" -"<replaceable>component</replaceable>/<replaceable>arch</replaceable></" -"filename>: for example, <filename>.../dists/stable/main/binary-i386/" -"Packages</filename>. It consists of a series of multi-line records, one for " -"each package available in that directory. Only two lines in each record are " -"relevant for setting APT priorities: <placeholder type=\"variablelist\" id=" -"\"0\"/>" +"<filename>.../dists/<replaceable>dist-name</replaceable>/<replaceable>component</replaceable>/<replaceable>arch</replaceable></filename>: " +"for example, " +"<filename>.../dists/stable/main/binary-i386/Packages</filename>. It " +"consists of a series of multi-line records, one for each package available " +"in that directory. Only two lines in each record are relevant for setting " +"APT priorities: <placeholder type=\"variablelist\" id=\"0\"/>" msgstr "" "Die <filename>Packages</filename>-Datei wird normalerweise im Verzeichnis " -"<filename>.../dists/<replaceable>Distributions-Name</replaceable>/" -"<replaceable>Komponente</replaceable>/<replaceable>Architektur</" -"replaceable></filename> gefunden, zum Beispiel <filename>.../dists/stable/" -"main/binary-i386/Packages</filename>. Sie besteht aus einer Serie " -"mehrzeiliger Datens??tze, einem f??r jedes verf??gbare Paket in diesem " -"Verzeichnis. In jedem Datensatz sind nur zwei Zeilen zum Setzen der APT-" -"Priorit??ten relevant: <placeholder type=\"variablelist\" id=\"0\"/>" +"<filename>.../dists/<replaceable>Distributions-Name" +"</replaceable>/<replaceable>Komponente</replaceable>/<replaceable>" +"Architektur</replaceable></filename> gefunden, zum Beispiel " +"<filename>.../dists/stable/main/binary-i386/Packages</filename>. Sie " +"besteht aus einer Serie mehrzeiliger Datensätze, einem für jedes verfügbare " +"Paket in diesem Verzeichnis. In jedem Datensatz sind nur zwei Zeilen zum " +"Setzen der APT-Prioritäten relevant: " +"<placeholder type=\"variablelist\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:341 @@ -8205,12 +8369,12 @@ msgid "" "archive. Specifying this value in the APT preferences file would require " "the line:" msgstr "" -"benennt das Archiv, zu dem alle Pakete im Verzeichnisbaum geh??ren. Die " -"Zeile ??Archive: stable?? oder ??Suite: stable?? gibt zum Beispiel an, dass " -"alle Pakete im Verzeichnisbaum unterhalb des der <filename>Release</" -"filename>-Datei ??bergeordneten Verzeichnisses sich in einem " -"<literal>stable</literal>-Archiv befinden. Diesen Wert in der APT-" -"Einstellungsdatei anzugeben w??rde die folgende Zeile ben??tigen:" +"benennt das Archiv, zu dem alle Pakete im Verzeichnisbaum gehören. Die " +"Zeile »Archive: stable« oder »Suite: stable« gibt zum Beispiel an, dass " +"alle Pakete im Verzeichnisbaum unterhalb des der " +"<filename>Release</filename>-Datei übergeordneten Verzeichnisses sich in " +"einem <literal>stable</literal>-Archiv befinden. 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:352 @@ -8228,16 +8392,17 @@ msgstr "die <literal>Codename:</literal>-Zeile" 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:" -msgstr "" -"benennt den Codenamen, zu dem alle Pakete im Verzeichnisbaum geh??ren. Die " -"Zeile ??Codename: squeeze?? 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:" +"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:" +msgstr "" +"benennt den Codenamen, zu dem alle Pakete im Verzeichnisbaum gehören. Die " +"Zeile »Codename: squeeze« 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:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #: apt_preferences.5.xml:368 @@ -8250,16 +8415,17 @@ msgstr "Pin: release n=squeeze\n" msgid "" "names the release version. For example, the packages in the tree might " "belong to Debian GNU/Linux release version 3.0. Note that there is normally " -"no version number for the <literal>testing</literal> and <literal>unstable</" -"literal> distributions because they have not been released yet. Specifying " -"this in the APT preferences file would require one of the following lines." -msgstr "" -"benennt die Release-Version. Die Pakete im Baum k??nnten zum Beispiel zur " -"Debian GNU/Linux-Release-Version 3.0 geh??ren. Beachten Sie, dass es " -"normalerweise keine Versionsnummer f??r <literal>testing</literal>- und " -"<literal>unstable</literal>-Distributionen gibt, weil sie noch nicht ver??" -"ffentlicht wurden. Diese in der APT-Einstellungsdatei anzugeben w??rde eine " -"der folgenden Zeilen ben??tigen:" +"no version number for the <literal>testing</literal> and " +"<literal>unstable</literal> distributions because they have not been " +"released yet. Specifying this in the APT preferences file would require one " +"of the following lines." +msgstr "" +"benennt die Release-Version. Die Pakete im Baum könnten zum Beispiel zur " +"Debian GNU/Linux-Release-Version 3.0 gehören. Beachten Sie, dass es " +"normalerweise keine Versionsnummer für <literal>testing</literal>- und " +"<literal>unstable</literal>-Distributionen gibt, weil sie noch nicht " +"veröffentlicht wurden. Diese in der APT-Einstellungsdatei anzugeben würde " +"eine der folgenden Zeilen benötigen:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #: apt_preferences.5.xml:384 @@ -8286,15 +8452,16 @@ msgid "" "\"Component: main\" specifies that all the packages in the directory tree " "are from the <literal>main</literal> component, which entails that they are " "licensed under terms listed in the Debian Free Software Guidelines. " -"Specifying this component in the APT preferences file would require the line:" +"Specifying this component in the APT preferences file would require the " +"line:" msgstr "" "benennt die Lizenzierungskomponente, die mit den Paketen im Verzeichnisbaum " -"der <filename>Release</filename>-Datei verbunden ist. Die Zeile ??Component: " -"main?? gibt zum Beispiel an, dass alle Pakete im Verzeichnisbaum von der " -"<literal>main</literal>-Komponente stammen, was zur Folge hat, dass sie " -"unter den Bedingungen der Debian-Richtlinien f??r Freie Software stehen. " -"Diese Komponente in der APT-Einstellungsdatei anzugeben w??rde die folgende " -"Zeilen ben??tigen:" +"der <filename>Release</filename>-Datei verbunden ist. Die Zeile " +"»Component: main« gibt zum Beispiel an, dass alle Pakete im Verzeichnisbaum " +"von der <literal>main</literal>-Komponente stammen, was zur Folge hat, dass " +"sie unter den Bedingungen der Debian-Richtlinien für Freie Software stehen. " +"Diese Komponente in der APT-Einstellungsdatei anzugeben würde die folgende " +"Zeilen benötigen:" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><programlisting> #: apt_preferences.5.xml:403 @@ -8311,13 +8478,14 @@ msgstr "die <literal>Origin:</literal>-Zeile" #: apt_preferences.5.xml:410 msgid "" "names the originator of the packages in the directory tree of the " -"<filename>Release</filename> file. Most commonly, this is <literal>Debian</" -"literal>. Specifying this origin in the APT preferences file would require " -"the line:" +"<filename>Release</filename> file. Most commonly, this is " +"<literal>Debian</literal>. Specifying this origin in the APT preferences " +"file would require the line:" msgstr "" -"benennt den Urheber des Pakets im Verzeichnisbaum der <filename>Release</" -"filename>-Datei. Zumeist ist dies <literal>Debian</literal>. Diesen Ursprung " -"in der APT-Einstellungsdatei anzugeben w??rde die folgende Zeile ben??tigen:" +"benennt den Urheber des Pakets im Verzeichnisbaum der " +"<filename>Release</filename>-Datei. Zumeist ist dies " +"<literal>Debian</literal>. Diesen Ursprung 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:416 @@ -8334,14 +8502,14 @@ msgstr "die <literal>Label:</literal>-Zeile" #: apt_preferences.5.xml:423 msgid "" "names the label of the packages in the directory tree of the " -"<filename>Release</filename> file. Most commonly, this is <literal>Debian</" -"literal>. Specifying this label in the APT preferences file would require " -"the line:" +"<filename>Release</filename> file. Most commonly, this is " +"<literal>Debian</literal>. Specifying this label in the APT preferences " +"file would require the line:" msgstr "" "benennt die Beschriftung des Pakets im Verzeichnisbaum der " -"<filename>Release</filename>-Datei. Zumeist ist dies <literal>Debian</" -"literal>. Diese Beschriftung in der APT-Einstellungsdatei anzugeben w??rde " -"die folgende Zeile ben??tigen:" +"<filename>Release</filename>-Datei. Zumeist ist dies " +"<literal>Debian</literal>. Diese Beschriftung 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:429 @@ -8354,22 +8522,23 @@ msgstr "Pin: release l=Debian\n" 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\"/>" +"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\"/>" 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>. Es besteht aus einem einzelnen " -"mehrzeiligen Datensatz, der auf <emphasis>alle</emphasis> Pakete im " -"Verzeichnisbaum unterhalb des ??bergeordneten Verzeichnisses zutrifft. " +"<filename>.../dists/woody/Release</filename>. Es 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\"/>" +"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:436 @@ -8378,24 +8547,25 @@ msgid "" "files retrieved from locations listed in the &sources-list; file are stored " "in the directory <filename>/var/lib/apt/lists</filename>, or in the file " "named by the variable <literal>Dir::State::Lists</literal> in the " -"<filename>apt.conf</filename> file. For example, the file <filename>debian." -"lcs.mit.edu_debian_dists_unstable_contrib_binary-i386_Release</filename> " +"<filename>apt.conf</filename> file. For example, the file " +"<filename>debian.lcs.mit.edu_debian_dists_unstable_contrib_binary-i386_Release</filename> " "contains the <filename>Release</filename> file retrieved from the site " "<literal>debian.lcs.mit.edu</literal> for <literal>binary-i386</literal> " "architecture files from the <literal>contrib</literal> component of the " "<literal>unstable</literal> distribution." msgstr "" -"Alle <filename>Packages</filename>- und <filename>Release</filename>-" -"Dateien, die von Orten heruntergeladen werden, die in der Datei &sources-" -"list; aufgelistet sind, werden im Verzeichnis <filename>/var/lib/apt/lists</" -"filename> oder in der von der Variablen <literal>Dir::State::Lists</literal> " -"in der Datei <filename>apt.conf</filename> benannten Datei gespeichert. Die " -"Datei <filename>debian.lcs.mit.edu_debian_dists_unstable_contrib_binary-" -"i386_Release</filename> enth??lt zum Beispiel die <filename>Release</" -"filename>-Datei, die von der Site <literal>debian.lcs.mit.edu</literal> f??r " -"die <literal>binary-i386</literal>-Architekturdateien von der " -"<literal>contrib</literal>-Komponente der <literal>unstable</literal>-" -"Distribution heruntergeladen wurde." +"Alle <filename>Packages</filename>- und " +"<filename>Release</filename>-Dateien, die von Orten heruntergeladen " +"werden, die in der Datei &sources-list; aufgelistet sind, werden im " +"Verzeichnis <filename>/var/lib/apt/lists</filename> oder in der von der " +"Variablen <literal>Dir::State::Lists</literal> in der Datei " +"<filename>apt.conf</filename> benannten Datei gespeichert. Die Datei " +"<filename>debian.lcs.mit.edu_debian_dists_unstable_contrib_binary-i386_Release</filename> " +"enthält zum Beispiel die <filename>Release</filename>-Datei, die von der " +"Site <literal>debian.lcs.mit.edu</literal> für die " +"<literal>binary-i386</literal>-Architekturdateien von der " +"<literal>contrib</literal>-Komponente der " +"<literal>unstable</literal>-Distribution heruntergeladen wurde." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:449 @@ -8411,21 +8581,21 @@ msgid "" msgstr "" "Optional kann jeder Datensatz im der APT-Einstellungsdatei mit einer oder " "mehreren Zeilen beginnen, die mit dem Wort <literal>Explanation:</literal> " -"anfangen. Dieses stellt einen Platz f??r Kommentare bereit." +"anfangen. Dieses stellt einen Platz für Kommentare bereit." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:455 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>." +"specified on a line beginning with <literal>Pin-Priority: release " +"...</literal>." msgstr "" -"Die <literal>Pin-Priority:</literal>-Zeile in jedem APT-" -"Einstellungsdatensatz ist optional. Wenn diese weggelassen wird, weist APT " -"ein Priorit??t zu, die um 1 kleiner ist, als der letzte Wert, der in einer " -"Zeile angegeben wurde, die mit <literal>Pin-Priority: release ...</literal> " -"anf??ngt." +"Die <literal>Pin-Priority:</literal>-Zeile in jedem " +"APT-Einstellungsdatensatz ist optional. Wenn diese weggelassen wird, weist " +"APT ein Priorität zu, die um 1 kleiner ist, als der letzte Wert, der in " +"einer Zeile angegeben wurde, die mit <literal>Pin-Priority: release " +"...</literal> anfängt." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:464 @@ -8466,14 +8636,14 @@ msgid "" "distributions. <placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" "Die folgende APT-Einstellungsdatei wird APT veranlassen, allen " -"Paketversionen eine h??here Priorit??t als die Vorgabe (500) zu geben, die " -"zu einer <literal>stable</literal>-Distribution geh??ren und eine ungeheuer " -"niedrige Priorit??t Paketversionen, die zu anderen <literal>Debian</literal>-" -"Distribution geh??ren. <placeholder type=\"programlisting\" id=\"0\"/>" +"Paketversionen eine höhere Priorität als die Vorgabe (500) zu geben, die " +"zu einer <literal>stable</literal>-Distribution gehören und eine " +"ungeheuer niedrige Priorität Paketversionen, die zu anderen " +"<literal>Debian</literal>-Distribution gehören. <placeholder " +"type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:489 apt_preferences.5.xml:535 -#: apt_preferences.5.xml:593 +#: apt_preferences.5.xml:489 apt_preferences.5.xml:535 apt_preferences.5.xml:593 #, no-wrap msgid "" "apt-get install <replaceable>package-name</replaceable>\n" @@ -8493,9 +8663,9 @@ msgid "" "id=\"0\"/>" msgstr "" "Mit einer geeigneten &sources-list;-Datei und der obigen Einstellungsdatei " -"wird jeder der folgenden Befehle APT veranlassen, ein Upgrade auf die neuste" -"(n) <literal>stable</literal>-Version(en) durchzuf??hren. <placeholder type=" -"\"programlisting\" id=\"0\"/>" +"wird jeder der folgenden Befehle APT veranlassen, ein Upgrade auf die " +"neuste(n) <literal>stable</literal>-Version(en) durchzuführen. " +"<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:501 @@ -8511,11 +8681,11 @@ msgid "" "will not be upgraded again unless this command is given again. <placeholder " "type=\"programlisting\" id=\"0\"/>" msgstr "" -"Der folgende Befehl wird APT veranlassen, ein Upgrade des angegebenen Pakets " -"auf die neuste Version der <literal>testing</literal>-Distribution durchzuf??" -"hren. Von dem Paket wird kein weiteres Upgrade durchgef??hrt, au??er wenn " -"dieser Befehl wieder angegeben wird. <placeholder type=\"programlisting\" id=" -"\"0\"/>" +"Der folgende Befehl wird APT veranlassen, ein Upgrade des angegebenen " +"Pakets auf die neuste Version der <literal>testing</literal>-Distribution " +"durchzuführen. Von dem Paket wird kein weiteres Upgrade durchgeführt, außer " +"wenn dieser Befehl wieder angegeben wird. <placeholder " +"type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:507 @@ -8557,15 +8727,15 @@ msgid "" "to package versions from the <literal>testing</literal> distribution, a " "lower priority to package versions from the <literal>unstable</literal> " "distribution, and a prohibitively low priority to package versions from " -"other <literal>Debian</literal> distributions. <placeholder type=" -"\"programlisting\" id=\"0\"/>" +"other <literal>Debian</literal> distributions. <placeholder " +"type=\"programlisting\" id=\"0\"/>" msgstr "" -"Die folgende APT-Einstellungsdatei wird APT veranlassen, Paketversionen der " -"<literal>testing</literal>-Distribution eine hohe Priorit??t, Paketversionen " -"der <literal>unstable</literal>-Distribution eine niedrigere Priorit??t und " -"eine ungeheuer niedrige Priorit??t zu Paketversionen von anderen " -"<literal>Debian</literal>-Distributionen zuzuweisen. <placeholder type=" -"\"programlisting\" id=\"0\"/>" +"Die folgende APT-Einstellungsdatei wird APT veranlassen, Paketversionen " +"der <literal>testing</literal>-Distribution eine hohe Priorität, " +"Paketversionen der <literal>unstable</literal>-Distribution eine niedrigere " +"Priorität und eine ungeheuer niedrige Priorität zu Paketversionen von anderen " +"<literal>Debian</literal>-Distributionen zuzuweisen. <placeholder " +"type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:530 @@ -8576,9 +8746,9 @@ msgid "" "id=\"0\"/>" msgstr "" "Mit einer geeigneten &sources-list;-Datei und der obigen Einstellungsdatei " -"wird jeder der folgenden Befehle APT veranlassen, ein Upgrade auf die neuste" -"(n) <literal>testing</literal>-Version(en) durchzuf??hren. <placeholder type=" -"\"programlisting\" id=\"0\"/>" +"wird jeder der folgenden Befehle APT veranlassen, ein Upgrade auf die " +"neuste(n) <literal>testing</literal>-Version(en) durchzuführen. " +"<placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:550 @@ -8593,18 +8763,18 @@ msgid "" "latest version from the <literal>unstable</literal> distribution. " "Thereafter, <command>apt-get upgrade</command> will upgrade the package to " "the most recent <literal>testing</literal> version if that is more recent " -"than the installed version, otherwise, to the most recent <literal>unstable</" -"literal> version if that is more recent than the installed version. " -"<placeholder type=\"programlisting\" id=\"0\"/>" -msgstr "" -"Der folgende Befehl wird APT veranlassen, ein Upgrade des angegebenen Pakets " -"auf die neuste Version der <literal>unstable</literal>-Distribution " -"durchzuf??hren. Danach wird <command>apt-get upgrade</command> ein Upgrade " -"des Pakets auf die aktuellste <literal>testing</literal>-Version durchf??" -"hren, falls diese aktueller als die installierte Version ist, andernfalls " -"auf die aktuellste <literal>unstable</literal>-Version, wenn diese aktueller " -"als die installierte Version ist. <placeholder type=\"programlisting\" id=" -"\"0\"/>" +"than the installed version, otherwise, to the most recent " +"<literal>unstable</literal> version if that is more recent than the " +"installed version. <placeholder type=\"programlisting\" id=\"0\"/>" +msgstr "" +"Der folgende Befehl wird APT veranlassen, ein Upgrade des angegebenen " +"Pakets auf die neuste Version der <literal>unstable</literal>-Distribution " +"durchzuführen. Danach wird <command>apt-get upgrade</command> ein Upgrade " +"des Pakets auf die aktuellste <literal>testing</literal>-Version " +"durchführen, falls diese aktueller als die installierte Version ist, " +"andernfalls auf die aktuellste <literal>unstable</literal>-Version, wenn " +"diese aktueller als die installierte Version ist. " +" <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:557 @@ -8615,8 +8785,10 @@ msgstr "Die Entwicklung eines Codename-Releases verfolgen" #: apt_preferences.5.xml:571 #, 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" +"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" @@ -8631,7 +8803,8 @@ 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 Squeeze- oder " +"Sid-Distribution\n" "Package: *\n" "Pin: release n=squeeze\n" "Pin-Priority: 900\n" @@ -8660,15 +8833,15 @@ msgid "" "configurations above. <placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" "Die folgende APT-Einstellungsdatei wird APT veranlassen, allen Paketen, die " -"zu einem bestimmten Codenamen einer Distribution geh??ren, eine h??here " -"Priorit??t als die Vorgabe (500) zu geben und Paketversionen, die zu anderen " -"<literal>Debian</literal>-Distributionen, Codenamen und Archiven geh??ren, " -"eine ungeheuer niedrige Priorit??t zu geben. Beachten Sie, dass APT mit " +"zu einem bestimmten Codenamen einer Distribution gehören, eine höhere " +"Priorität als die Vorgabe (500) zu geben und Paketversionen, die zu anderen " +"<literal>Debian</literal>-Distributionen, Codenamen und Archiven gehören, " +"eine ungeheuer niedrige Priorität zu geben. Beachten Sie, dass APT mit " "diesen APT-Einstellungen der Migration eines Releases vom Archiv " -"<literal>testing</literal> zu <literal>stable</literal> und sp??ter zu " +"<literal>testing</literal> zu <literal>stable</literal> und später zu " "<literal>oldstable</literal> folgen wird. Wenn Sie zum Beispiel dem " -"Fortschritt in <literal>testing</literal> folgen m??chten, obwohl der " -"Codename sich ??ndert, sollten Sie die Beispielkonfigurationen oberhalb " +"Fortschritt in <literal>testing</literal> folgen möchten, obwohl der " +"Codename sich ändert, sollten Sie die Beispielkonfigurationen oberhalb " "benutzen. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> @@ -8676,13 +8849,13 @@ msgstr "" 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\"/>" +"the release codenamed with <literal>squeeze</literal>. <placeholder " +"type=\"programlisting\" id=\"0\"/>" 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\"/>" +"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\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:608 @@ -8701,13 +8874,14 @@ msgid "" "version if that is more recent than the installed version. <placeholder " "type=\"programlisting\" id=\"0\"/>" 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 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=\"programlisting\" id=\"0\"/>" +"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 " +"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=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist> #: apt_preferences.5.xml:617 @@ -8727,7 +8901,7 @@ msgstr "sources.list" #. type: Content of: <refentry><refnamediv><refpurpose> #: sources.list.5.xml:30 msgid "Package resource list for APT" -msgstr "Paketressourcenliste f??r APT" +msgstr "Paketressourcenliste für APT" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:34 @@ -8740,8 +8914,8 @@ msgstr "" "Die Paketquellenliste wird benutzt, um Archive des Paketverteilungssystems, " "das auf dem System benutzt wird, zu finden. Momentan dokumentiert diese " "Handbuchseite nur das vom Debian-GNU/Linux-System benutzte " -"Paketierungssystem. Die Steuerungsdatei befindet sich in <filename>/etc/apt/" -"sources.list</filename>." +"Paketierungssystem. Die Steuerungsdatei befindet sich in " +"<filename>/etc/apt/sources.list</filename>." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:39 @@ -8756,12 +8930,12 @@ msgid "" "comment by using a #." msgstr "" "Die Quellenliste wurde entworfen, um eine beliebige Anzahl von aktiven " -"Quellen und eine Vielzahl von Quellmedien zu unterst??tzen. Die Datei listet " +"Quellen und eine Vielzahl von Quellmedien zu unterstützen. Die Datei listet " "eine Quelle pro Zeile auf, wobei die bevorzugten Quellen zuerst aufgelistet " "sind. Das Format jeder Zeile lautet: <literal>Typ URI Argumente</literal>. " -"Das erste Element <literal>Typ</literal> legt das Format f??r " +"Das erste Element <literal>Typ</literal> legt das Format für " "<literal>Argumente</literal> fest. <literal>URI</literal> ist ein " -"universeller Quellenbezeichner ??Universal Resource Identifier?? (URI), der " +"universeller Quellenbezeichner »Universal Resource Identifier« (URI), der " "eine Obermenge des spezielleren und besser bekannten Universal Resource " "Locator (URL) ist. Der Rest der Zeile kann unter Verwendung von # als " "Kommentar markiert werden." @@ -8781,13 +8955,13 @@ msgid "" "digits (0-9), underscore (_), hyphen (-) and period (.) characters. " "Otherwise they will be silently ignored." msgstr "" -"Das Verzeichnis <filename>/etc/apt/sources.list.d</filename> stellt eine M??" -"glichkeit bereit, sources.list-Eintr??ge in separaten Dateien hinzuzuf??gen. " -"Das Format ist das gleiche wie f??r die normale <filename>sources.list</" -"filename>-Datei. Dateinamen m??ssen mit <filename>.list</filename> enden und " -"k??nnen nur Buchstaben (a-z und A-Z), Ziffern (0-9), Unterstriche (_), " -"Bindestriche (-) und Punkte (.) enthalten. Ansonsten werden sie " -"stillschweigend ignoriert." +"Das Verzeichnis <filename>/etc/apt/sources.list.d</filename> stellt eine " +"Möglichkeit bereit, sources.list-Einträge in separaten Dateien " +"hinzuzufügen. Das Format ist das gleiche wie für die normale " +"<filename>sources.list</filename>-Datei. Dateinamen müssen mit " +"<filename>.list</filename> enden und können nur Buchstaben (a-z und A-Z), " +"Ziffern (0-9), Unterstriche (_), Bindestriche (-) und Punkte (.) enthalten. " +"Ansonsten werden sie stillschweigend ignoriert." #. type: Content of: <refentry><refsect1><title> #: sources.list.5.xml:60 @@ -8799,24 +8973,26 @@ msgstr "Die Typen deb und deb-src" 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." -msgstr "" -"Der <literal>deb</literal>-Typ beschreibt ein typisches zweistufiges Debian-" -"Archiv, <filename>Distribution/Komponente</filename>. <literal>Distribution</" -"literal> ist typischerweise entweder <literal>stable</literal>, " -"<literal>unstable</literal> oder <literal>testing</literal>, w??hrend " -"Komponente entweder <literal>main</literal>, <literal>contrib</literal>, " +"<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." +msgstr "" +"Der <literal>deb</literal>-Typ beschreibt ein typisches zweistufiges " +"Debian-Archiv, <filename>Distribution/Komponente</filename>. " +"<literal>Distribution</literal> ist typischerweise entweder " +"<literal>stable</literal>, <literal>unstable</literal> oder " +"<literal>testing</literal>, während Komponente entweder " +"<literal>main</literal>, <literal>contrib</literal>, " "<literal>non-free</literal> oder <literal>non-us</literal> ist. Der " -"<literal>deb-src</literal>-Typ beschreibt einen Quellcode einer Debian-" -"Distribution in der gleichen Form wie den <literal>deb</literal>-Typ. Eine " -"<literal>deb-src</literal>-Zeile wird ben??tigt, um Quellindizes " -"herunterzuladen." +"<literal>deb-src</literal>-Typ beschreibt einen Quellcode einer " +"Debian-Distribution in der gleichen Form wie den " +"<literal>deb</literal>-Typ. Eine <literal>deb-src</literal>-Zeile wird " +"benötigt, um Quellindizes herunterzuladen." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:73 @@ -8824,7 +9000,7 @@ msgid "" "The format for a <filename>sources.list</filename> entry using the " "<literal>deb</literal> and <literal>deb-src</literal> types are:" msgstr "" -"Das Format f??r einen <filename>sources.list</filename>-Eintrag, der die " +"Das Format für einen <filename>sources.list</filename>-Eintrag, der die " "<literal>deb</literal>- und <literal>deb-src</literal>-Typen benutzt, ist:" #. type: Content of: <refentry><refsect1><literallayout> @@ -8841,18 +9017,19 @@ msgid "" "<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." -msgstr "" -"Die URI f??r den <literal>deb</literal>-Typ muss die Basis der Debian-" -"Distribution angeben, wo APT die Informationen findet, die es ben??tigt. " -"<literal>Distribution</literal> kann einen genauen Pfad angeben. In diesem " -"Fall m??ssen die Komponenten weggelassen werden und <literal>Distribution</" -"literal> muss mit einem Schr??gstrich (/) enden. Dies ist n??tzlich, wenn " -"nur ein bestimmter Unterabschnitt des von der URI angegebenen Archivs von " -"Interesse ist. Wenn <literal>Distribution</literal> keinen genauen Pfad " -"angibt, muss mindestens eine <literal>Komponente</literal> angegeben sein." +"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." +msgstr "" +"Die URI für den <literal>deb</literal>-Typ muss die Basis der " +"Debian-Distribution angeben, wo APT die Informationen findet, die es " +"benötigt. <literal>Distribution</literal> kann einen genauen Pfad angeben. " +"In diesem Fall müssen die Komponenten weggelassen werden und " +"<literal>Distribution</literal> muss mit einem Schrägstrich (/) enden. Dies " +"ist nützlich, wenn nur ein bestimmter Unterabschnitt des von der URI " +"angegebenen Archivs von Interesse ist. Wenn <literal>Distribution</literal> " +"keinen genauen Pfad angibt, muss mindestens eine " +"<literal>Komponente</literal> angegeben sein." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:87 @@ -8864,13 +9041,13 @@ msgid "" "of interest when specifying an exact path, <literal>APT</literal> will " "automatically generate a URI with the current architecture otherwise." msgstr "" -"<literal> distribution</literal> k??nnte au??erdem eine Variable, <literal>" -"$(ARCH)</literal>, enthalten, die zur Debian-Architektur (i386, m68k, " -"powerpc, ...) expandiert wird, die auf dem System benutzt wird. Dies erlaubt " -"es, architekturabh??ngige <filename>sources.list</filename>-Dateien zu " -"benutzen. Im Allgemeinen ist dies nur von Interesse, wenn ein genauer Pfad " -"angegeben wird, andernfalls wird <literal>APT</literal> automatisch eine URI " -"mit der aktuellen Architektur generieren." +"<literal> distribution</literal> könnte außerdem eine Variable, " +"<literal>$(ARCH)</literal>, enthalten, die zur Debian-Architektur (i386, " +"m68k, powerpc, ...) expandiert wird, die auf dem System benutzt wird. Dies " +"erlaubt es, architekturabhängige <filename>sources.list</filename>-Dateien " +"zu benutzen. Im Allgemeinen ist dies nur von Interesse, wenn ein genauer " +"Pfad angegeben wird, andernfalls wird <literal>APT</literal> automatisch " +"eine URI mit der aktuellen Architektur generieren." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:95 @@ -8886,18 +9063,18 @@ msgid "" "number of simultaneous anonymous users. APT also parallelizes connections to " "different hosts to more effectively deal with sites with low bandwidth." msgstr "" -"Da pro Zeile nur eine Distribution angegeben werden kann, k??nnte es n??tig " -"sein, mehrere Zeilen f??r die gleiche URI zu haben, falls eine Untermenge " -"aller verf??gbarer Distributionen oder Komponenten von diesem Ort gew??nscht " +"Da pro Zeile nur eine Distribution angegeben werden kann, könnte es nötig " +"sein, mehrere Zeilen für die gleiche URI zu haben, falls eine Untermenge " +"aller verfügbarer Distributionen oder Komponenten von diesem Ort gewünscht " "wird. APT wird die URI-Liste sortieren, nachdem es intern eine komplette " -"Zusammenstellung generiert hat und es wird mehrere Bez??ge zum gleichen " +"Zusammenstellung generiert hat und es wird mehrere Bezüge zum gleichen " "Internet-Host zusammenfassen, zum Beispiel zu einer einzigen Verbindung, so " -"dass es nicht ineffizient FTP-Verbindungen herstellt, sie schlie??t, sonst " -"etwas tut und dann erneut eine Verbindung zum gleichen Host herstellt. Diese " -"Funktion ist n??tzlich f??r den Zugriff auf ausgelastete FTP-Sites mit " -"Begrenzungen der Anzahl gleichzeitiger anonymer Anwender. APT parallelisiert " -"au??erdem Verbindungen zu verschiedenen Hosts, um effektiver mit Orten " -"niedriger Bandbreite hauszuhalten." +"dass es nicht ineffizient FTP-Verbindungen herstellt, sie schließt, sonst " +"etwas tut und dann erneut eine Verbindung zum gleichen Host herstellt. " +"Diese Funktion ist nützlich für den Zugriff auf ausgelastete FTP-Sites " +"mit Begrenzungen der Anzahl gleichzeitiger anonymer Anwender. APT " +"parallelisiert außerdem Verbindungen zu verschiedenen Hosts, um effektiver " +"mit Orten niedriger Bandbreite hauszuhalten." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:107 @@ -8908,10 +9085,10 @@ msgid "" "followed by distant Internet hosts, for example)." msgstr "" "Es ist wichtig, die Quellen in der Reihenfolge ihrer Wichtigkeit " -"aufzulisten, die bevorzugte Quelle zuerst. Typischerweise resultiert dies in " -"einer Sortierung nach Geschwindigkeit, vom schnellsten zum langsamsten (CD-" -"ROM, gefolgt von Rechnern im lokalen Netzwerk, gefolgt von Internet-" -"Rechnern, zum Beispiel)." +"aufzulisten, die bevorzugte Quelle zuerst. Typischerweise resultiert dies " +"in einer Sortierung nach Geschwindigkeit, vom schnellsten zum langsamsten " +"(CD-ROM, gefolgt von Rechnern im lokalen Netzwerk, gefolgt von " +"Internet-Rechnern, zum Beispiel)." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:112 @@ -8948,56 +9125,57 @@ msgid "" "archives." msgstr "" "Das file-Schema erlaubt es einem beliebigen Verzeichnis im Dateisystem, als " -"Archiv betrachtet zu werden. Dies ist n??tzlich f??r eingeh??ngtes NFS und " +"Archiv betrachtet zu werden. Dies ist nützlich für eingehängtes NFS und " "lokale Spiegel oder Archive." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:134 msgid "" -"The cdrom scheme allows APT to use a local CDROM drive with media swapping. " -"Use the &apt-cdrom; program to create cdrom entries in the source list." +"The cdrom scheme allows APT to use a local CDROM drive with media " +"swapping. Use the &apt-cdrom; program to create cdrom entries in the source " +"list." msgstr "" "Das cdrom-Schema erlaubt APT ein lokales CD-ROM-Laufwerk mit Medienwechsel " -"zu benutzen. Benutzen Sie das Programm &apt-cdrom;, um CD-ROM-Eintr??ge in " +"zu benutzen. Benutzen Sie das Programm &apt-cdrom;, um CD-ROM-Einträge in " "der Quellenliste zu erstellen." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:141 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." -msgstr "" -"Das http-Schema gibt einen HTTP-Server f??r das Archiv an. Wenn eine " -"Umgebungsvariable <envar>http_proxy</envar> mit dem Format http://Server:" -"Port/ gesetzt ist, wird der in <envar>http_proxy</envar> angegebene Proxy-" -"Server benutzt. Anwender eines HTTP/1.1-authentifizierten Proxys k??nnen " -"eine Zeichenkette mit dem Format http://Anwender:Passwort@Server:Port/ " -"benutzt. Beachten Sie, dass dies eine unsichere Authentifizierungsmethode " -"ist." +"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." +msgstr "" +"Das http-Schema gibt einen HTTP-Server für das Archiv an. Wenn eine " +"Umgebungsvariable <envar>http_proxy</envar> mit dem Format " +"http://Server:Port/ gesetzt ist, wird der in <envar>http_proxy</envar> " +"angegebene Proxy-Server benutzt. Anwender eines HTTP/1.1-authentifizierten " +"Proxys können eine Zeichenkette mit dem Format " +"http://Anwender:Passwort@Server:Port/ benutzt. Beachten Sie, dass dies eine " +"unsichere Authentifizierungsmethode ist." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:152 msgid "" "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior " -"is highly configurable; for more information see the &apt-conf; manual page. " -"Please note that a ftp proxy can be specified by using the <envar>ftp_proxy</" -"envar> environment variable. It is possible to specify a http proxy (http " -"proxy servers often understand ftp urls) using this method and ONLY this " -"method. ftp proxies using http specified in the configuration file will be " -"ignored." -msgstr "" -"Das ftp-Schema gibt einen FTP-Server f??r das Archiv an. Das FTP-Verhalten " -"von APT ist in hohem Ma??e konfigurierbar. Um weitere Informationen zu " +"is highly configurable; for more information see the &apt-conf; manual " +"page. Please note that a ftp proxy can be specified by using the " +"<envar>ftp_proxy</envar> environment variable. It is possible to specify a " +"http proxy (http proxy servers often understand ftp urls) using this method " +"and ONLY this method. ftp proxies using http specified in the configuration " +"file will be ignored." +msgstr "" +"Das ftp-Schema gibt einen FTP-Server für das Archiv an. Das FTP-Verhalten " +"von APT ist in hohem Maße konfigurierbar. Um weitere Informationen zu " "erhalten, lesen Sie die &apt-conf;-Handbuchseite. Bitte beachten Sie, dass " -"ein FTP-Proxy durch Benutzung der <envar>ftp_proxy</envar>-" -"Umgebungsvariablen angegeben werden kann. Es ist mit dieser Methode und NUR " -"dieser Methode m??glich, einen HTTP-Proxy anzugeben (HTTP-Proxy-Server " -"verstehen oft auch FTP-URLs). FTP-Proxys, die gem???? Angabe in der " -"Konfigurationsdatei HTTP benutzen, werden ignoriert." +"ein FTP-Proxy durch Benutzung der " +"<envar>ftp_proxy</envar>-Umgebungsvariablen angegeben werden kann. Es ist " +"mit dieser Methode und NUR dieser Methode möglich, einen HTTP-Proxy " +"anzugeben (HTTP-Proxy-Server verstehen oft auch FTP-URLs). FTP-Proxys, die " +"gemäß Angabe in der Konfigurationsdatei HTTP benutzen, werden ignoriert." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: sources.list.5.xml:161 @@ -9011,10 +9189,10 @@ msgid "" "copied into the cache directory instead of used directly at their location. " "This is useful for people using a zip disk to copy files around with APT." msgstr "" -"Das copy-Schema ist identisch mit dem file-Schema, au??er dass Pakete in das " +"Das copy-Schema ist identisch mit dem file-Schema, außer dass Pakete in das " "Zwischenspeicherverzeichnis kopiert werden, anstatt direkt von ihrem " -"Herkunftsort benutzt zu werden. Dies ist f??r Leute n??tzlich, die eine ZIP-" -"Platte benutzen, um Dateien mit APT umherzukopieren." +"Herkunftsort benutzt zu werden. Dies ist für Leute nützlich, die eine " +"ZIP-Platte benutzen, um Dateien mit APT umherzukopieren." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: sources.list.5.xml:168 @@ -9037,10 +9215,10 @@ msgid "" msgstr "" "Die rsh/ssh-Methode ruft rsh/ssh auf, um sich als angegebener Benutzer mit " "einem Rechner in der Ferne zu verbinden und auf die Dateien zuzugreifen. Es " -"ist eine gute Idee, vorher Vorbereitungen mit RSA-Schl??sseln oder rhosts zu " +"ist eine gute Idee, vorher Vorbereitungen mit RSA-Schlüsseln oder rhosts zu " "treffen. Der Zugriff auf Dateien in der Ferne benutzt die Standardbefehle " -"<command>find</command> und <command>dd</command>, um die Daten??bertragung " -"aus der Ferne durchzuf??hren." +"<command>find</command> und <command>dd</command>, um die Datenübertragung " +"aus der Ferne durchzuführen." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:122 @@ -9048,8 +9226,8 @@ msgid "" "The currently recognized URI types are cdrom, file, http, ftp, copy, ssh, " "rsh. <placeholder type=\"variablelist\" id=\"0\"/>" msgstr "" -"Die aktuell erkannten URI-Typen sind cdrom, file, http, ftp, copy, ssh, rsh. " -"<placeholder type=\"variablelist\" id=\"0\"/>" +"Die aktuell erkannten URI-Typen sind cdrom, file, http, ftp, copy, ssh, " +"rsh. <placeholder type=\"variablelist\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:182 @@ -9057,8 +9235,8 @@ msgid "" "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for " "stable/main, stable/contrib, and stable/non-free." msgstr "" -"Benutzt die lokal gespeicherten (oder per NFS eingeh??ngten) Archive in /" -"home/jason/debian f??r stable/main, stable/contrib und stable/non-free." +"Benutzt die lokal gespeicherten (oder per NFS eingehängten) Archive in " +"/home/jason/debian für stable/main, stable/contrib und stable/non-free." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:184 @@ -9070,7 +9248,7 @@ msgstr "deb file:/home/jason/debian stable main contrib non-free" #: sources.list.5.xml:186 msgid "As above, except this uses the unstable (development) distribution." msgstr "" -"Wie oben, au??er das dies die unstable- (Entwicklungs-) Distribution benutzt." +"Wie oben, außer das dies die unstable- (Entwicklungs-) Distribution benutzt." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:187 @@ -9081,7 +9259,7 @@ msgstr "deb file:/home/jason/debian unstable main contrib non-free" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:189 msgid "Source line for the above" -msgstr "Quellzeile f??r obiges" +msgstr "Quellzeile für obiges" #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:190 @@ -9110,8 +9288,9 @@ msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the stable/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." +"Benutzt FTP, um auf das Archiv auf archive.debian.org unter dem " +"debian-Verzeichnis zuzugreifen und nur den stable/contrib-Bereich zu " +"benutzen." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:198 @@ -9124,14 +9303,15 @@ msgstr "deb ftp://ftp.debian.org/debian stable contrib" 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." +"well as the one in the previous example in " +"<filename>sources.list</filename>. a single FTP session will be used for " +"both resource lines." msgstr "" -"Benutzt FTP, um auf das Archiv auf ftp.debian.org unter dem debian-" -"Verzeichnis zuzugreifen und nur den unstable/contrib-Bereich zu benutzen. " -"Falls diese Zeile zusammen mit der aus dem vorherigen Beispiel in der Datei " -"<filename>sources.list</filename> auftaucht, wird eine einzelne FTP-Sitzung " -"f??r beide Quellzeilen benutzt." +"Benutzt FTP, um auf das Archiv auf ftp.debian.org unter dem " +"debian-Verzeichnis zuzugreifen und nur den unstable/contrib-Bereich zu " +"benutzen. Falls diese Zeile zusammen mit der aus dem vorherigen Beispiel in " +"der Datei <filename>sources.list</filename> auftaucht, wird eine einzelne " +"FTP-Sitzung für beide Quellzeilen benutzt." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:204 @@ -9145,14 +9325,18 @@ msgid "" "Uses HTTP to access the archive at nonus.debian.org, under the debian-non-US " "directory." msgstr "" -"Benutzt HTTP, um auf das Archiv auf nonus.debian.org unter dem debian-non-US-" -"Verzeichnis zuzugreifen." +"Benutzt HTTP, um auf das Archiv auf nonus.debian.org unter dem " +"debian-non-US-Verzeichnis zuzugreifen." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:208 #, no-wrap -msgid "deb http://nonus.debian.org/debian-non-US stable/non-US main contrib non-free" -msgstr "deb http://nonus.debian.org/debian-non-US stable/non-US main contrib non-free" +msgid "" +"deb http://nonus.debian.org/debian-non-US stable/non-US main contrib " +"non-free" +msgstr "" +"deb http://nonus.debian.org/debian-non-US stable/non-US main contrib " +"non-free" #. type: Content of: <refentry><refsect1><para><literallayout> #: sources.list.5.xml:217 @@ -9164,20 +9348,21 @@ msgstr "deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/" #: sources.list.5.xml:210 msgid "" "Uses HTTP to access the archive at nonus.debian.org, under the debian-non-US " -"directory, and uses only files found under <filename>unstable/binary-i386</" -"filename> on i386 machines, <filename>unstable/binary-m68k</filename> on " -"m68k, and so forth for other supported architectures. [Note this example " -"only illustrates how to use the substitution variable; non-us is no longer " -"structured like this] <placeholder type=\"literallayout\" id=\"0\"/>" -msgstr "" -"Benutzt HTTP, um auf das Archiv auf nonus.debian.org unter dem debian-non-US-" -"Verzeichnis zuzugreifen und benutzt nur Dateien, die unter " +"directory, and uses only files found under " +"<filename>unstable/binary-i386</filename> on i386 machines, " +"<filename>unstable/binary-m68k</filename> on m68k, and so forth for other " +"supported architectures. [Note this example only illustrates how to use the " +"substitution variable; non-us is no longer structured like this] " +"<placeholder type=\"literallayout\" id=\"0\"/>" +msgstr "" +"Benutzt HTTP, um auf das Archiv auf nonus.debian.org unter dem " +"debian-non-US-Verzeichnis zuzugreifen und benutzt nur Dateien, die unter " "<filename>unstable/binary-i386</filename> auf i386-Maschinen, " -"<filename>unstable/binary-m68k</filename> auf m68k und so weiter f??r andere " -"unterst??tzte Architekturen, gefunden werden. [Beachten Sie, dass dieses " +"<filename>unstable/binary-m68k</filename> auf m68k und so weiter für andere " +"unterstützte Architekturen, gefunden werden. [Beachten Sie, dass dieses " "Beispiel nur anschaulich macht, wie die Platzhaltervariable benutzt wird. " -"non-us ist nicht l??nger so strukturiert] <placeholder type=\"literallayout" -"\" id=\"0\"/>" +"non-us ist nicht länger so strukturiert] <placeholder " +"type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:222 -- cgit v1.2.3 From 3f6625449c97c0e88234cd5a6bb21b607449b104 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode <jak@debian.org> Date: Tue, 1 Dec 2009 19:13:06 +0100 Subject: doc/po/de.po: Fix missing > in </option>. --- doc/po/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/po/de.po b/doc/po/de.po index 88f079dd6..a7083d902 100644 --- a/doc/po/de.po +++ b/doc/po/de.po @@ -2140,7 +2140,7 @@ msgstr "<option>-d</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cdrom.8.xml:95 msgid "<option>--cdrom</option>" -msgstr "<option>--cdrom</option" +msgstr "<option>--cdrom</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:96 -- cgit v1.2.3 From 82cb5862864f6944bd3bede861f3b68c9e2085a7 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode <jak@debian.org> Date: Tue, 1 Dec 2009 19:14:23 +0100 Subject: doc/po: Rerun po4a to update the template and translations. --- doc/po/apt-doc.pot | 394 ++--- doc/po/de.po | 4797 +++++++++++++++++++++++++--------------------------- doc/po/fr.po | 644 +++---- doc/po/ja.po | 579 +++---- 4 files changed, 2964 insertions(+), 3450 deletions(-) diff --git a/doc/po/apt-doc.pot b/doc/po/apt-doc.pot index aeb624948..e4736029f 100644 --- a/doc/po/apt-doc.pot +++ b/doc/po/apt-doc.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-09-26 11:35+0300\n" +"POT-Creation-Date: 2009-12-01 19:13+0100\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" @@ -1136,7 +1136,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:234 msgid "" -"Note that a package which APT knows of is not nessasarily available to " +"Note that a package which APT knows of is not necessarily available to " "download, installable or installed, e.g. virtual packages are also listed in " "the generated list." msgstr "" @@ -1218,7 +1218,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:281 apt-config.8.xml:93 apt-extracttemplates.1.xml:56 apt-ftparchive.1.xml:492 apt-get.8.xml:319 apt-mark.8.xml:89 apt-sortpkgs.1.xml:54 apt.conf.5.xml:436 apt.conf.5.xml:458 +#: apt-cache.8.xml:281 apt-config.8.xml:93 apt-extracttemplates.1.xml:56 apt-ftparchive.1.xml:492 apt-get.8.xml:319 apt-mark.8.xml:89 apt-sortpkgs.1.xml:54 apt.conf.5.xml:441 apt.conf.5.xml:463 msgid "options" msgstr "" @@ -1416,7 +1416,7 @@ msgid "&apt-commonoptions;" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-cache.8.xml:361 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 apt.conf.5.xml:968 apt_preferences.5.xml:615 +#: apt-cache.8.xml:361 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 apt.conf.5.xml:973 apt_preferences.5.xml:615 msgid "Files" msgstr "" @@ -1426,7 +1426,7 @@ msgid "&file-sourceslist; &file-statelists;" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-cache.8.xml:368 apt-cdrom.8.xml:155 apt-config.8.xml:103 apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569 apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181 apt-sortpkgs.1.xml:69 apt.conf.5.xml:974 apt_preferences.5.xml:622 sources.list.5.xml:221 +#: apt-cache.8.xml:368 apt-cdrom.8.xml:155 apt-config.8.xml:103 apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569 apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181 apt-sortpkgs.1.xml:69 apt.conf.5.xml:979 apt_preferences.5.xml:622 sources.list.5.xml:221 msgid "See Also" msgstr "" @@ -2681,7 +2681,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:552 apt.conf.5.xml:962 apt_preferences.5.xml:462 sources.list.5.xml:181 +#: apt-ftparchive.1.xml:552 apt.conf.5.xml:967 apt_preferences.5.xml:462 sources.list.5.xml:181 msgid "Examples" msgstr "" @@ -2960,8 +2960,7 @@ msgid "" "the newest available version of that source package while respect the " "default release, set with the option " "<literal>APT::Default-Release</literal>, the <option>-t</option> option or " -"per package with with the <literal>pkg/release</literal> syntax, if " -"possible." +"per package with the <literal>pkg/release</literal> syntax, if possible." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> @@ -4226,12 +4225,16 @@ msgid "" "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 " +"The trailing semicolon and the quotes are required. The value must be on one " +"line, and there is no kind of string concatenation. It must not include " +"inside quotes. The behavior of the backslash \"\\\" and escaped characters " +"inside a value is undefined and it should not be used. An option name may " +"include alphanumerical characters and the \"/-:._+\" characters. A new scope " "can be opened with curly braces, like:" msgstr "" #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:66 +#: apt.conf.5.xml:70 #, no-wrap msgid "" "APT {\n" @@ -4243,7 +4246,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:74 +#: apt.conf.5.xml:78 msgid "" "with newlines placed to make it more readable. Lists can be created by " "opening a scope and including a single string enclosed in quotes followed by " @@ -4252,13 +4255,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:79 +#: apt.conf.5.xml:83 #, no-wrap msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:82 +#: apt.conf.5.xml:86 msgid "" "In general the sample configuration file in " "<filename>&docdir;examples/apt.conf</filename> &configureindex; is a good " @@ -4266,14 +4269,14 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:86 +#: apt.conf.5.xml:90 msgid "" "The names of the configuration items are not case-sensitive. So in the " "previous example you could use <literal>dpkg::pre-install-pkgs</literal>." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:89 +#: apt.conf.5.xml:93 msgid "" "Names for the configuration items are optional if a list is defined as it " "can be see in the <literal>DPkg::Pre-Install-Pkgs</literal> example " @@ -4283,9 +4286,10 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:94 +#: apt.conf.5.xml:98 msgid "" -"Two specials are allowed, <literal>#include</literal> and " +"Two specials are allowed, <literal>#include</literal> (which is deprecated " +"and not supported by alternative implementations) 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 " @@ -4294,7 +4298,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:101 +#: apt.conf.5.xml:106 msgid "" "The #clear command is the only way to delete a list or a complete scope. " "Reopening a scope or the ::-style described below will " @@ -4304,7 +4308,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:106 +#: apt.conf.5.xml:111 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 " @@ -4315,7 +4319,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:113 +#: apt.conf.5.xml:118 msgid "" "Note that you can use :: only for appending one item per line to a list and " "that you should not use it in combination with the scope syntax. (The scope " @@ -4332,24 +4336,24 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:125 +#: apt.conf.5.xml:130 msgid "The APT Group" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:126 +#: apt.conf.5.xml:131 msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:130 +#: apt.conf.5.xml:135 msgid "Architecture" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:131 +#: apt.conf.5.xml:136 msgid "" "System Architecture; sets the architecture to use when fetching files and " "parsing package lists. The internal default is the architecture apt was " @@ -4357,12 +4361,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:136 +#: apt.conf.5.xml:141 msgid "Default-Release" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:137 +#: apt.conf.5.xml:142 msgid "" "Default release to install packages from if more than one version " "available. Contains release name, codename or release version. Examples: " @@ -4371,24 +4375,24 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:141 +#: apt.conf.5.xml:146 msgid "Ignore-Hold" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:142 +#: apt.conf.5.xml:147 msgid "" "Ignore Held packages; This global option causes the problem resolver to " "ignore held packages in its decision making." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:146 +#: apt.conf.5.xml:151 msgid "Clean-Installed" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:147 +#: apt.conf.5.xml:152 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -4397,12 +4401,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:153 +#: apt.conf.5.xml:158 msgid "Immediate-Configure" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:154 +#: apt.conf.5.xml:159 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 " @@ -4412,12 +4416,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:161 +#: apt.conf.5.xml:166 msgid "Force-LoopBreak" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:162 +#: apt.conf.5.xml:167 msgid "" "Never Enable this option unless you -really- know what you are doing. It " "permits APT to temporarily remove an essential package to break a " @@ -4428,87 +4432,87 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:170 +#: apt.conf.5.xml:175 msgid "Cache-Limit" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:171 +#: apt.conf.5.xml:176 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 "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:175 +#: apt.conf.5.xml:180 msgid "Build-Essential" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:176 +#: apt.conf.5.xml:181 msgid "Defines which package(s) are considered essential build dependencies." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:179 +#: apt.conf.5.xml:184 msgid "Get" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:180 +#: apt.conf.5.xml:185 msgid "" "The Get subsection controls the &apt-get; tool, please see its documentation " "for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:184 +#: apt.conf.5.xml:189 msgid "Cache" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:185 +#: apt.conf.5.xml:190 msgid "" "The Cache subsection controls the &apt-cache; tool, please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:189 +#: apt.conf.5.xml:194 msgid "CDROM" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:190 +#: apt.conf.5.xml:195 msgid "" "The CDROM subsection controls the &apt-cdrom; tool, please see its " "documentation for more information about the options here." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:196 +#: apt.conf.5.xml:201 msgid "The Acquire Group" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:201 +#: apt.conf.5.xml:206 msgid "PDiffs" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:202 +#: apt.conf.5.xml:207 msgid "" "Try to download deltas called <literal>PDiffs</literal> for Packages or " "Sources files instead of downloading whole ones. True by default." msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:207 +#: apt.conf.5.xml:212 msgid "Queue-Mode" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:208 +#: apt.conf.5.xml:213 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of " "<literal>host</literal> or <literal>access</literal> which determines how " @@ -4518,36 +4522,36 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:215 +#: apt.conf.5.xml:220 msgid "Retries" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:216 +#: apt.conf.5.xml:221 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:220 +#: apt.conf.5.xml:225 msgid "Source-Symlinks" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:221 +#: apt.conf.5.xml:226 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:225 sources.list.5.xml:139 +#: apt.conf.5.xml:230 sources.list.5.xml:139 msgid "http" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:226 +#: apt.conf.5.xml:231 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 " @@ -4559,7 +4563,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:234 +#: apt.conf.5.xml:239 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy to not use its cached " @@ -4573,7 +4577,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:244 apt.conf.5.xml:301 +#: apt.conf.5.xml:249 apt.conf.5.xml:306 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method, this applies to all things including connection timeout and data " @@ -4581,7 +4585,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:247 +#: apt.conf.5.xml:252 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) " @@ -4593,7 +4597,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:255 +#: apt.conf.5.xml:260 msgid "" "The used bandwidth can be limited with " "<literal>Acquire::http::Dl-Limit</literal> which accepts integer values in " @@ -4603,12 +4607,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:261 +#: apt.conf.5.xml:266 msgid "https" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:262 +#: apt.conf.5.xml:267 msgid "" "HTTPS URIs. Cache-control and proxy options are the same as for " "<literal>http</literal> method. <literal>Pipeline-Depth</literal> option is " @@ -4616,7 +4620,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:266 +#: apt.conf.5.xml:271 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is " @@ -4638,12 +4642,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:284 sources.list.5.xml:150 +#: apt.conf.5.xml:289 sources.list.5.xml:150 msgid "ftp" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:285 +#: apt.conf.5.xml:290 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 " @@ -4663,7 +4667,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:304 +#: apt.conf.5.xml:309 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on, it works in nearly every environment. However " @@ -4673,7 +4677,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:311 +#: apt.conf.5.xml:316 msgid "" "It is possible to proxy FTP over HTTP by setting the " "<envar>ftp_proxy</envar> environment variable to a http url - see the " @@ -4683,7 +4687,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:316 +#: apt.conf.5.xml:321 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -4693,18 +4697,18 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:323 sources.list.5.xml:132 +#: apt.conf.5.xml:328 sources.list.5.xml:132 msgid "cdrom" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:329 +#: apt.conf.5.xml:334 #, no-wrap -msgid "\"/cdrom/\"::Mount \"foo\";" +msgid "/cdrom/::Mount \"foo\";" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:324 +#: apt.conf.5.xml:329 msgid "" "CDROM URIs; the only setting for CDROM URIs is the mount point, " "<literal>cdrom::Mount</literal> which must be the mount point for the CDROM " @@ -4717,12 +4721,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:334 +#: apt.conf.5.xml:339 msgid "gpgv" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:335 +#: apt.conf.5.xml:340 msgid "" "GPGV URIs; the only option for GPGV URIs is the option to pass additional " "parameters to gpgv. <literal>gpgv::Options</literal> Additional options " @@ -4730,12 +4734,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:340 +#: apt.conf.5.xml:345 msgid "CompressionTypes" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:346 +#: apt.conf.5.xml:351 #, no-wrap msgid "" "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> " @@ -4743,7 +4747,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:341 +#: apt.conf.5.xml:346 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -4755,19 +4759,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:351 +#: apt.conf.5.xml:356 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:354 +#: apt.conf.5.xml:359 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:347 +#: apt.conf.5.xml:352 msgid "" "Also the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -4784,13 +4788,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:358 +#: apt.conf.5.xml:363 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:356 +#: apt.conf.5.xml:361 msgid "" "Note that at run time the " "<literal>Dir::Bin::<replaceable>Methodname</replaceable></literal> will be " @@ -4805,7 +4809,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:363 +#: apt.conf.5.xml:368 msgid "" "While it is possible to add an empty compression type to the order list, but " "APT in its current version doesn't understand it correctly and will display " @@ -4815,7 +4819,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:197 +#: apt.conf.5.xml:202 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages and the URI handlers. <placeholder type=\"variablelist\" " @@ -4823,12 +4827,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:372 +#: apt.conf.5.xml:377 msgid "Directories" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:374 +#: apt.conf.5.xml:379 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -4840,7 +4844,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:381 +#: apt.conf.5.xml:386 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -4853,7 +4857,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:390 +#: apt.conf.5.xml:395 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -4863,7 +4867,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:396 +#: apt.conf.5.xml:401 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -4871,7 +4875,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:400 +#: apt.conf.5.xml:405 msgid "" "Binary programs are pointed to by " "<literal>Dir::Bin</literal>. <literal>Dir::Bin::Methods</literal> specifies " @@ -4883,7 +4887,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:408 +#: apt.conf.5.xml:413 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -4896,12 +4900,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:421 +#: apt.conf.5.xml:426 msgid "APT in DSelect" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:423 +#: apt.conf.5.xml:428 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behaviour. These are in the <literal>DSelect</literal> " @@ -4909,12 +4913,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:427 +#: apt.conf.5.xml:432 msgid "Clean" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:428 +#: apt.conf.5.xml:433 msgid "" "Cache Clean mode; this value may be one of always, prompt, auto, pre-auto " "and never. always and prompt will remove all packages from the cache after " @@ -4925,50 +4929,50 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:437 +#: apt.conf.5.xml:442 msgid "" "The contents of this variable is passed to &apt-get; as command line options " "when it is run for the install phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:441 +#: apt.conf.5.xml:446 msgid "Updateoptions" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:442 +#: apt.conf.5.xml:447 msgid "" "The contents of this variable is passed to &apt-get; as command line options " "when it is run for the update phase." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:446 +#: apt.conf.5.xml:451 msgid "PromptAfterUpdate" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:447 +#: apt.conf.5.xml:452 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:453 +#: apt.conf.5.xml:458 msgid "How APT calls dpkg" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:454 +#: apt.conf.5.xml:459 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:459 +#: apt.conf.5.xml:464 msgid "" "This is a list of options to pass to dpkg. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -4976,17 +4980,17 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:464 +#: apt.conf.5.xml:469 msgid "Pre-Invoke" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:464 +#: apt.conf.5.xml:469 msgid "Post-Invoke" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:465 +#: apt.conf.5.xml:470 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -4995,12 +4999,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:471 +#: apt.conf.5.xml:476 msgid "Pre-Install-Pkgs" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:472 +#: apt.conf.5.xml:477 msgid "" "This is a list of shell commands to run before invoking dpkg. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -5010,7 +5014,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:478 +#: apt.conf.5.xml:483 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -5021,36 +5025,36 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:485 +#: apt.conf.5.xml:490 msgid "Run-Directory" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:486 +#: apt.conf.5.xml:491 msgid "" "APT chdirs to this directory before invoking dpkg, the default is " "<filename>/</filename>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:495 msgid "Build-options" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:491 +#: apt.conf.5.xml:496 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages, the " "default is to disable signing and produce all binaries." msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:496 +#: apt.conf.5.xml:501 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:497 +#: apt.conf.5.xml:502 msgid "" "APT can call dpkg in a way so it can make aggressive use of triggers over " "multiply calls of dpkg. Without further options dpkg will use triggers only " @@ -5065,7 +5069,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:512 +#: apt.conf.5.xml:517 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -5075,7 +5079,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:506 +#: apt.conf.5.xml:511 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -5089,12 +5093,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:518 +#: apt.conf.5.xml:523 msgid "DPkg::NoTriggers" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:519 +#: apt.conf.5.xml:524 msgid "" "Add the no triggers flag to all dpkg calls (expect the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -5106,12 +5110,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:526 +#: apt.conf.5.xml:531 msgid "PackageManager::Configure" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:527 +#: apt.conf.5.xml:532 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". \"<literal>all</literal>\" is the default " @@ -5128,12 +5132,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:537 +#: apt.conf.5.xml:542 msgid "DPkg::ConfigurePending" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:538 +#: apt.conf.5.xml:543 msgid "" "If this option is set apt will call <command>dpkg --configure " "--pending</command> to let dpkg handle all required configurations and " @@ -5145,12 +5149,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:544 +#: apt.conf.5.xml:549 msgid "DPkg::TriggersPending" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:545 +#: apt.conf.5.xml:550 msgid "" "Useful for <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal> and dpkg " @@ -5160,12 +5164,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:550 +#: apt.conf.5.xml:555 msgid "PackageManager::UnpackAll" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:551 +#: apt.conf.5.xml:556 msgid "" "As the configuration can be deferred to be done at the end by dpkg it can be " "tried to order the unpack series only by critical needs, e.g. by " @@ -5177,12 +5181,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:558 +#: apt.conf.5.xml:563 msgid "OrderList::Score::Immediate" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:566 +#: apt.conf.5.xml:571 #, no-wrap msgid "" "OrderList::Score {\n" @@ -5194,7 +5198,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:559 +#: apt.conf.5.xml:564 msgid "" "Essential packages (and there dependencies) should be configured immediately " "after unpacking. It will be a good idea to do this quite early in the " @@ -5208,12 +5212,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:579 +#: apt.conf.5.xml:584 msgid "Periodic and Archives options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:580 +#: apt.conf.5.xml:585 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by " @@ -5222,12 +5226,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:588 +#: apt.conf.5.xml:593 msgid "Debug options" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:590 +#: apt.conf.5.xml:595 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -5238,7 +5242,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:601 +#: apt.conf.5.xml:606 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, " @@ -5246,7 +5250,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:609 +#: apt.conf.5.xml:614 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s " @@ -5254,7 +5258,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:618 +#: apt.conf.5.xml:623 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -5264,110 +5268,110 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:626 +#: apt.conf.5.xml:631 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CDROM IDs." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:636 +#: apt.conf.5.xml:641 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:641 +#: apt.conf.5.xml:646 msgid "<literal>Debug::Acquire::cdrom</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:645 +#: apt.conf.5.xml:650 msgid "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:652 +#: apt.conf.5.xml:657 msgid "<literal>Debug::Acquire::ftp</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:656 +#: apt.conf.5.xml:661 msgid "Print information related to downloading packages using FTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:663 +#: apt.conf.5.xml:668 msgid "<literal>Debug::Acquire::http</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:667 +#: apt.conf.5.xml:672 msgid "Print information related to downloading packages using HTTP." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:674 +#: apt.conf.5.xml:679 msgid "<literal>Debug::Acquire::https</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:683 msgid "Print information related to downloading packages using HTTPS." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:685 +#: apt.conf.5.xml:690 msgid "<literal>Debug::Acquire::gpgv</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:689 +#: apt.conf.5.xml:694 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:696 +#: apt.conf.5.xml:701 msgid "<literal>Debug::aptcdrom</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:700 +#: apt.conf.5.xml:705 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:707 +#: apt.conf.5.xml:712 msgid "<literal>Debug::BuildDeps</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:710 +#: apt.conf.5.xml:715 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:717 +#: apt.conf.5.xml:722 msgid "<literal>Debug::Hashes</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:720 +#: apt.conf.5.xml:725 msgid "" "Output each cryptographic hash that is generated by the " "<literal>apt</literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:727 +#: apt.conf.5.xml:732 msgid "<literal>Debug::IdentCDROM</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:730 +#: apt.conf.5.xml:735 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -5375,92 +5379,92 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:738 +#: apt.conf.5.xml:743 msgid "<literal>Debug::NoLocking</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:741 +#: apt.conf.5.xml:746 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:749 +#: apt.conf.5.xml:754 msgid "<literal>Debug::pkgAcquire</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:753 +#: apt.conf.5.xml:758 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:760 +#: apt.conf.5.xml:765 msgid "<literal>Debug::pkgAcquire::Auth</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:763 +#: apt.conf.5.xml:768 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:770 +#: apt.conf.5.xml:775 msgid "<literal>Debug::pkgAcquire::Diffs</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:773 +#: apt.conf.5.xml:778 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:781 +#: apt.conf.5.xml:786 msgid "<literal>Debug::pkgAcquire::RRed</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:785 +#: apt.conf.5.xml:790 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:792 +#: apt.conf.5.xml:797 msgid "<literal>Debug::pkgAcquire::Worker</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:796 +#: apt.conf.5.xml:801 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:803 +#: apt.conf.5.xml:808 msgid "<literal>Debug::pkgAutoRemove</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:807 +#: apt.conf.5.xml:812 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:814 +#: apt.conf.5.xml:819 msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:817 +#: apt.conf.5.xml:822 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial " @@ -5470,12 +5474,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:828 +#: apt.conf.5.xml:833 msgid "<literal>Debug::pkgDepCache::Marker</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:836 msgid "" "Generate debug messages describing which package is marked as " "keep/install/remove while the ProblemResolver does his work. Each addition " @@ -5493,90 +5497,90 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:850 +#: apt.conf.5.xml:855 msgid "<literal>Debug::pkgInitConfig</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:853 +#: apt.conf.5.xml:858 msgid "Dump the default configuration to standard error on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:865 msgid "<literal>Debug::pkgDPkgPM</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:863 +#: apt.conf.5.xml:868 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:871 +#: apt.conf.5.xml:876 msgid "<literal>Debug::pkgDPkgProgressReporting</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:874 +#: apt.conf.5.xml:879 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:881 +#: apt.conf.5.xml:886 msgid "<literal>Debug::pkgOrderList</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:885 +#: apt.conf.5.xml:890 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:893 +#: apt.conf.5.xml:898 msgid "<literal>Debug::pkgPackageManager</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:897 +#: apt.conf.5.xml:902 msgid "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:904 +#: apt.conf.5.xml:909 msgid "<literal>Debug::pkgPolicy</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:908 +#: apt.conf.5.xml:913 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:914 +#: apt.conf.5.xml:919 msgid "<literal>Debug::pkgProblemResolver</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:918 +#: apt.conf.5.xml:923 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:926 +#: apt.conf.5.xml:931 msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:929 +#: apt.conf.5.xml:934 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -5584,32 +5588,32 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:937 +#: apt.conf.5.xml:942 msgid "<literal>Debug::sourceList</literal>" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:941 +#: apt.conf.5.xml:946 msgid "" "Print information about the vendors read from " "<filename>/etc/apt/vendors.list</filename>." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:963 +#: apt.conf.5.xml:968 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." msgstr "" #. type: Content of: <refentry><refsect1><variablelist> -#: apt.conf.5.xml:970 +#: apt.conf.5.xml:975 msgid "&file-aptconf;" msgstr "" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:975 +#: apt.conf.5.xml:980 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "" diff --git a/doc/po/de.po b/doc/po/de.po index a7083d902..23c4c5b27 100644 --- a/doc/po/de.po +++ b/doc/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: apt-doc 0.7.24\n" "Report-Msgid-Bugs-To: APT Development Team <deity@lists.debian.org>\n" -"POT-Creation-Date: 2009-09-25 19:59+0300\n" +"POT-Creation-Date: 2009-12-01 19:13+0100\n" "PO-Revision-Date: 2009-10-28 23:51+GMT\n" "Last-Translator: Chris Leick <c.leick@vollbio.de>\n" "Language-Team: German <debian-l10n-german@lists.debian.org>\n" @@ -15,7 +15,6 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" - #. type: TH #: apt.8:17 #, no-wrap @@ -43,8 +42,7 @@ msgstr "NAME" #. type: Plain text #: apt.8:20 msgid "apt - Advanced Package Tool" -msgstr "" -"apt - Fortschrittliches Paketierungswerkzeug (Advanced Package Tool)" +msgstr "apt - Fortschrittliches Paketierungswerkzeug (Advanced Package Tool)" #. type: SH #: apt.8:20 @@ -67,14 +65,14 @@ msgstr "BESCHREIBUNG" #: apt.8:31 msgid "" "APT is a management system for software packages. For normal day to day " -"package management there are several frontends available, such as " -"B<aptitude>(8) for the command line or B<synaptic>(8) for the X Window " -"System. Some options are only implemented in B<apt-get>(8) though." +"package management there are several frontends available, such as B<aptitude>" +"(8) for the command line or B<synaptic>(8) for the X Window System. Some " +"options are only implemented in B<apt-get>(8) though." msgstr "" "APT ist ein Verwaltungssystem für Softwarepakete. Für normale alltägliche " "Paketverwaltung sind mehrere Oberflächen, wie B<aptitude>(8) für die " -"Befehlszeile oder B<synaptic>(8) für das X-Window-System, verfügbar. " -"Einige Optionen sind jedoch nur in B<apt-get>(8) implementiert." +"Befehlszeile oder B<synaptic>(8) für das X-Window-System, verfügbar. Einige " +"Optionen sind jedoch nur in B<apt-get>(8) implementiert." #. type: SH #: apt.8:31 @@ -117,8 +115,7 @@ msgstr "DIAGNOSE" #. type: Plain text #: apt.8:44 msgid "apt returns zero on normal operation, decimal 100 on error." -msgstr "" -"apt gibt bei normalen Operationen 0 zurück, dezimal 100 bei Fehlern." +msgstr "apt gibt bei normalen Operationen 0 zurück, dezimal 100 bei Fehlern." #. type: SH #: apt.8:44 @@ -139,9 +136,8 @@ msgid "" "B<reportbug>(1) command." msgstr "" "Siehe auch E<lt>http://bugs.debian.org/aptE<gt>. Wenn Sie einen Fehler in " -"B<apt> berichten möchten, sehen Sie sich bitte " -"I</usr/share/doc/debian/bug-reporting.txt> oder den Befehl " -"B<reportbug>(1) an." +"B<apt> berichten möchten, sehen Sie sich bitte I</usr/share/doc/debian/bug-" +"reporting.txt> oder den Befehl B<reportbug>(1) an." #. type: SH #: apt.8:55 @@ -152,8 +148,7 @@ msgstr "AUTOR" #. type: Plain text #: apt.8:56 msgid "apt was written by the APT team E<lt>apt@packages.debian.orgE<gt>." -msgstr "" -"apt wurde vom APT-Team E<lt>apt@packages.debian.orgE<gt> geschrieben." +msgstr "apt wurde vom APT-Team E<lt>apt@packages.debian.orgE<gt> geschrieben." #. type: Plain text #: apt.ent:2 @@ -163,17 +158,17 @@ msgstr "<!-- -*- mode: sgml; mode: fold -*- -->" #. type: Plain text #: apt.ent:10 msgid "" -"<!-- Some common paths.. --> <!ENTITY docdir \"/usr/share/doc/apt/\"> " -"<!ENTITY guidesdir \"/usr/share/doc/apt-doc/\"> <!ENTITY configureindex " +"<!-- Some common paths.. --> <!ENTITY docdir \"/usr/share/doc/apt/\"> <!" +"ENTITY guidesdir \"/usr/share/doc/apt-doc/\"> <!ENTITY configureindex " "\"<filename>&docdir;examples/configure-index.gz</filename>\"> <!ENTITY " -"aptconfdir \"<filename>/etc/apt.conf</filename>\"> <!ENTITY statedir " -"\"/var/lib/apt\"> <!ENTITY cachedir \"/var/cache/apt\">" +"aptconfdir \"<filename>/etc/apt.conf</filename>\"> <!ENTITY statedir \"/var/" +"lib/apt\"> <!ENTITY cachedir \"/var/cache/apt\">" msgstr "" -"<!-- Einige häufige Pfade ... --> <!ENTITY docdir \"/usr/share/doc/apt/\">" -" <!ENTITY guidesdir \"/usr/share/doc/apt-doc/\"> <!ENTITY configureindex " +"<!-- Einige häufige Pfade ... --> <!ENTITY docdir \"/usr/share/doc/apt/\"> <!" +"ENTITY guidesdir \"/usr/share/doc/apt-doc/\"> <!ENTITY configureindex " "\"<filename>&docdir;examples/configure-index.gz</filename>\"> <!ENTITY " -"aptconfdir \"<filename>/etc/apt.conf</filename>\"> <!ENTITY statedir " -"\"/var/lib/apt\"> <!ENTITY cachedir \"/var/cache/apt\">" +"aptconfdir \"<filename>/etc/apt.conf</filename>\"> <!ENTITY statedir \"/var/" +"lib/apt\"> <!ENTITY cachedir \"/var/cache/apt\">" #. type: Plain text #: apt.ent:17 @@ -573,8 +568,7 @@ msgid "" " <firstname>Jason</firstname> <surname>Gunthorpe</surname>\n" " <contrib></contrib>\n" " </author>\n" -" <copyright><year>1998-2001</year> <holder>Jason " -"Gunthorpe</holder></copyright>\n" +" <copyright><year>1998-2001</year> <holder>Jason Gunthorpe</holder></copyright>\n" " <date>28 October 2008</date>\n" " <productname>Linux</productname>\n" msgstr "" @@ -586,8 +580,7 @@ msgstr "" " <firstname>Jason</firstname> <surname>Gunthorpe</surname>\n" " <contrib></contrib>\n" " </author>\n" -" <copyright><year>1998-2001</year> <holder>Jason " -"Gunthorpe</holder></copyright>\n" +" <copyright><year>1998-2001</year> <holder>Jason Gunthorpe</holder></copyright>\n" " <date>28. Oktober 2008</date>\n" " <productname>Linux</productname>\n" @@ -728,8 +721,7 @@ msgid "" "<!-- Boiler plate Bug reporting section -->\n" "<!ENTITY manbugs \"\n" " <refsect1><title>Bugs\n" -" APT bug " -"page. \n" +" APT bug page. \n" " If you wish to report a bug in APT, please see\n" " /usr/share/doc/debian/bug-reporting.txt or the\n" " &reportbug; command.\n" @@ -740,8 +732,7 @@ msgstr "" "\n" "Fehler\n" -" APT-Fehlerseite" -". \n" +" APT-Fehlerseite. \n" " Wenn Sie einen Fehler in APT berichten möchten, lesen Sie bitte\n" " /usr/share/doc/debian/bug-reporting.txt oder den\n" " &reportbug;-Befehl. Verfassen Sie Fehlerberichte bitte auf Englisch.\n" @@ -756,8 +747,7 @@ msgid "" "\n" "Author\n" -" APT was written by the APT team " -"apt@packages.debian.org.\n" +" APT was written by the APT team apt@packages.debian.org.\n" " \n" " \n" "\">\n" @@ -765,8 +755,7 @@ msgstr "" "\n" "Autor\n" -" APT wurde vom APT-Team geschrieben " -"apt@packages.debian.org.\n" +" APT wurde vom APT-Team geschrieben apt@packages.debian.org.\n" " \n" " \n" "\">\n" @@ -822,8 +811,7 @@ msgid "" " \n" " \n" " \n" -" Configuration File; Specify a configuration file to " -"use. \n" +" Configuration File; Specify a configuration file to use. \n" " The program will read the default configuration file and then this \n" " configuration file. See &apt-conf; for syntax information. \n" " \n" @@ -833,11 +821,9 @@ msgstr "" " \n" " \n" " \n" -" Konfigurationsdatei; Gibt eine Konfigurationssdatei " -"zum Benutzen an.\n" +" 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. Lesen Sie &apt-conf;, um Syntax-Informationen zu erhalten \n" " \n" " \n" " \n" @@ -849,12 +835,9 @@ msgid "" " \n" " \n" " \n" -" Set a Configuration Option; This will set an " -"arbitrary\n" -" configuration option. The syntax is .\n" -" and can be used " -"multiple\n" +" Set a Configuration Option; This will set an arbitrary\n" +" configuration option. The syntax is .\n" +" and can be used multiple\n" " times to set different options.\n" " \n" " \n" @@ -864,12 +847,9 @@ msgstr "" " \n" " \n" " \n" -" Eine Konfigurationsoption setzen; Dies wird eine " -"beliebige\n" -" Konfigurationsoption setzen. Die Syntax lautet .\n" -" und kann mehrfach " -"benutzt\n" +" Eine Konfigurationsoption setzen; Dies wird eine beliebige\n" +" Konfigurationsoption setzen. Die Syntax lautet .\n" +" und kann mehrfach benutzt\n" " werden, um verschiedene Optionen zu setzen.\n" " \n" " \n" @@ -883,8 +863,7 @@ msgid "" "\n" "All command line options may be set using the configuration file, " -"the\n" +" All command line options may be set using the configuration file, the\n" " descriptions indicate the configuration option to set. For boolean\n" " options you can override the config file by using something like \n" " ,, \n" @@ -895,8 +874,7 @@ msgstr "" "\n" "Alle Befehlszeilenoptionen können durch die Konfigurationsdatei " -"gesetzt\n" +" Alle Befehlszeilenoptionen können durch die Konfigurationsdatei gesetzt\n" " werden, die Beschreibung gibt die zu setzende Option an. Für\n" " boolesche Optionen können Sie die Konfigurationsdatei überschreiben,\n" " indem Sie etwas wie , ,\n" @@ -911,15 +889,13 @@ msgid "" "/etc/apt/apt.conf\n" " APT configuration file.\n" -" Configuration Item: " -"Dir::Etc::Main.\n" +" Configuration Item: Dir::Etc::Main.\n" " \n" msgstr "" "/etc/apt/apt.conf\n" " APT-Konfigurationsdatei.\n" -" Konfigurationselement: " -"Dir::Etc::Main.\n" +" Konfigurationselement: Dir::Etc::Main.\n" " \n" #. type: Plain text @@ -928,15 +904,13 @@ msgstr "" msgid "" " /etc/apt/apt.conf.d/\n" " APT configuration file fragments.\n" -" Configuration Item: " -"Dir::Etc::Parts.\n" +" Configuration Item: Dir::Etc::Parts.\n" " \n" "\">\n" msgstr "" " /etc/apt/apt.conf.d/\n" " APT-Konfigurationsdatei-Fragmente.\n" -" Konfigurationselement: " -"Dir::Etc::Parts.\n" +" Konfigurationselement: Dir::Etc::Parts.\n" " \n" "\">\n" @@ -947,34 +921,28 @@ msgid "" "&cachedir;/archives/\n" " Storage area for retrieved package files.\n" -" Configuration Item: " -"Dir::Cache::Archives.\n" +" Configuration Item: Dir::Cache::Archives.\n" " \n" msgstr "" "&cachedir;/archives/\n" " Speicherbereich für aufgerufene Paketdateien.\n" -" Konfigurationselement: " -"Dir::Cache::Archives.\n" +" Konfigurationselement: Dir::Cache::Archives.\n" " \n" #. type: Plain text #: apt.ent:315 #, no-wrap msgid "" -" " -"&cachedir;/archives/partial/\n" +" &cachedir;/archives/partial/\n" " Storage area for package files in transit.\n" -" Configuration Item: Dir::Cache::Archives (implicit " -"partial). \n" +" Configuration Item: Dir::Cache::Archives (implicit partial). \n" " \n" "\">\n" msgstr "" -" " -"&cachedir;/archives/partial/\n" +" &cachedir;/archives/partial/\n" " Speicherbereich für Paketdateien auf dem Transportweg.\n" -" Konfigurationselement: Dir::Cache::Archives (implizit " -"teilweise). \n" +" Konfigurationselement: Dir::Cache::Archives (implizit teilweise). \n" " \n" "\">\n" @@ -989,8 +957,7 @@ msgid "" " i.e. a preference to get certain packages\n" " from a separate source\n" " or from a different version of a distribution.\n" -" Configuration Item: " -"Dir::Etc::Preferences.\n" +" Configuration Item: Dir::Etc::Preferences.\n" " \n" msgstr "" "Dir::Etc::Preferences.\n" +" Konfigurationselement: Dir::Etc::Preferences.\n" " \n" #. type: Plain text #: apt.ent:331 #, no-wrap msgid "" -" " -"/etc/apt/preferences.d/\n" +" /etc/apt/preferences.d/\n" " File fragments for the version preferences.\n" -" Configuration Item: " -"Dir::Etc::PreferencesParts.\n" +" Configuration Item: Dir::Etc::PreferencesParts.\n" " \n" "\">\n" msgstr "" -" " -"/etc/apt/preferences.d/\n" +" /etc/apt/preferences.d/\n" " Dateifragmente für die Versionseinstellungen.\n" -" Konfigurationselement: " -"Dir::Etc::PreferencesParts.\n" +" Konfigurationselement: Dir::Etc::PreferencesParts.\n" " \n" "\">\n" @@ -1030,35 +992,28 @@ msgid "" "/etc/apt/sources.list\n" " Locations to fetch packages from.\n" -" Configuration Item: " -"Dir::Etc::SourceList.\n" +" Configuration Item: Dir::Etc::SourceList.\n" " \n" msgstr "" "/etc/apt/sources.list\n" " Orte, von denen Pakete geladen werden.\n" -" Konfigurationselement: " -"Dir::Etc::SourceList.\n" +" Konfigurationselement: Dir::Etc::SourceList.\n" " \n" #. type: Plain text #: apt.ent:343 #, no-wrap msgid "" -" " -"/etc/apt/sources.list.d/\n" +" /etc/apt/sources.list.d/\n" " File fragments for locations to fetch packages from.\n" -" Configuration Item: " -"Dir::Etc::SourceParts.\n" +" Configuration Item: Dir::Etc::SourceParts.\n" " \n" "\">\n" msgstr "" -" " -"/etc/apt/sources.list.d/\n" -" Dateifragmente für Orte, von denen Pakete geladen " -"werden.\n" -" Konfigurationselement: " -"Dir::Etc::SourceParts.\n" +" /etc/apt/sources.list.d/\n" +" Dateifragmente für Orte, von denen Pakete geladen werden.\n" +" Konfigurationselement: Dir::Etc::SourceParts.\n" " \n" "\">\n" @@ -1068,51 +1023,44 @@ msgstr "" msgid "" "&statedir;/lists/\n" -" Storage area for state information for each package " -"resource specified in\n" +" Storage area for state information for each package resource specified in\n" " &sources-list;\n" -" Configuration Item: " -"Dir::State::Lists.\n" +" Configuration Item: Dir::State::Lists.\n" " \n" msgstr "" "&statedir;/lists/\n" " Speicherbereich für Statusinformationen jeder\n" " in &sources-list; angegebenen Paketquelle\n" -" Konfigurationselement: " -"Dir::State::Lists.\n" +" Konfigurationselement: Dir::State::Lists.\n" " \n" #. type: Plain text #: apt.ent:355 #, no-wrap msgid "" -" " -"&statedir;/lists/partial/\n" +" &statedir;/lists/partial/\n" " Storage area for state information in transit.\n" -" Configuration Item: Dir::State::Lists (implicit " -"partial).\n" +" Configuration Item: Dir::State::Lists (implicit partial).\n" " \n" "\">\n" msgstr "" -" " -"&statedir;/lists/partial/\n" -" Speicherbereich für Statusinformationen auf dem " -"Transportweg.\n" -" Konfigurationselement: Dir::State::Lists (implizit " -"teilweise).\n" +" &statedir;/lists/partial/\n" +" Speicherbereich für Statusinformationen auf dem Transportweg.\n" +" Konfigurationselement: Dir::State::Lists (implizit teilweise).\n" " \n" "\">\n" #. The last update date #. type: Content of: -#: apt-cache.8.xml:13 apt-config.8.xml:13 apt-extracttemplates.1.xml:13 apt-ftparchive.1.xml:13 apt-sortpkgs.1.xml:13 sources.list.5.xml:13 +#: apt-cache.8.xml:13 apt-config.8.xml:13 apt-extracttemplates.1.xml:13 +#: apt-ftparchive.1.xml:13 apt-sortpkgs.1.xml:13 sources.list.5.xml:13 msgid "" "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; 29 " "February 2004" msgstr "" -"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; " -"29. Februar 2004" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; " +"29. Februar 2004" #. type: Content of: #: apt-cache.8.xml:22 apt-cache.8.xml:29 @@ -1120,12 +1068,17 @@ msgid "apt-cache" msgstr "apt-cache" #. type: Content of: -#: apt-cache.8.xml:23 apt-cdrom.8.xml:22 apt-config.8.xml:23 apt-get.8.xml:23 apt-key.8.xml:15 apt-mark.8.xml:23 apt-secure.8.xml:15 +#: apt-cache.8.xml:23 apt-cdrom.8.xml:22 apt-config.8.xml:23 apt-get.8.xml:23 +#: apt-key.8.xml:15 apt-mark.8.xml:23 apt-secure.8.xml:15 msgid "8" msgstr "8" #. type: Content of: -#: apt-cache.8.xml:24 apt-cdrom.8.xml:23 apt-config.8.xml:24 apt-extracttemplates.1.xml:24 apt-ftparchive.1.xml:24 apt-get.8.xml:24 apt-key.8.xml:16 apt-mark.8.xml:24 apt-secure.8.xml:16 apt-sortpkgs.1.xml:24 apt.conf.5.xml:30 apt_preferences.5.xml:23 sources.list.5.xml:24 +#: apt-cache.8.xml:24 apt-cdrom.8.xml:23 apt-config.8.xml:24 +#: apt-extracttemplates.1.xml:24 apt-ftparchive.1.xml:24 apt-get.8.xml:24 +#: apt-key.8.xml:16 apt-mark.8.xml:24 apt-secure.8.xml:16 +#: apt-sortpkgs.1.xml:24 apt.conf.5.xml:30 apt_preferences.5.xml:23 +#: sources.list.5.xml:24 msgid "APT" msgstr "APT" @@ -1138,59 +1091,55 @@ msgstr "" #. type: Content of: #: apt-cache.8.xml:36 msgid "" -"apt-cache " -" " -" add file " -"gencaches showpkg pkg showsrc pkg " -"stats dump dumpavail unmet " -"search regex show pkg " -"depends pkg rdepends pkg " -"pkgnames prefix dotty " -"pkg xvcg pkg " -"policy pkgs madison pkgs " -"" -msgstr "" -"apt-cache " -" " +"apt-cache " +"add file gencaches showpkg pkg " +"showsrc pkg stats dump dumpavail unmet search regex show pkg depends pkg " +"rdepends pkg pkgnames prefix dotty pkg " +"xvcg pkg policy pkgs madison pkgs " +msgstr "" +"apt-cache " " add Datei " -"gencaches showpkg pkg showsrc pkg " -"stats dump dumpavail unmet " -"search regex show pkg " -"depends pkg rdepends Paket " -"pkgnames Präfix dotty " -"Paket xvcg Paket " -"policy Pakete " -"madison " -"Pakete " +"choice=\"req\"> add Datei gencaches " +"showpkg pkg showsrc pkg stats dump dumpavail unmet search regex show pkg depends " +"pkg rdepends Paket pkgnames Präfix dotty Paket " +"xvcg Paket policy Pakete madison Pakete " #. type: Content of: -#: apt-cache.8.xml:62 apt-cdrom.8.xml:47 apt-config.8.xml:47 apt-extracttemplates.1.xml:43 apt-ftparchive.1.xml:55 apt-get.8.xml:125 apt-key.8.xml:34 apt-mark.8.xml:52 apt-secure.8.xml:40 apt-sortpkgs.1.xml:44 apt.conf.5.xml:39 apt_preferences.5.xml:33 sources.list.5.xml:33 +#: apt-cache.8.xml:62 apt-cdrom.8.xml:47 apt-config.8.xml:47 +#: apt-extracttemplates.1.xml:43 apt-ftparchive.1.xml:55 apt-get.8.xml:125 +#: apt-key.8.xml:34 apt-mark.8.xml:52 apt-secure.8.xml:40 +#: apt-sortpkgs.1.xml:44 apt.conf.5.xml:39 apt_preferences.5.xml:33 +#: sources.list.5.xml:33 msgid "Description" msgstr "Beschreibung" @@ -1204,9 +1153,8 @@ msgid "" msgstr "" "<command>apt-cache</command> führt eine Vielzahl von Operationen auf dem " "Paketzwischenspeicher von APT durch. <command>apt-cache</command> " -"manipuliert nicht den Status des Systems, stellt aber Operationen zum " -"Suchen und Generieren von interessanten Ausgaben der Paket-Metadaten " -"bereit." +"manipuliert nicht den Status des Systems, stellt aber Operationen zum Suchen " +"und Generieren von interessanten Ausgaben der Paket-Metadaten bereit." #. type: Content of: <refentry><refsect1><para> #: apt-cache.8.xml:68 apt-get.8.xml:131 @@ -1214,9 +1162,8 @@ msgid "" "Unless the <option>-h</option>, or <option>--help</option> option is given, " "one of the commands below must be present." msgstr "" -"Sofern nicht die <option>-h</option>-, oder " -"<option>--help</option>-Option angegeben ist, muss einer der unten " -"aufgeführten Befehle vorkommen." +"Sofern nicht die <option>-h</option>-, oder <option>--help</option>-Option " +"angegeben ist, muss einer der unten aufgeführten Befehle vorkommen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:72 @@ -1244,10 +1191,10 @@ msgid "" "check</command>. It builds the source and package caches from the sources in " "&sources-list; and from <filename>/var/lib/dpkg/status</filename>." msgstr "" -"<literal>gencaches</literal> führt die gleichen Operationen wie " -"<command>apt-get check</command> durch. Es bildet die Quellen- und " -"Paketzwischenspeicher aus den Quellen in &sources-list; und von " -"<filename>/var/lib/dpkg/status</filename>." +"<literal>gencaches</literal> führt die gleichen Operationen wie <command>apt-" +"get check</command> durch. Es bildet die Quellen- und Paketzwischenspeicher " +"aus den Quellen in &sources-list; und von <filename>/var/lib/dpkg/status</" +"filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:84 @@ -1262,22 +1209,21 @@ msgid "" "versions and reverse dependencies of each package listed are listed, as well " "as forward dependencies for each version. Forward (normal) dependencies are " "those packages upon which the package in question depends; reverse " -"dependencies are those packages that depend upon the package in " -"question. Thus, forward dependencies must be satisfied for a package, but " -"reverse dependencies need not be. For instance, <command>apt-cache showpkg " +"dependencies are those packages that depend upon the package in question. " +"Thus, forward dependencies must be satisfied for a package, but reverse " +"dependencies need not be. For instance, <command>apt-cache showpkg " "libreadline2</command> would produce output similar to the following:" msgstr "" -"<literal>showpkg</literal> zeigt Informationen über die auf der " -"Befehlszeile aufgelisteten Pakete. Die übrigen Argumente sind Paketnamen. " -"Die verfügbaren Versionen und Rückwärtsabhängigkeiten jedes aufgeführten " -"Paketes werden ebenso aufgelistet, wie die Vorwärtsabhängigkeiten jeder " -"Version. Vorwärtsabhängigkeiten (normale Abhängigkeiten) sind jene " -"Pakete, von denen das betreffende Paket abhängt. Rückwärtsabhängigkeiten " -"sind jene Pakete, die von dem betreffenden Paket abhängen. Deshalb müssen " -"Vorwärtsabhängigkeiten für das Paket erfüllt werden, " -"Rückwärtsabhängigkeiten allerdings nicht. <command>apt-cache showpkg " -"libreadline2</command> würde zum Beispiel eine Ausgabe ähnlich der " -"folgenden erzeugen:" +"<literal>showpkg</literal> zeigt Informationen über die auf der Befehlszeile " +"aufgelisteten Pakete. Die übrigen Argumente sind Paketnamen. Die verfügbaren " +"Versionen und Rückwärtsabhängigkeiten jedes aufgeführten Paketes werden " +"ebenso aufgelistet, wie die Vorwärtsabhängigkeiten jeder Version. " +"Vorwärtsabhängigkeiten (normale Abhängigkeiten) sind jene Pakete, von denen " +"das betreffende Paket abhängt. Rückwärtsabhängigkeiten sind jene Pakete, die " +"von dem betreffenden Paket abhängen. Deshalb müssen Vorwärtsabhängigkeiten " +"für das Paket erfüllt werden, Rückwärtsabhängigkeiten allerdings nicht. " +"<command>apt-cache showpkg libreadline2</command> würde zum Beispiel eine " +"Ausgabe ähnlich der folgenden erzeugen:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> #: apt-cache.8.xml:97 @@ -1318,11 +1264,10 @@ msgid "" msgstr "" "Dadurch sieht man, dass libreadline2, Version 2.1-12, von libc5 und " "ncurses3.0 abhängt, die installiert sein müssen, damit libreadline2 " -"funktioniert. Im Gegenzug hängen libreadlineg2 und libreadline2-altdev " -"von libreadline2 ab. Wenn libreadline2 installiert ist, müssen außerdem " -"libc5 und ncurses3.0 (und ldso) installiert sein. Für die spezielle " -"Bedeutung der restlichen Ausgabe ist es am besten, den apt-Quelltext zu " -"konsultieren." +"funktioniert. Im Gegenzug hängen libreadlineg2 und libreadline2-altdev von " +"libreadline2 ab. Wenn libreadline2 installiert ist, müssen außerdem libc5 " +"und ncurses3.0 (und ldso) installiert sein. Für die spezielle Bedeutung der " +"restlichen Ausgabe ist es am besten, den apt-Quelltext zu konsultieren." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:118 @@ -1335,9 +1280,8 @@ msgid "" "<literal>stats</literal> displays some statistics about the cache. No " "further arguments are expected. Statistics reported are:" msgstr "" -"<literal>stats</literal> zeigt einige Statistiken über den " -"Zwischenspeicher. Es werden keine weiteren Argumente erwartet. Berichtete " -"Statistiken sind:" +"<literal>stats</literal> zeigt einige Statistiken über den Zwischenspeicher. " +"Es werden keine weiteren Argumente erwartet. Berichtete Statistiken sind:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:121 @@ -1357,10 +1301,10 @@ msgid "" "dependencies. The majority of packages fall into this category." msgstr "" "<literal>Normal packages</literal> ist die Anzahl der regulären, " -"gewöhnlichen Paketnamen. Diese sind Pakete, die eine " -"Eins-zu-Eins-Entsprechung zwischen ihren Namen und den Namen, die andere " -"Pakete für ihre Abhängigkeiten benutzen, tragen. Die Mehrzahl der " -"Pakete fällt in diese Kategorie." +"gewöhnlichen Paketnamen. Diese sind Pakete, die eine Eins-zu-Eins-" +"Entsprechung zwischen ihren Namen und den Namen, die andere Pakete für ihre " +"Abhängigkeiten benutzen, tragen. Die Mehrzahl der Pakete fällt in diese " +"Kategorie." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:131 @@ -1372,13 +1316,12 @@ msgid "" "package; several packages provide \"mail-transport-agent\", but there is no " "package named \"mail-transport-agent\"." msgstr "" -"<literal>Pure virtual packages</literal> ist die Anzahl der Pakete, die " -"nur als ein virtueller Paketname existieren. Das kommt vor, wenn Pakete " -"nur den virtuellen Paketnamen »bereitstellen« und aktuell kein Paket den " -"Namen benutzt. Zum Beispiel ist im Debian-GNU/Linux-System " -"»mail-transport-agent« ein rein virtuelles Paket. Mehrere Pakete stellen " -"»mail-transport-agent« bereit, aber es gibt kein Paket mit dem Namen " -"»mail-transport-agent«." +"<literal>Pure virtual packages</literal> ist die Anzahl der Pakete, die nur " +"als ein virtueller Paketname existieren. Das kommt vor, wenn Pakete nur den " +"virtuellen Paketnamen »bereitstellen« und aktuell kein Paket den Namen " +"benutzt. Zum Beispiel ist im Debian-GNU/Linux-System »mail-transport-agent« " +"ein rein virtuelles Paket. Mehrere Pakete stellen »mail-transport-agent« " +"bereit, aber es gibt kein Paket mit dem Namen »mail-transport-agent«." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:139 @@ -1388,26 +1331,23 @@ msgid "" "Debian GNU/Linux system, \"X11-text-viewer\" is a virtual package, but only " "one package, xless, provides \"X11-text-viewer\"." msgstr "" -"<literal>Single virtual packages</literal> ist die Anzahl der Pakete " -"mit nur einem Paket, das ein bestimmtes virtuelles Paket bereitstellt. " -"»X11-text-viewer« ist zum Beispiel im Debian-GNU/Linux-System ein " -"virtuelles Paket, aber nur ein Paket, xless, stellt »X11-text-viewer« " -"bereit." +"<literal>Single virtual packages</literal> ist die Anzahl der Pakete mit nur " +"einem Paket, das ein bestimmtes virtuelles Paket bereitstellt. »X11-text-" +"viewer« ist zum Beispiel im Debian-GNU/Linux-System ein virtuelles Paket, " +"aber nur ein Paket, xless, stellt »X11-text-viewer« bereit." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:145 msgid "" "<literal>Mixed virtual packages</literal> is the number of packages that " "either provide a particular virtual package or have the virtual package name " -"as the package name. For instance, in the Debian GNU/Linux system, " -"\"debconf\" is both an actual package, and provided by the debconf-tiny " -"package." +"as the package name. For instance, in the Debian GNU/Linux system, \"debconf" +"\" is both an actual package, and provided by the debconf-tiny package." msgstr "" -"<literal>Mixed virtual packages</literal> ist die Anzahl der Pakete, " -"die entweder ein bestimmtes virtuelles Paket bereitstellen oder den " -"virtuellen Paketnamen als Paketnamen haben. »debconf« ist zum Beispiel " -"sowohl ein tatsächliches Paket, wird aber auch vom Paket debconf-tiny " -"bereitgestellt." +"<literal>Mixed virtual packages</literal> ist die Anzahl der Pakete, die " +"entweder ein bestimmtes virtuelles Paket bereitstellen oder den virtuellen " +"Paketnamen als Paketnamen haben. »debconf« ist zum Beispiel sowohl ein " +"tatsächliches Paket, wird aber auch vom Paket debconf-tiny bereitgestellt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:152 @@ -1421,9 +1361,9 @@ msgstr "" "<literal>Missing</literal> ist die Anzahl der Paketnamen, auf die eine " "Abhängigkeit verweist, die aber von keinem Paket bereitgestellt werden. " "Fehlende Pakete könnten auftauchen, wenn nicht auf eine vollständige " -"Distribution zugegriffen oder ein (echtes oder virtuelles) Paket aus " -"einer Distribution gestrichen wurde. Normalerweise wird auf sie von " -"Conflicts oder Breaks-Angaben Bezug genommen." +"Distribution zugegriffen oder ein (echtes oder virtuelles) Paket aus einer " +"Distribution gestrichen wurde. Normalerweise wird auf sie von Conflicts oder " +"Breaks-Angaben Bezug genommen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:159 @@ -1435,11 +1375,10 @@ msgid "" "considerably larger than the number of total package names." msgstr "" "<literal>Total distinct</literal> Versionen ist die Anzahl der im " -"Zwischenspeicher gefundenen Paketversionen. Dieser Wert ist daher " -"meistens gleich der Anzahl der gesamten Paketnamen. Wenn auf mehr als " -"eine Distribution (zum Beispiel »stable« und »unstable« zusammen) " -"zugegriffen wird, kann dieser Wert deutlich größer als die gesamte " -"Anzahl der Paketnamen sein." +"Zwischenspeicher gefundenen Paketversionen. Dieser Wert ist daher meistens " +"gleich der Anzahl der gesamten Paketnamen. Wenn auf mehr als eine " +"Distribution (zum Beispiel »stable« und »unstable« zusammen) zugegriffen wird, " +"kann dieser Wert deutlich größer als die gesamte Anzahl der Paketnamen sein." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para><itemizedlist><listitem><para> #: apt-cache.8.xml:166 @@ -1463,9 +1402,8 @@ msgid "" "records that declare the name to be a Binary." msgstr "" "<literal>showsrc</literal> zeigt alle Quellpaketdatensätze, die den " -"angegebenen Paketnamen entsprechen. Alle Versionen werden ebenso " -"angezeigt, wie alle Datensätze, die den Namen für ein Programm " -"deklarieren." +"angegebenen Paketnamen entsprechen. Alle Versionen werden ebenso angezeigt, " +"wie alle Datensätze, die den Namen für ein Programm deklarieren." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:179 apt-config.8.xml:84 @@ -1475,11 +1413,11 @@ msgstr "dump" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:180 msgid "" -"<literal>dump</literal> shows a short listing of every package in the " -"cache. It is primarily for debugging." +"<literal>dump</literal> shows a short listing of every package in the cache. " +"It is primarily for debugging." msgstr "" -"<literal>dump</literal> zeigt einen kurzen Programmausdruck von jedem " -"Paket im Zwischenspeicher. Es dient in erster Linie der Fehlersuche." +"<literal>dump</literal> zeigt einen kurzen Programmausdruck von jedem Paket " +"im Zwischenspeicher. Es dient in erster Linie der Fehlersuche." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:184 @@ -1492,9 +1430,9 @@ msgid "" "<literal>dumpavail</literal> prints out an available list to stdout. This is " "suitable for use with &dpkg; and is used by the &dselect; method." msgstr "" -"<literal>dumpavail</literal> gibt eine verfügbare Liste auf stdout aus. " -"Dies ist geeignet für die Benutzung mit &dpkg; und wird für die " -"&dselect;-Methode benutzt." +"<literal>dumpavail</literal> gibt eine verfügbare Liste auf stdout aus. Dies " +"ist geeignet für die Benutzung mit &dpkg; und wird für die &dselect;-Methode " +"benutzt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:189 @@ -1518,13 +1456,12 @@ msgstr "show <replaceable>Paket(e)</replaceable>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:195 msgid "" -"<literal>show</literal> performs a function similar to <command>dpkg " -"--print-avail</command>; it displays the package records for the named " -"packages." +"<literal>show</literal> performs a function similar to <command>dpkg --print-" +"avail</command>; it displays the package records for the named packages." msgstr "" -"<literal>show</literal> führt eine Funktion aus, die <command>dpkg " -"--print-avail</command> ähnlich ist. Es zeigt die Paketdatensätze für " -"die genannten Pakete." +"<literal>show</literal> führt eine Funktion aus, die <command>dpkg --print-" +"avail</command> ähnlich ist. Es zeigt die Paketdatensätze für die genannten " +"Pakete." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:200 @@ -1549,11 +1486,11 @@ msgstr "" "verfügbaren Pakete für das gegebene POSIX-regex-Muster durch, siehe " "<citerefentry><refentrytitle><command>regex</command></refentrytitle> " "<manvolnum>7</manvolnum></citerefentry>. Es durchsucht die Paketnamen und " -"die Beschreibungen nach einem Vorkommen des regulären Ausdrucks und gibt " -"den Paketnamen mit einer kurzen Beschreibung, einschließlich virtueller " +"die Beschreibungen nach einem Vorkommen des regulären Ausdrucks und gibt den " +"Paketnamen mit einer kurzen Beschreibung, einschließlich virtueller " "Paketnamen, aus. Wenn <option>--full</option> angegeben wurde, ist die " -"Ausgabe gleich der, die <literal>show</literal> für jedes Paket erzeugt " -"und wenn <option>--names-only</option> angegeben wurde, wird die lange " +"Ausgabe gleich der, die <literal>show</literal> für jedes Paket erzeugt und " +"wenn <option>--names-only</option> angegeben wurde, wird die lange " "Beschreibung nicht durchsucht, sondern nur der Paketname." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> @@ -1576,9 +1513,9 @@ msgid "" "<literal>depends</literal> shows a listing of each dependency a package has " "and all the possible other packages that can fulfill that dependency." msgstr "" -"<literal>depends</literal> zeigt eine Liste von jeder Abhängigkeit, die " -"ein Paket hat und alle möglichen anderen Pakete, die die Abhängigkeit " -"erfüllen können." +"<literal>depends</literal> zeigt eine Liste von jeder Abhängigkeit, die ein " +"Paket hat und alle möglichen anderen Pakete, die die Abhängigkeit erfüllen " +"können." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:223 @@ -1605,20 +1542,20 @@ 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 " "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." +"extremely quickly. This command is best used with the <option>--generate</" +"option> option." msgstr "" -"Dieser Befehl gibt den Namen jedes Paketes aus, das APT kennt. Das " -"optionale Argument ist ein passendes Präfix, um die Namensliste zu " -"filtern. Die Ausgabe ist geeignet für die Benutzung in der " -"Tabulatorvervollständigung in der Shell. Die Ausgabe wird extrem schnell " -"generiert. Dieser Befehl wird am besten mit der " -"<option>--generate</option>-Option benutzt." +"Dieser Befehl gibt den Namen jedes Paketes aus, das APT kennt. Das optionale " +"Argument ist ein passendes Präfix, um die Namensliste zu filtern. Die " +"Ausgabe ist geeignet für die Benutzung in der Tabulatorvervollständigung in " +"der Shell. Die Ausgabe wird extrem schnell generiert. Dieser Befehl wird am " +"besten mit der <option>--generate</option>-Option benutzt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:234 +#, fuzzy msgid "" -"Note that a package which APT knows of is not nessasarily available to " +"Note that a package which APT knows of is not necessarily available to " "download, installable or installed, e.g. virtual packages are also listed in " "the generated list." msgstr "" @@ -1635,24 +1572,23 @@ msgstr "dotty <replaceable>Paket(e)</replaceable>" #: apt-cache.8.xml:240 msgid "" "<literal>dotty</literal> takes a list of packages on the command line and " -"generates output suitable for use by dotty from the <ulink " -"url=\"http://www.research.att.com/sw/tools/graphviz/\">GraphViz</ulink> " -"package. The result will be a set of nodes and edges representing the " -"relationships between the packages. By default the given packages will trace " -"out all dependent packages; this can produce a very large graph. To limit " -"the output to only the packages listed on the command line, set the " -"<literal>APT::Cache::GivenOnly</literal> option." -msgstr "" -"<literal>dotty</literal> nimmt eine Paketliste auf der Befehlszeile " -"entgegen und generiert eine Ausgabe, die für die Benutzung durch dotty " -"aus dem Paket <ulink " -"url=\"http://www.research.att.com/sw/tools/graphviz/\">GraphViz</ulink> " -"geeignet ist. Das Ergebnis ist eine Zusammenstellung von Knoten und " -"Kanten, die die Beziehung zwischen Paketen darstellen. Standardmäßig " -"werden alle abhängigen Pakete ausfindig gemacht. Dies kann zu einem sehr " -"großen Schaubild führen. Um die Ausgabe auf die Pakete zu beschränken, " -"die auf der Befehlszeile eingegeben wurden, setzen Sie die Option " -"<literal>APT::Cache::GivenOnly</literal>." +"generates output suitable for use by dotty from the <ulink url=\"http://www." +"research.att.com/sw/tools/graphviz/\">GraphViz</ulink> package. The result " +"will be a set of nodes and edges representing the relationships between the " +"packages. By default the given packages will trace out all dependent " +"packages; this can produce a very large graph. To limit the output to only " +"the packages listed on the command line, set the <literal>APT::Cache::" +"GivenOnly</literal> option." +msgstr "" +"<literal>dotty</literal> nimmt eine Paketliste auf der Befehlszeile entgegen " +"und generiert eine Ausgabe, die für die Benutzung durch dotty aus dem Paket " +"<ulink url=\"http://www.research.att.com/sw/tools/graphviz/\">GraphViz</" +"ulink> geeignet ist. Das Ergebnis ist eine Zusammenstellung von Knoten und " +"Kanten, die die Beziehung zwischen Paketen darstellen. Standardmäßig werden " +"alle abhängigen Pakete ausfindig gemacht. Dies kann zu einem sehr großen " +"Schaubild führen. Um die Ausgabe auf die Pakete zu beschränken, die auf der " +"Befehlszeile eingegeben wurden, setzen Sie die Option <literal>APT::Cache::" +"GivenOnly</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:249 @@ -1663,17 +1599,17 @@ msgid "" "lines are pre-depends, green lines are conflicts." msgstr "" "Die resultierenden Knoten haben mehrere Formen. Normale Pakete sind " -"Kästchen, reine Bereitstellungen sind Dreiecke, gemischte " -"Bereitstellungen sind Diamanten, fehlende Pakete sind Sechsecke. Orange " -"Kästchen bedeuten, dass die Rekursion beendet wurde [Blattpakete], blaue " -"Linien sind Pre-depends, grüne Linien sind Konflikte." +"Kästchen, reine Bereitstellungen sind Dreiecke, gemischte Bereitstellungen " +"sind Diamanten, fehlende Pakete sind Sechsecke. Orange Kästchen bedeuten, " +"dass die Rekursion beendet wurde [Blattpakete], blaue Linien sind Pre-" +"depends, grüne Linien sind Konflikte." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:254 msgid "Caution, dotty cannot graph larger sets of packages." msgstr "" -"Vorsicht, dotty kann keine größeren Zusammenstellungen von Paketen " -"grafisch darstellen." +"Vorsicht, dotty kann keine größeren Zusammenstellungen von Paketen grafisch " +"darstellen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:257 @@ -1683,13 +1619,12 @@ msgstr "xvcg <replaceable>Paket(e)</replaceable>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:258 msgid "" -"The same as <literal>dotty</literal>, only for xvcg from the <ulink " -"url=\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG " -"tool</ulink>." +"The same as <literal>dotty</literal>, only for xvcg from the <ulink url=" +"\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG tool</ulink>." msgstr "" -"Das gleiche wie <literal>dotty</literal>, nur für xvcg vom <ulink " -"url=\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">" -"VCG-Werkzeug</ulink>." +"Das gleiche wie <literal>dotty</literal>, nur für xvcg vom <ulink url=" +"\"http://rw4.cs.uni-sb.de/users/sander/html/gsvcg1.html\">VCG-Werkzeug</" +"ulink>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:262 @@ -1704,11 +1639,10 @@ msgid "" "source. Otherwise it prints out detailed information about the priority " "selection of the named package." msgstr "" -"<literal>policy</literal> ist dazu gedacht, bei Fragen der Fehlersuche, " -"die sich auf die Einstellungsdatei beziehen, zu helfen. Ohne Argumente " -"gibt es die Prioritäten von jeder Quelle aus. Ansonsten gibt es " -"umfangreiche Informationen über die Prioritätenauswahl der genannten " -"Pakete aus." +"<literal>policy</literal> ist dazu gedacht, bei Fragen der Fehlersuche, die " +"sich auf die Einstellungsdatei beziehen, zu helfen. Ohne Argumente gibt es " +"die Prioritäten von jeder Quelle aus. Ansonsten gibt es umfangreiche " +"Informationen über die Prioritätenauswahl der genannten Pakete aus." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:269 @@ -1723,19 +1657,21 @@ msgid "" "archive management tool, <literal>madison</literal>. It displays available " "versions of a package in a tabular format. Unlike the original " "<literal>madison</literal>, it can only display information for the " -"architecture for which APT has retrieved package lists " +"architecture for which APT has retrieved package lists (<literal>APT::" +"Architecture</literal>)." +msgstr "" +"<literal>apt-cache</literal>s <literal>madison</literal>-Befehl versucht das " +"Ausgabeformat und eine Untermenge der Funktionalität des Debian-" +"Archivververwaltungswerkzeuges <literal>madison</literal> nachzuahmen. Es " +"zeigt verfügbare Versionen eines Pakets in Tabellenform. Anders als das " +"Original <literal>madison</literal>, kann es nur Informationen für die " +"Architektur anzeigen, für die APT Paketlisten heruntergeladen hat " "(<literal>APT::Architecture</literal>)." -msgstr "" -"<literal>apt-cache</literal>s <literal>madison</literal>-Befehl versucht " -"das Ausgabeformat und eine Untermenge der Funktionalität des " -"Debian-Archivververwaltungswerkzeuges <literal>madison</literal> " -"nachzuahmen. Es zeigt verfügbare Versionen eines Pakets in Tabellenform. " -"Anders als das Original <literal>madison</literal>, kann es nur " -"Informationen für die Architektur anzeigen, für die APT Paketlisten " -"heruntergeladen hat (<literal>APT::Architecture</literal>)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:281 apt-config.8.xml:93 apt-extracttemplates.1.xml:56 apt-ftparchive.1.xml:492 apt-get.8.xml:319 apt-mark.8.xml:89 apt-sortpkgs.1.xml:54 apt.conf.5.xml:436 apt.conf.5.xml:458 +#: apt-cache.8.xml:281 apt-config.8.xml:93 apt-extracttemplates.1.xml:56 +#: apt-ftparchive.1.xml:492 apt-get.8.xml:319 apt-mark.8.xml:89 +#: apt-sortpkgs.1.xml:54 apt.conf.5.xml:441 apt.conf.5.xml:463 msgid "options" msgstr "Optionen" @@ -1753,16 +1689,17 @@ msgstr "<option>--pkg-cache</option>" #: apt-cache.8.xml:286 msgid "" "Select the file to store the package cache. The package cache is the primary " -"cache used by all operations. Configuration Item: " -"<literal>Dir::Cache::pkgcache</literal>." +"cache used by all operations. Configuration Item: <literal>Dir::Cache::" +"pkgcache</literal>." msgstr "" "Wählt die Datei zum Speichern des Paketzwischenspeichers. Der " "Paketzwischenspeicher ist der primäre Zwischenspeicher, der von allen " -"Operationen benutzt wird. Konfigurationselement: " -"<literal>Dir::Cache::pkgcache</literal>." +"Operationen benutzt wird. Konfigurationselement: <literal>Dir::Cache::" +"pkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt-cache.8.xml:291 apt-ftparchive.1.xml:535 apt-get.8.xml:376 apt-sortpkgs.1.xml:58 +#: apt-cache.8.xml:291 apt-ftparchive.1.xml:535 apt-get.8.xml:376 +#: apt-sortpkgs.1.xml:58 msgid "<option>-s</option>" msgstr "<option>-s</option>" @@ -1780,13 +1717,13 @@ msgid "" "cache is used to avoid reparsing all of the package files. Configuration " "Item: <literal>Dir::Cache::srcpkgcache</literal>." msgstr "" -"Wählt die Datei zum Speichern des Quellenzwischenspeichers. Die Quelle " -"wird nur von <literal>gencaches</literal> benutzt und sie speichert eine " -"ausgewertete Version der Paketinformationen von entfernt liegenden " -"Quellen. Wenn der Paketzwischenspeicher gebildet wird, wird der " +"Wählt die Datei zum Speichern des Quellenzwischenspeichers. Die Quelle wird " +"nur von <literal>gencaches</literal> benutzt und sie speichert eine " +"ausgewertete Version der Paketinformationen von entfernt liegenden Quellen. " +"Wenn der Paketzwischenspeicher gebildet wird, wird der " "Quellenzwischenspeicher benutzt, um ein erneutes Auswerten aller " -"Paketdateien zu vermeiden. Konfigurationselement: " -"<literal>Dir::Cache::srcpkgcache</literal>." +"Paketdateien zu vermeiden. Konfigurationselement: <literal>Dir::Cache::" +"srcpkgcache</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:299 apt-ftparchive.1.xml:509 apt-get.8.xml:366 @@ -1807,10 +1744,10 @@ msgid "" "configuration file. Configuration Item: <literal>quiet</literal>." msgstr "" "Still; erzeugt eine Ausgabe, die für Protokollierung geeignet ist und " -"Fortschrittsanzeiger weglässt. Mehr »q«s unterdrücken mehr Ausgaben, bis " -"zu einem Maximum von 2. Sie können außerdem <option>-q=#</option> " -"benutzen, um die Stillestufe zu setzen, was die Konfigurationsdatei " -"überschreibt. Konfigurationselement: <literal>quiet</literal>." +"Fortschrittsanzeiger weglässt. Mehr »q«s unterdrücken mehr Ausgaben, bis zu " +"einem Maximum von 2. Sie können außerdem <option>-q=#</option> benutzen, um " +"die Stillestufe zu setzen, was die Konfigurationsdatei überschreibt. " +"Konfigurationselement: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:306 @@ -1829,10 +1766,9 @@ msgid "" "only Depends and Pre-Depends relations to be printed. Configuration Item: " "<literal>APT::Cache::Important</literal>." msgstr "" -"Nur wichtige Abhängigkeiten ausgeben. Zur Benutzung mit unmet und " -"depends. Veranlasst, dass nur Depends- und Pre-Depends-Beziehungen " -"ausgegeben werden. Konfigurationselement: " -"<literal>APT::Cache::Important</literal>." +"Nur wichtige Abhängigkeiten ausgeben. Zur Benutzung mit unmet und depends. " +"Veranlasst, dass nur Depends- und Pre-Depends-Beziehungen ausgegeben werden. " +"Konfigurationselement: <literal>APT::Cache::Important</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:312 apt-cdrom.8.xml:121 apt-get.8.xml:333 @@ -1867,19 +1803,18 @@ msgstr "<option>--all-versions</option>" #: apt-cache.8.xml:318 msgid "" "Print full records for all available versions. This is the default; to turn " -"it off, use <option>--no-all-versions</option>. If " -"<option>--no-all-versions</option> is specified, only the candidate version " -"will displayed (the one which would be selected for installation). This " -"option is only applicable to the <literal>show</literal> command. " -"Configuration Item: <literal>APT::Cache::AllVersions</literal>." +"it off, use <option>--no-all-versions</option>. If <option>--no-all-" +"versions</option> is specified, only the candidate version will displayed " +"(the one which would be selected for installation). This option is only " +"applicable to the <literal>show</literal> command. Configuration Item: " +"<literal>APT::Cache::AllVersions</literal>." msgstr "" -"Gibt die vollständigen Datensätze für alle verfügbaren Versionen aus. " -"Dies ist die Vorgabe. Um sie auszuschalten, benutzen Sie " -"<option>--no-all-versions</option>. Wenn " -"<option>--no-all-versions</option> angegeben ist, wird nur die " -"Anwärterversion angezeigt (die, die zur Installation ausgewählt würde). " -"Diese Option ist nur für den <literal>show</literal>-Befehl anwendbar. " -"Konfigurationselement: <literal>APT::Cache::AllVersions</literal>." +"Gibt die vollständigen Datensätze für alle verfügbaren Versionen aus. Dies " +"ist die Vorgabe. Um sie auszuschalten, benutzen Sie <option>--no-all-" +"versions</option>. Wenn <option>--no-all-versions</option> angegeben ist, " +"wird nur die Anwärterversion angezeigt (die, die zur Installation ausgewählt " +"würde). Diese Option ist nur für den <literal>show</literal>-Befehl " +"anwendbar. Konfigurationselement: <literal>APT::Cache::AllVersions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:326 @@ -1895,9 +1830,8 @@ msgstr "<option>--generate</option>" #: apt-cache.8.xml:327 msgid "" "Perform automatic package cache regeneration, rather than use the cache as " -"it is. This is the default; to turn it off, use " -"<option>--no-generate</option>. Configuration Item: " -"<literal>APT::Cache::Generate</literal>." +"it is. This is the default; to turn it off, use <option>--no-generate</" +"option>. Configuration Item: <literal>APT::Cache::Generate</literal>." msgstr "" "Führt das Neuerstellen des Paketzwischenspeichers aus, anstatt den " "Zwischenspeicher so zu benutzen, wie er ist. Das ist die Vorgabe. Um sie " @@ -1932,8 +1866,8 @@ msgstr "<option>--all-names</option>" #: apt-cache.8.xml:338 msgid "" "Make <literal>pkgnames</literal> print all names, including virtual packages " -"and missing dependencies. Configuration Item: " -"<literal>APT::Cache::AllNames</literal>." +"and missing dependencies. Configuration Item: <literal>APT::Cache::" +"AllNames</literal>." msgstr "" "Lässt <literal>pkgnames</literal> alle Namen, einschließlich virtueller " "Pakete und fehlender Abhängigkeiten, ausgeben. Konfigurationselement: " @@ -1951,8 +1885,8 @@ msgid "" "that all packages mentioned are printed once. Configuration Item: " "<literal>APT::Cache::RecurseDepends</literal>." msgstr "" -"Macht <literal>depends</literal> und <literal>rdepends</literal> " -"rekursiv, so dass alle erwähnten Pakete einmal ausgegeben werden. " +"Macht <literal>depends</literal> und <literal>rdepends</literal> rekursiv, " +"so dass alle erwähnten Pakete einmal ausgegeben werden. " "Konfigurationselement: <literal>APT::Cache::RecurseDepends</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -1963,21 +1897,24 @@ msgstr "<option>--installed</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:351 msgid "" -"Limit the output of <literal>depends</literal> and " -"<literal>rdepends</literal> to packages which are currently installed. " -"Configuration Item: <literal>APT::Cache::Installed</literal>." +"Limit the output of <literal>depends</literal> and <literal>rdepends</" +"literal> to packages which are currently installed. Configuration Item: " +"<literal>APT::Cache::Installed</literal>." msgstr "" -"Begrenzt die Ausgabe von <literal>depends</literal> und " -"<literal>rdepends</literal> auf Pakete, die aktuell installiert sind. " -"Konfigurationselement: <literal>APT::Cache::Installed</literal>." +"Begrenzt die Ausgabe von <literal>depends</literal> und <literal>rdepends</" +"literal> auf Pakete, die aktuell installiert sind. Konfigurationselement: " +"<literal>APT::Cache::Installed</literal>." #. type: Content of: <refentry><refsect1><variablelist> -#: apt-cache.8.xml:356 apt-cdrom.8.xml:150 apt-config.8.xml:98 apt-extracttemplates.1.xml:67 apt-ftparchive.1.xml:547 apt-get.8.xml:554 apt-sortpkgs.1.xml:64 +#: apt-cache.8.xml:356 apt-cdrom.8.xml:150 apt-config.8.xml:98 +#: apt-extracttemplates.1.xml:67 apt-ftparchive.1.xml:547 apt-get.8.xml:554 +#: apt-sortpkgs.1.xml:64 msgid "&apt-commonoptions;" msgstr "&apt-commonoptions;" #. type: Content of: <refentry><refsect1><title> -#: apt-cache.8.xml:361 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 apt.conf.5.xml:968 apt_preferences.5.xml:615 +#: apt-cache.8.xml:361 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 +#: apt.conf.5.xml:973 apt_preferences.5.xml:615 msgid "Files" msgstr "Dateien" @@ -1987,7 +1924,11 @@ msgid "&file-sourceslist; &file-statelists;" msgstr "&file-sourceslist; &file-statelists;" #. type: Content of: <refentry><refsect1><title> -#: apt-cache.8.xml:368 apt-cdrom.8.xml:155 apt-config.8.xml:103 apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569 apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181 apt-sortpkgs.1.xml:69 apt.conf.5.xml:974 apt_preferences.5.xml:622 sources.list.5.xml:221 +#: apt-cache.8.xml:368 apt-cdrom.8.xml:155 apt-config.8.xml:103 +#: apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569 +#: apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181 +#: apt-sortpkgs.1.xml:69 apt.conf.5.xml:979 apt_preferences.5.xml:622 +#: sources.list.5.xml:221 msgid "See Also" msgstr "Siehe auch" @@ -1997,7 +1938,9 @@ msgid "&apt-conf;, &sources-list;, &apt-get;" msgstr "&apt-conf;, &sources-list;, &apt-get;" #. type: Content of: <refentry><refsect1><title> -#: apt-cache.8.xml:373 apt-cdrom.8.xml:160 apt-config.8.xml:108 apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:567 apt-get.8.xml:575 apt-mark.8.xml:137 apt-sortpkgs.1.xml:73 +#: apt-cache.8.xml:373 apt-cdrom.8.xml:160 apt-config.8.xml:108 +#: apt-extracttemplates.1.xml:78 apt-ftparchive.1.xml:567 apt-get.8.xml:575 +#: apt-mark.8.xml:137 apt-sortpkgs.1.xml:73 msgid "Diagnostics" msgstr "Diagnose" @@ -2007,8 +1950,8 @@ msgid "" "<command>apt-cache</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" -"<command>apt-cache</command> gibt bei normalen Operationen 0 zurück, " -"dezimal 100 bei Fehlern." +"<command>apt-cache</command> gibt bei normalen Operationen 0 zurück, dezimal " +"100 bei Fehlern." #. type: Content of: <refentry><refentryinfo> #: apt-cdrom.8.xml:13 @@ -2016,8 +1959,8 @@ msgid "" "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>14 " "February 2004</date>" msgstr "" -"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>" -"14. Februar 2004</date>" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; " +"<date>14. Februar 2004</date>" #. type: Content of: <refentry><refnamediv><refname> #: apt-cdrom.8.xml:21 apt-cdrom.8.xml:28 @@ -2039,24 +1982,23 @@ msgid "" "<arg>add</arg> <arg>ident</arg> </group>" msgstr "" "<command>apt-cdrom</command> <arg><option>-hvrmfan</option></arg> " -"<arg><option>-d=<replaceable>CDROM-Einhängepunkt</replaceable></option>" -"</arg><arg><option>-o=<replaceable>Konfigurationszeichenkette" -"</replaceable></option></arg><arg><option>-c=<replaceable>Datei" -"</replaceable></option></arg><group><arg>hinzufügen</arg>" -"<arg>Identifikation</arg></group>" +"<arg><option>-d=<replaceable>CDROM-Einhängepunkt</replaceable></option></" +"arg><arg><option>-o=<replaceable>Konfigurationszeichenkette</replaceable></" +"option></arg><arg><option>-c=<replaceable>Datei</replaceable></option></" +"arg><group><arg>hinzufügen</arg><arg>Identifikation</arg></group>" #. type: Content of: <refentry><refsect1><para> #: apt-cdrom.8.xml:48 msgid "" "<command>apt-cdrom</command> is used to add a new CDROM to APTs list of " "available sources. <command>apt-cdrom</command> takes care of determining " -"the structure of the disc as well as correcting for several possible " -"mis-burns and verifying the index files." +"the structure of the disc as well as correcting for several possible mis-" +"burns and verifying the index files." msgstr "" -"<command>apt-cdrom</command> wird benutzt, um eine neue CDROM zu APTs " -"Liste der verfügbaren Quellen hinzuzufügen. <command>apt-cdrom</command> " -"kümmert sich um die festgestellte Struktur des Mediums, sowie die " -"Korrektur für mehrere mögliche Fehlbrennungen und prüft die Indexdateien." +"<command>apt-cdrom</command> wird benutzt, um eine neue CDROM zu APTs Liste " +"der verfügbaren Quellen hinzuzufügen. <command>apt-cdrom</command> kümmert " +"sich um die festgestellte Struktur des Mediums, sowie die Korrektur für " +"mehrere mögliche Fehlbrennungen und prüft die Indexdateien." #. type: Content of: <refentry><refsect1><para> #: apt-cdrom.8.xml:55 @@ -2065,10 +2007,10 @@ msgid "" "system, it cannot be done by hand. Furthermore each disk in a multi-cd set " "must be inserted and scanned separately to account for possible mis-burns." msgstr "" -"Es ist notwendig, <command>apt-cdrom</command> zu benutzen, um CDs zum " -"APT-System hinzuzufügen. Dies kann nicht manuell erfolgen. Weiterhin muss " -"jedes Medium in einer Zusammenstellung aus mehreren CDs einzeln eingelegt " -"und gescannt werden, um auf mögliche Fehlbrennungen zu testen." +"Es ist notwendig, <command>apt-cdrom</command> zu benutzen, um CDs zum APT-" +"System hinzuzufügen. Dies kann nicht manuell erfolgen. Weiterhin muss jedes " +"Medium in einer Zusammenstellung aus mehreren CDs einzeln eingelegt und " +"gescannt werden, um auf mögliche Fehlbrennungen zu testen." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: apt-cdrom.8.xml:65 @@ -2085,18 +2027,17 @@ msgid "" "title." msgstr "" "<literal>add</literal> wird benutzt, um ein neues Medium zur Quellenliste " -"hinzuzufügen. Es wird das CDROM-Gerät aushängen, verlangen, dass ein " -"Medium eingelegt wird und dann mit den Einlesen und Kopieren der " -"Indexdateien fortfahren. Wenn das Medium kein angemessenes " -"<filename>disk</filename>-Verzeichnis hat, werden Sie nach einem " -"aussagekräftigen Titel gefragt." +"hinzuzufügen. Es wird das CDROM-Gerät aushängen, verlangen, dass ein Medium " +"eingelegt wird und dann mit den Einlesen und Kopieren der Indexdateien " +"fortfahren. Wenn das Medium kein angemessenes <filename>disk</filename>-" +"Verzeichnis hat, werden Sie nach einem aussagekräftigen Titel gefragt." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:74 msgid "" "APT uses a CDROM ID to track which disc is currently in the drive and " -"maintains a database of these IDs in " -"<filename>&statedir;/cdroms.list</filename>" +"maintains a database of these IDs in <filename>&statedir;/cdroms.list</" +"filename>" msgstr "" "APT benutzt eine CDROM-ID, um nachzuverfolgen, welches Medium gerade im " "Laufwerk ist und verwaltet eine Datenbank mit diesen IDs in " @@ -2120,8 +2061,8 @@ msgstr "" #: apt-cdrom.8.xml:61 msgid "" "Unless the <option>-h</option>, or <option>--help</option> option is given " -"one of the commands below must be present. <placeholder " -"type=\"variablelist\" id=\"0\"/>" +"one of the commands below must be present. <placeholder type=\"variablelist" +"\" id=\"0\"/>" msgstr "" "Außer wenn die Option <option>-h</option> oder <option>--help</option> " "angegeben wurde, muss einer der beiden Befehle unterhalb gegeben sein. " @@ -2151,8 +2092,8 @@ msgid "" msgstr "" "Einhängepunkt. Gibt den Ort an, an dem die CD-ROM eingehängt wird. Dieser " "Einhängepunkt muss in <filename>/etc/fstab</filename> eingetragen und " -"angemessen konfiguriert sein. Konfigurationselement: " -"<literal>Acquire::cdrom::mount</literal>." +"angemessen konfiguriert sein. Konfigurationselement: <literal>Acquire::" +"cdrom::mount</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cdrom.8.xml:104 @@ -2167,14 +2108,14 @@ msgstr "<option>--rename</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cdrom.8.xml:105 msgid "" -"Rename a disc; change the label of a disk or override the disks given " -"label. This option will cause <command>apt-cdrom</command> to prompt for a " -"new label. Configuration Item: <literal>APT::CDROM::Rename</literal>." +"Rename a disc; change the label of a disk or override the disks given label. " +"This option will cause <command>apt-cdrom</command> to prompt for a new " +"label. Configuration Item: <literal>APT::CDROM::Rename</literal>." msgstr "" -"Ein Medium umbenennen. Ändert den Namen eines Mediums oder überschreibt " -"den Namen, der dem Medium gegeben wurde. Diese Option wird " -"<command>apt-cdrom</command> veranlassen, nach einem neuen Namen zu " -"fragen. Konfigurationselement: <literal>APT::CDROM::Rename</literal>." +"Ein Medium umbenennen. Ändert den Namen eines Mediums oder überschreibt den " +"Namen, der dem Medium gegeben wurde. Diese Option wird <command>apt-cdrom</" +"command> veranlassen, nach einem neuen Namen zu fragen. " +"Konfigurationselement: <literal>APT::CDROM::Rename</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cdrom.8.xml:113 apt-get.8.xml:347 @@ -2190,12 +2131,12 @@ msgstr "<option>--no-mount</option>" #: apt-cdrom.8.xml:114 msgid "" "No mounting; prevent <command>apt-cdrom</command> from mounting and " -"unmounting the mount point. Configuration Item: " -"<literal>APT::CDROM::NoMount</literal>." +"unmounting the mount point. Configuration Item: <literal>APT::CDROM::" +"NoMount</literal>." msgstr "" -"Kein Einhängen. Hindert <command>apt-cdrom</command> am Ein- und " -"Aushängen des Einhängepunkts. Konfigurationselement: " -"<literal>APT::CDROM::NoMount</literal>." +"Kein Einhängen. Hindert <command>apt-cdrom</command> am Ein- und Aushängen " +"des Einhängepunkts. Konfigurationselement: <literal>APT::CDROM::NoMount</" +"literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cdrom.8.xml:121 @@ -2211,10 +2152,9 @@ msgid "" "Item: <literal>APT::CDROM::Fast</literal>." msgstr "" "Schnelle Kopie. Unterstellt, dass die Paketdateien gültig sind und prüft " -"nicht jedes Paket. Diese Option sollte nur benutzt werden, wenn " -"<command>apt-cdrom</command> vorher für dieses Medium ausgeführt wurde und " -"keine Fehler festgestellt hat. Konfigurationselement: " -"<literal>APT::CDROM::Fast</literal>." +"nicht jedes Paket. Diese Option sollte nur benutzt werden, wenn <command>apt-" +"cdrom</command> vorher für dieses Medium ausgeführt wurde und keine Fehler " +"festgestellt hat. Konfigurationselement: <literal>APT::CDROM::Fast</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cdrom.8.xml:131 @@ -2228,10 +2168,9 @@ msgid "" "1.1/1.2 discs that have Package files in strange places. It takes much " "longer to scan the CD but will pick them all up." msgstr "" -"Gründliche Paketdurchsuchung. Diese Option könnte für einige alte " -"Debian-1.1/1.2-Medien nötig sein, die Paketdateien an seltsamen Orten " -"haben. Dies verlängert das Durchsuchen des Mediums deutlich, nimmt aber " -"alle auf." +"Gründliche Paketdurchsuchung. Diese Option könnte für einige alte Debian-" +"1.1/1.2-Medien nötig sein, die Paketdateien an seltsamen Orten haben. Dies " +"verlängert das Durchsuchen des Mediums deutlich, nimmt aber alle auf." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cdrom.8.xml:140 apt-get.8.xml:378 @@ -2270,8 +2209,8 @@ msgid "" "<command>apt-cdrom</command> returns zero on normal operation, decimal 100 " "on error." msgstr "" -"<command>apt-cdrom</command> gibt bei normalen Operationen 0 zurück, " -"dezimal 100 bei Fehlern." +"<command>apt-cdrom</command> gibt bei normalen Operationen 0 zurück, dezimal " +"100 bei Fehlern." #. type: Content of: <refentry><refnamediv><refname> #: apt-config.8.xml:22 apt-config.8.xml:29 @@ -2286,15 +2225,15 @@ msgstr "APT-Konfigurationsabfrageprogramm" #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-config.8.xml:36 msgid "" -"<command>apt-config</command> <arg><option>-hv</option></arg> " -"<arg><option>-o=<replaceable>config string</replaceable></option></arg> " -"<arg><option>-c=<replaceable>file</replaceable></option></arg> <group " -"choice=\"req\"> <arg>shell</arg> <arg>dump</arg> </group>" +"<command>apt-config</command> <arg><option>-hv</option></arg> <arg><option>-" +"o=<replaceable>config string</replaceable></option></arg> <arg><option>-" +"c=<replaceable>file</replaceable></option></arg> <group choice=\"req\"> " +"<arg>shell</arg> <arg>dump</arg> </group>" msgstr "" -"<command>apt-config</command><arg><option>-hv</option></arg><arg>" -"<option>-o=<replaceable>Konfigurationszeichenkette</replaceable></option>" -"</arg><arg><option>-c=<replaceable>Datei</replaceable></option></arg>" -"<group choice=\"req\"> <arg>shell</arg> <arg>Abbild</arg> </group>" +"<command>apt-config</command><arg><option>-hv</option></arg><arg><option>-" +"o=<replaceable>Konfigurationszeichenkette</replaceable></option></" +"arg><arg><option>-c=<replaceable>Datei</replaceable></option></arg><group " +"choice=\"req\"> <arg>shell</arg> <arg>Abbild</arg> </group>" #. type: Content of: <refentry><refsect1><para> #: apt-config.8.xml:48 @@ -2306,9 +2245,9 @@ msgid "" msgstr "" "<command>apt-config</command> ist ein internes Programm, das von vielen " "Teilen des APT-Pakets benutzt wird, um durchgängige Konfigurierbarkeit " -"bereitzustellen. Es greift auf die Hauptkonfigurationsdatei " -"<filename>/etc/apt/apt.conf</filename> auf eine Art zu, die leicht für " -"geskriptete Anwendungen zu benutzen ist." +"bereitzustellen. Es greift auf die Hauptkonfigurationsdatei <filename>/etc/" +"apt/apt.conf</filename> auf eine Art zu, die leicht für geskriptete " +"Anwendungen zu benutzen ist." #. type: Content of: <refentry><refsect1><para> #: apt-config.8.xml:53 apt-ftparchive.1.xml:71 @@ -2327,18 +2266,17 @@ msgstr "shell" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:60 msgid "" -"shell is used to access the configuration information from a shell " -"script. It is given pairs of arguments, the first being a shell variable and " -"the second the configuration value to query. As output it lists a series of " +"shell is used to access the configuration information from a shell script. " +"It is given pairs of arguments, the first being a shell variable and the " +"second the configuration value to query. As output it lists a series of " "shell assignments commands for each present value. In a shell script it " "should be used like:" msgstr "" -"shell wird benutzt, um aus einem Shellskript auf " -"Konfigurationsinformationen zuzugreifen. Es wird ein Paar aus Argumenten " -"angegeben – das erste als Shell-Variable und das zweite als " -"Konfigurationswert zum Abfragen. Als Ausgabe listet es eine Serie von " -"Shell-Zuweisungsbefehlen für jeden vorhandenen Wert auf. In einen " -"Shellskript sollte es wie folgt benutzt werden:" +"shell wird benutzt, um aus einem Shellskript auf Konfigurationsinformationen " +"zuzugreifen. Es wird ein Paar aus Argumenten angegeben – das erste als Shell-" +"Variable und das zweite als Konfigurationswert zum Abfragen. Als Ausgabe " +"listet es eine Serie von Shell-Zuweisungsbefehlen für jeden vorhandenen Wert " +"auf. In einen Shellskript sollte es wie folgt benutzt werden:" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><informalexample><programlisting> #: apt-config.8.xml:68 @@ -2355,11 +2293,11 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:73 msgid "" -"This will set the shell environment variable $OPTS to the value of " -"MyApp::options with a default of <option>-f</option>." +"This will set the shell environment variable $OPTS to the value of MyApp::" +"options with a default of <option>-f</option>." msgstr "" -"Dies wird die Shell-Umgebungsvariable $OPT auf den Wert von " -"MyApp::options mit einer Vorgabe von <option>-f</option> setzen." +"Dies wird die Shell-Umgebungsvariable $OPT auf den Wert von MyApp::options " +"mit einer Vorgabe von <option>-f</option> setzen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:77 @@ -2368,10 +2306,10 @@ msgid "" "names, d returns directories, b returns true or false and i returns an " "integer. Each of the returns is normalized and verified internally." msgstr "" -"An das Konfigurationselement kann /[fdbi] angehängt werden. " -"f gibt Dateinamen zurück, d gibt Verzeichnisse zurück, b gibt true oder " -"false zurück und i gibt eine Ganzzahl zurück. Jede Rückgabe ist normiert " -"und intern geprüft." +"An das Konfigurationselement kann /[fdbi] angehängt werden. f gibt " +"Dateinamen zurück, d gibt Verzeichnisse zurück, b gibt true oder false " +"zurück und i gibt eine Ganzzahl zurück. Jede Rückgabe ist normiert und " +"intern geprüft." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-config.8.xml:86 @@ -2379,7 +2317,8 @@ msgid "Just show the contents of the configuration space." msgstr "Nur der Inhalt des Konfigurationsbereichs wird angezeigt." #. type: Content of: <refentry><refsect1><para> -#: apt-config.8.xml:104 apt-extracttemplates.1.xml:75 apt-ftparchive.1.xml:564 apt-sortpkgs.1.xml:70 +#: apt-config.8.xml:104 apt-extracttemplates.1.xml:75 apt-ftparchive.1.xml:564 +#: apt-sortpkgs.1.xml:70 msgid "&apt-conf;" msgstr "&apt-conf;" @@ -2406,21 +2345,21 @@ msgstr "1" #: apt-extracttemplates.1.xml:30 msgid "Utility to extract DebConf config and templates from Debian packages" msgstr "" -"Hilfsprogramm zum Extrahieren der DebConf-Konfiguration und Schablonen " -"von Debian-Paketen" +"Hilfsprogramm zum Extrahieren der DebConf-Konfiguration und Schablonen von " +"Debian-Paketen" #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-extracttemplates.1.xml:36 msgid "" "<command>apt-extracttemplates</command> <arg><option>-hv</option></arg> " -"<arg><option>-t=<replaceable>temporary " -"directory</replaceable></option></arg> <arg choice=\"plain\" " -"rep=\"repeat\"><replaceable>file</replaceable></arg>" +"<arg><option>-t=<replaceable>temporary directory</replaceable></option></" +"arg> <arg choice=\"plain\" rep=\"repeat\"><replaceable>file</replaceable></" +"arg>" msgstr "" "<command>apt-extracttemplates</command> <arg><option>-hv</option></arg> " -"<arg><option>-t=<replaceable>temporäres " -"Verzeichnis</replaceable></option></arg> <arg choice=\"plain\" " -"rep=\"repeat\"><replaceable>Datei</replaceable></arg>" +"<arg><option>-t=<replaceable>temporäres Verzeichnis</replaceable></option></" +"arg> <arg choice=\"plain\" rep=\"repeat\"><replaceable>Datei</replaceable></" +"arg>" #. type: Content of: <refentry><refsect1><para> #: apt-extracttemplates.1.xml:44 @@ -2431,11 +2370,11 @@ msgid "" "config scripts and templates, one line of output will be generated in the " "format:" msgstr "" -"<command>apt-extracttemplates</command> nimmt als Eingabe ein oder " -"mehrere Debian-Paketdateien entgegen und schreibt alle verbundenen " -"Konfigurationsskripte und Schablonendateien (in ein temporäres " -"Verzeichnis) heraus. Für jedes übergebene Paket das Konfigurationsskripte " -"und Schablonendateien enthält, wird eine Ausgabezeile in folgendem Format " +"<command>apt-extracttemplates</command> nimmt als Eingabe ein oder mehrere " +"Debian-Paketdateien entgegen und schreibt alle verbundenen " +"Konfigurationsskripte und Schablonendateien (in ein temporäres Verzeichnis) " +"heraus. Für jedes übergebene Paket das Konfigurationsskripte und " +"Schablonendateien enthält, wird eine Ausgabezeile in folgendem Format " "generiert:" #. type: Content of: <refentry><refsect1><para> @@ -2447,16 +2386,15 @@ msgstr "Paket Version Schablonendatei Konfigurationsskript" #: apt-extracttemplates.1.xml:50 msgid "" "template-file and config-script are written to the temporary directory " -"specified by the -t or --tempdir " -"(<literal>APT::ExtractTemplates::TempDir</literal>) directory, with " -"filenames of the form <filename>package.template.XXXX</filename> and " -"<filename>package.config.XXXX</filename>" +"specified by the -t or --tempdir (<literal>APT::ExtractTemplates::TempDir</" +"literal>) directory, with filenames of the form <filename>package.template." +"XXXX</filename> and <filename>package.config.XXXX</filename>" msgstr "" -"Schablonendatei und Konfigurationsskript werden in das temporäre " -"Verzeichnis geschrieben, das durch -t oder --tempdir " -"(<literal>APT::ExtractTemplates::TempDir</literal>) Verzeichnis mit " -"Dateinamen der Form <filename>package.template.XXXX</filename> und " -"<filename>package.config.XXXX</filename> angegeben wurde" +"Schablonendatei und Konfigurationsskript werden in das temporäre Verzeichnis " +"geschrieben, das durch -t oder --tempdir (<literal>APT::ExtractTemplates::" +"TempDir</literal>) Verzeichnis mit Dateinamen der Form <filename>package." +"template.XXXX</filename> und <filename>package.config.XXXX</filename> " +"angegeben wurde" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-extracttemplates.1.xml:60 apt-get.8.xml:488 @@ -2472,8 +2410,8 @@ msgstr "<option>--tempdir</option>" #: apt-extracttemplates.1.xml:62 msgid "" "Temporary directory in which to write extracted debconf template files and " -"config scripts Configuration Item: " -"<literal>APT::ExtractTemplates::TempDir</literal>" +"config scripts Configuration Item: <literal>APT::ExtractTemplates::TempDir</" +"literal>" msgstr "" "Temporäres Verzeichnis, in das die extrahierten DebConf-Schablonendateien " "und Konfigurationsdateien geschrieben werden. Konfigurationselement: " @@ -2521,27 +2459,23 @@ msgid "" 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>--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\" rep=\"repeat\"><replaceable>Abschnitt</replaceable>" -"</arg></arg> <arg>clean " -"<arg choice=\"plain\"><replaceable>Konfigurationsdatei</replaceable>" -"</arg></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\" " +"rep=\"repeat\"><replaceable>Abschnitt</replaceable></arg></arg> <arg>clean " +"<arg choice=\"plain\"><replaceable>Konfigurationsdatei</replaceable></arg></" +"arg></group>" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:56 @@ -2560,15 +2494,15 @@ msgstr "" #: apt-ftparchive.1.xml:60 msgid "" "<command>apt-ftparchive</command> is a superset of the &dpkg-scanpackages; " -"program, incorporating its entire functionality via the " -"<literal>packages</literal> command. It also contains a contents file " -"generator, <literal>contents</literal>, and an elaborate means to 'script' " -"the generation process for a complete archive." +"program, incorporating its entire functionality via the <literal>packages</" +"literal> command. It also contains a contents file generator, " +"<literal>contents</literal>, and an elaborate means to 'script' the " +"generation process for a complete archive." msgstr "" -"<command>apt-ftparchive</command> ist eine Obermenge des " -"&dpkg-scanpackages;-Programms, das dessen ganze Funktionalität über den " -"<literal>packages</literal>-Befehl enthält ist ein durchdachtes Mittel " -"den Generierungsprozess für ein komplettes Archiv zu »skripten«." +"<command>apt-ftparchive</command> ist eine Obermenge des &dpkg-scanpackages;-" +"Programms, das dessen ganze Funktionalität über den <literal>packages</" +"literal>-Befehl enthält ist ein durchdachtes Mittel den Generierungsprozess " +"für ein komplettes Archiv zu »skripten«." #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:66 @@ -2580,11 +2514,11 @@ msgid "" "output files." msgstr "" "Intern kann <command>apt-ftparchive</command> von Programmdatenbänken " -"Gebrauch machen, um die Inhalte einer .deb-Datei zwischenzuspeichern " -"und es verlässt sich nicht auf irgendwelche externen Programme, " -"abgesehen von &gzip;. Wenn eine vollständige Generierung erfolgt, werden " -"automatisch Dateiänderungsprüfungen durchgeführt und die gewünschten " -"gepackten Ausgabedateien erzeugt." +"Gebrauch machen, um die Inhalte einer .deb-Datei zwischenzuspeichern und es " +"verlässt sich nicht auf irgendwelche externen Programme, abgesehen von " +"&gzip;. Wenn eine vollständige Generierung erfolgt, werden automatisch " +"Dateiänderungsprüfungen durchgeführt und die gewünschten gepackten " +"Ausgabedateien erzeugt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:75 @@ -2599,17 +2533,18 @@ msgid "" "emitting a package record to stdout for each. This command is approximately " "equivalent to &dpkg-scanpackages;." msgstr "" -"Der packages-Befehl generiert eine Paketdatei aus einem Verzeichnisbaum. " -"Er nimmt ein vorgegebenes Verzeichnis und durchsucht es rekursiv nach " -".deb-Dateien, wobei es für jede einen Paketdatensatz auf stdout ausgibt." -"Dieser Befehl entspricht etwa &dpkg-scanpackages;." +"Der packages-Befehl generiert eine Paketdatei aus einem Verzeichnisbaum. Er " +"nimmt ein vorgegebenes Verzeichnis und durchsucht es rekursiv nach .deb-" +"Dateien, wobei es für jede einen Paketdatensatz auf stdout ausgibt.Dieser " +"Befehl entspricht etwa &dpkg-scanpackages;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:82 apt-ftparchive.1.xml:106 -msgid "The option <option>--db</option> can be used to specify a binary caching DB." +msgid "" +"The option <option>--db</option> can be used to specify a binary caching DB." msgstr "" -"Die Option <option>--db</option> kann benutzt werden, um eine Datenbank " -"zum Zwischenspeichern von Programmen anzugeben." +"Die Option <option>--db</option> kann benutzt werden, um eine Datenbank zum " +"Zwischenspeichern von Programmen anzugeben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:85 @@ -2624,11 +2559,10 @@ msgid "" "for .dsc files, emitting a source record to stdout for each. This command is " "approximately equivalent to &dpkg-scansources;." msgstr "" -"Der <literal>sources</literal>-Befehl generiert eine Quellenindexdatei " -"aus einem Verzeichnisbaum. Er nimmt ein vorgegebenes Verzeichnis und " -"durchsucht es rekursiv nach .dsc-Dateien, wobei es für jede einen " -"Quelldatensatz auf stdout ausgibt. Dieser Befehl entspricht etwa " -"&dpkg-scansources;." +"Der <literal>sources</literal>-Befehl generiert eine Quellenindexdatei aus " +"einem Verzeichnisbaum. Er nimmt ein vorgegebenes Verzeichnis und durchsucht " +"es rekursiv nach .dsc-Dateien, wobei es für jede einen Quelldatensatz auf " +"stdout ausgibt. Dieser Befehl entspricht etwa &dpkg-scansources;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:92 @@ -2637,10 +2571,9 @@ msgid "" "for with an extension of .src. The --source-override option can be used to " "change the source override file that will be used." msgstr "" -"Wenn eine Override-Datei angegeben ist, wird nach einer " -"Quellen-Override-Datei mit einer .src-Dateiendung gesucht. Die Option " -"--source-override kann benutzt werden, um die Quellen-Override-Datei, die " -"benutzt wird, zu ändern." +"Wenn eine Override-Datei angegeben ist, wird nach einer Quellen-Override-" +"Datei mit einer .src-Dateiendung gesucht. Die Option --source-override kann " +"benutzt werden, um die Quellen-Override-Datei, die benutzt wird, zu ändern." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:97 @@ -2651,19 +2584,19 @@ msgstr "contents" #: apt-ftparchive.1.xml:99 msgid "" "The <literal>contents</literal> command generates a contents file from a " -"directory tree. It takes the given directory and recursively searches it for " -".deb files, and reads the file list from each file. It then sorts and writes " -"to stdout the list of files matched to packages. Directories are not written " -"to the output. If multiple packages own the same file then each package is " -"separated by a comma in the output." +"directory tree. It takes the given directory and recursively searches it " +"for .deb files, and reads the file list from each file. It then sorts and " +"writes to stdout the list of files matched to packages. Directories are not " +"written to the output. If multiple packages own the same file then each " +"package is separated by a comma in the output." msgstr "" -"Der <literal>contents</literal>-Befehl generiert eine Inhaltsdatei aus " -"einem Verzeichnisbaum. Er nimmt ein vorgegebenes Verzeichnis und " -"durchsucht es rekursiv nach .deb-Dateien und liest die Dateiliste von " -"jeder Datei. Dann sortiert er die Liste der passenden Pakete und schreibt " -"sie nach stdout. Verzeichnisse werden nicht in die Ausgabe geschrieben. " -"Falls mehrere Pakete die gleiche Datei besitzen, dann befindet sich jedes " -"Paket durch Komma getrennt in der Ausgabe." +"Der <literal>contents</literal>-Befehl generiert eine Inhaltsdatei aus einem " +"Verzeichnisbaum. Er nimmt ein vorgegebenes Verzeichnis und durchsucht es " +"rekursiv nach .deb-Dateien und liest die Dateiliste von jeder Datei. Dann " +"sortiert er die Liste der passenden Pakete und schreibt sie nach stdout. " +"Verzeichnisse werden nicht in die Ausgabe geschrieben. Falls mehrere Pakete " +"die gleiche Datei besitzen, dann befindet sich jedes Paket durch Komma " +"getrennt in der Ausgabe." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:109 @@ -2679,32 +2612,28 @@ msgid "" "md5sum.txt files. It then writes to stdout a Release file containing an MD5 " "digest and SHA1 digest for each file." 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 stdout, die einen MD5- und SHA1-Hash für jede Datei " -"enthält." +"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 " +"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:118 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>." +"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>." msgstr "" "Werte für zusätzliche Metadatenfelder in der Release-Datei werden den " -"entsprechenden Variablen unter " -"<literal>APT::FTPArchive::Release</literal> 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>, " +"entsprechenden Variablen unter <literal>APT::FTPArchive::Release</literal> " +"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>Description</literal>." @@ -2723,12 +2652,12 @@ msgid "" "are built from which directories, as well as providing a simple means of " "maintaining the required settings." msgstr "" -"Der <literal>generate</literal>-Befehl wurde entworfen, um von einem " -"Cron-Skript ausführbar zu sein und bildet Indizes, die der angegebenen " +"Der <literal>generate</literal>-Befehl wurde entworfen, um von einem Cron-" +"Skript ausführbar zu sein und bildet Indizes, die der angegebenen " "Konfigurationsdatei entsprechen. Die Konfigurationssprache stellt eine " -"flexible Möglichkeit bereit, um anzugeben, welche Indexdateien von " -"welchen Verzeichnissen gebildet wurden, ebenso wie sie eine einfache " -"Möglichkeit zur Verwaltung der erforderlichen Einstellungen bereitstellt." +"flexible Möglichkeit bereit, um anzugeben, welche Indexdateien von welchen " +"Verzeichnissen gebildet wurden, ebenso wie sie eine einfache Möglichkeit zur " +"Verwaltung der erforderlichen Einstellungen bereitstellt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:137 apt-get.8.xml:292 @@ -2741,9 +2670,9 @@ msgid "" "The <literal>clean</literal> command tidies the databases used by the given " "configuration file by removing any records that are no longer necessary." msgstr "" -"Der <literal>clean</literal>-Befehl räumt die Datenbanken auf, die von " -"der angegebenen Konfigurationsdatei benutzt wurden, indem es nicht länger " -"nötige Datensätze entfernt." +"Der <literal>clean</literal>-Befehl räumt die Datenbanken auf, die von der " +"angegebenen Konfigurationsdatei benutzt wurden, indem es nicht länger nötige " +"Datensätze entfernt." #. type: Content of: <refentry><refsect1><title> #: apt-ftparchive.1.xml:145 @@ -2755,22 +2684,23 @@ msgstr "Die Generate-Konfiguration" msgid "" "The <literal>generate</literal> command uses a configuration file to " "describe the archives that are going to be generated. It follows the typical " -"ISC configuration format as seen in ISC tools like bind 8 and dhcpd. " -"&apt-conf; contains a description of the syntax. Note that the generate " +"ISC configuration format as seen in ISC tools like bind 8 and dhcpd. &apt-" +"conf; contains a description of the syntax. Note that the generate " "configuration is parsed in sectional manner, but &apt-conf; is parsed in a " "tree manner. This only effects how the scope tag is handled." msgstr "" -"Der <literal>generate</literal>-Befehl benutzt eine Konfigurationsdatei, " -"um die Archive zu beschreiben, die generiert werden sollen. Es folgt dem " -"typischen ISC-Konfigurationsformat, wie es in ISC-Werkzeugen wie Bind 8 " -"oder DHCP gesehen werden kann. &apt-conf; enthält eine Beschreibung der " -"Syntax. Beachten Sie, dass die generate-Konfiguration abschnittsweise " -"ausgewertet wird, &apt-conf; aber baumartig ausgewertet wird. Dies hat " -"nur Auswirkungen, wenn die Markierung »scope« behandelt wird." +"Der <literal>generate</literal>-Befehl benutzt eine Konfigurationsdatei, um " +"die Archive zu beschreiben, die generiert werden sollen. Es folgt dem " +"typischen ISC-Konfigurationsformat, wie es in ISC-Werkzeugen wie Bind 8 oder " +"DHCP gesehen werden kann. &apt-conf; enthält eine Beschreibung der Syntax. " +"Beachten Sie, dass die generate-Konfiguration abschnittsweise ausgewertet " +"wird, &apt-conf; aber baumartig ausgewertet wird. Dies hat nur Auswirkungen, " +"wenn die Markierung »scope« behandelt wird." #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:155 -msgid "The generate configuration has 4 separate sections, each described below." +msgid "" +"The generate configuration has 4 separate sections, each described below." msgstr "" "Die generate-Konfiguration hat vier getrennte Abschnitte, jeder ist " "unterhalb beschrieben" @@ -2788,11 +2718,11 @@ msgid "" "directories are prepended to certain relative paths defined in later " "sections to produce a complete an absolute path." msgstr "" -"Der <literal>Dir</literal>-Abschnitt definiert die Vorgabeverzeichnisse, " -"die zum Orten der benötigten Dateien während des Generierungsprozesses " -"gebraucht werden. Diese Verzeichnisse werden bestimmten relativen Pfaden, " -"die in späteren Abschnitten definiert werden, vorangestellt, um einen " -"vollständigen absoluten Pfad zu bilden." +"Der <literal>Dir</literal>-Abschnitt definiert die Vorgabeverzeichnisse, die " +"zum Orten der benötigten Dateien während des Generierungsprozesses gebraucht " +"werden. Diese Verzeichnisse werden bestimmten relativen Pfaden, die in " +"späteren Abschnitten definiert werden, vorangestellt, um einen vollständigen " +"absoluten Pfad zu bilden." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:164 @@ -2806,9 +2736,9 @@ msgid "" "this is the directory that contains the <filename>ls-LR</filename> and dist " "nodes." msgstr "" -"Gibt die Wurzel des FTP-Archivs an. In einer " -"Debian-Standardkonfiguration ist das das Verzeichnis, das die " -"<filename>ls-LR</filename>- und dist-Knoten enthält." +"Gibt die Wurzel des FTP-Archivs an. In einer Debian-Standardkonfiguration " +"ist das das Verzeichnis, das die <filename>ls-LR</filename>- und dist-Knoten " +"enthält." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:171 @@ -2838,11 +2768,11 @@ msgstr "FileListDir" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:183 msgid "" -"Specifies the location of the file list files, if the " -"<literal>FileList</literal> setting is used below." +"Specifies the location of the file list files, if the <literal>FileList</" +"literal> setting is used below." msgstr "" -"Gibt den Ort der Dateilistendateien an, wenn die " -"<literal>FileList</literal> unterhalb gesetzt ist." +"Gibt den Ort der Dateilistendateien an, wenn die <literal>FileList</literal> " +"unterhalb gesetzt ist." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt-ftparchive.1.xml:189 @@ -2873,11 +2803,10 @@ 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 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«." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:203 @@ -2944,8 +2873,8 @@ msgstr "DeLinkLimit" #: apt-ftparchive.1.xml:229 msgid "" "Specifies the number of kilobytes to delink (and replace with hard links) " -"per run. This is used in conjunction with the per-section " -"<literal>External-Links</literal> setting." +"per run. This is used in conjunction with the per-section <literal>External-" +"Links</literal> setting." msgstr "" "Gibt die Anzahl von Kilobytes an, die pro Durchlauf delinkt (und durch " "Hardlinks ersetzt) werden sollen. Dies wird in Verbindung mit der " @@ -2962,9 +2891,8 @@ msgid "" "Specifies the mode of all created index files. It defaults to 0644. All " "index files are set to this mode with no regard to the umask." msgstr "" -"Gibt die Rechte für alle erstellten Indexdateien an. Vorgabe ist 0644. " -"Alle Indexdateien werden ohne Beachtung von umask auf diese Rechte " -"gesetzt." +"Gibt die Rechte für alle erstellten Indexdateien an. Vorgabe ist 0644. Alle " +"Indexdateien werden ohne Beachtung von umask auf diese Rechte gesetzt." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt-ftparchive.1.xml:243 @@ -2990,9 +2918,9 @@ msgstr "MaxContentsChange" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:252 msgid "" -"Sets the number of kilobytes of contents files that are generated each " -"day. The contents files are round-robined so that over several days they " -"will all be rebuilt." +"Sets the number of kilobytes of contents files that are generated each day. " +"The contents files are round-robined so that over several days they will all " +"be rebuilt." msgstr "" "Setzt die Anzahl der Kilobytes der Inhaltdateien, die jeden Tag generiert " "werden. Die Inhaltdateien werden reihum ersetzt, so dass sie über mehrere " @@ -3007,20 +2935,19 @@ msgstr "ContentsAge" #: apt-ftparchive.1.xml:259 msgid "" "Controls the number of days a contents file is allowed to be checked without " -"changing. If this limit is passed the mtime of the contents file is " -"updated. This case can occur if the package file is changed in such a way " -"that does not result in a new contents file [override edit for instance]. A " -"hold off is allowed in hopes that new .debs will be installed, requiring a " -"new file anyhow. The default is 10, the units are in days." -msgstr "" -"Steuert die Anzahl der Tage, die eine Inhaltsdatei erlaubt ist ohne " -"Änderung geprüft zu werden. Wenn die Grenze überschritten ist, wird die " -"mtime der Inhaltsdatei aktualisiert. Dieser Fall kann auftreten, wenn die " -"Package-Datei auf einem Weg geändert wurde, der nicht in einer neuen " -"Inhaltsdatei resultierte [überschreibendes Bearbeiten zum Beispiel]. Ein " -"Aufhalten ist erlaubt, in der Hoffnung dass neue .debs installiert " -"werden, die sowieso eine neue Datei benötigen. Die Vorgabe ist 10, die " -"Einheiten sind Tage." +"changing. If this limit is passed the mtime of the contents file is updated. " +"This case can occur if the package file is changed in such a way that does " +"not result in a new contents file [override edit for instance]. A hold off " +"is allowed in hopes that new .debs will be installed, requiring a new file " +"anyhow. The default is 10, the units are in days." +msgstr "" +"Steuert die Anzahl der Tage, die eine Inhaltsdatei erlaubt ist ohne Änderung " +"geprüft zu werden. Wenn die Grenze überschritten ist, wird die mtime der " +"Inhaltsdatei aktualisiert. Dieser Fall kann auftreten, wenn die Package-" +"Datei auf einem Weg geändert wurde, der nicht in einer neuen Inhaltsdatei " +"resultierte [überschreibendes Bearbeiten zum Beispiel]. Ein Aufhalten ist " +"erlaubt, in der Hoffnung dass neue .debs installiert werden, die sowieso " +"eine neue Datei benötigen. Die Vorgabe ist 10, die Einheiten sind Tage." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:268 @@ -3030,11 +2957,11 @@ msgstr "Directory" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:270 msgid "" -"Sets the top of the .deb directory tree. Defaults to " -"<filename>$(DIST)/$(SECTION)/binary-$(ARCH)/</filename>" +"Sets the top of the .deb directory tree. Defaults to <filename>$(DIST)/" +"$(SECTION)/binary-$(ARCH)/</filename>" msgstr "" -"Setzt den Beginn des .deb-Verzeichnisbaumes. Vorgabe ist " -"<filename>$(DIST)/$(SECTION)/binary-$(ARCH)/</filename>" +"Setzt den Beginn des .deb-Verzeichnisbaumes. Vorgabe ist <filename>$(DIST)/" +"$(SECTION)/binary-$(ARCH)/</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:274 @@ -3044,11 +2971,11 @@ msgstr "SrcDirectory" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:276 msgid "" -"Sets the top of the source package directory tree. Defaults to " -"<filename>$(DIST)/$(SECTION)/source/</filename>" +"Sets the top of the source package directory tree. Defaults to <filename>" +"$(DIST)/$(SECTION)/source/</filename>" msgstr "" -"Setzt den Beginn des Quellpaketverzeichnisbaumes. Vorgabe ist " -"<filename>$(DIST)/$(SECTION)/source/</filename>" +"Setzt den Beginn des Quellpaketverzeichnisbaumes. Vorgabe ist <filename>" +"$(DIST)/$(SECTION)/source/</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:280 apt-ftparchive.1.xml:406 @@ -3058,11 +2985,11 @@ msgstr "Packages" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:282 msgid "" -"Sets the output Packages file. Defaults to " -"<filename>$(DIST)/$(SECTION)/binary-$(ARCH)/Packages</filename>" +"Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" +"binary-$(ARCH)/Packages</filename>" msgstr "" -"Setzt die Ausgabe-Packages-Datei. Vorgabe ist " -"<filename>$(DIST)/$(SECTION)/binary-$(ARCH)/Packages</filename>" +"Setzt die Ausgabe-Packages-Datei. Vorgabe ist <filename>$(DIST)/$(SECTION)/" +"binary-$(ARCH)/Packages</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:286 apt-ftparchive.1.xml:411 @@ -3072,11 +2999,11 @@ msgstr "Sources" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:288 msgid "" -"Sets the output Packages file. Defaults to " -"<filename>$(DIST)/$(SECTION)/source/Sources</filename>" +"Sets the output Packages file. Defaults to <filename>$(DIST)/$(SECTION)/" +"source/Sources</filename>" msgstr "" -"Setzt die Ausgabe-Packages-Datei. Vorgabe ist " -"<filename>$(DIST)/$(SECTION)/source/Sources</filename>" +"Setzt die Ausgabe-Packages-Datei. Vorgabe ist <filename>$(DIST)/$(SECTION)/" +"source/Sources</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:292 @@ -3087,11 +3014,11 @@ msgstr "InternalPrefix" #: apt-ftparchive.1.xml:294 msgid "" "Sets the path prefix that causes a symlink to be considered an internal link " -"instead of an external link. Defaults to " -"<filename>$(DIST)/$(SECTION)/</filename>" +"instead of an external link. Defaults to <filename>$(DIST)/$(SECTION)/</" +"filename>" msgstr "" -"Setzt die Pfad-Präfix, die bewirkt, dass ein symbolischer Verweis wie " -"ein interner anstatt wie ein externer Verweis behandelt wird. Vorgabe ist " +"Setzt die Pfad-Präfix, die bewirkt, dass ein symbolischer Verweis wie ein " +"interner anstatt wie ein externer Verweis behandelt wird. Vorgabe ist " "<filename>$(DIST)/$(SECTION)/</filename>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> @@ -3102,17 +3029,16 @@ msgstr "Contents" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:301 msgid "" -"Sets the output Contents file. Defaults to " -"<filename>$(DIST)/Contents-$(ARCH)</filename>. If this setting causes " -"multiple Packages files to map onto a single Contents file (such as the " -"default) then <command>apt-ftparchive</command> will integrate those " -"package files together automatically." +"Sets the output Contents file. Defaults to <filename>$(DIST)/Contents-$(ARCH)" +"</filename>. If this setting causes multiple Packages files to map onto a " +"single Contents file (such as the default) then <command>apt-ftparchive</" +"command> will integrate those package files together automatically." 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 Vorgabe ist), dann wird " -"<command>apt-ftparchive</command> diese Dateien automatisch integrieren." +"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 " +"Vorgabe ist), dann wird <command>apt-ftparchive</command> diese Dateien " +"automatisch integrieren." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:308 @@ -3146,9 +3072,9 @@ msgstr "FileList" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:321 msgid "" -"Specifies that instead of walking the directory tree, " -"<command>apt-ftparchive</command> should read the list of files from the " -"given file. Relative files names are prefixed with the archive directory." +"Specifies that instead of walking the directory tree, <command>apt-" +"ftparchive</command> should read the list of files from the given file. " +"Relative files names are prefixed with the archive directory." msgstr "" "Gibt an, dass <command>apt-ftparchive</command> die Liste der Dateien aus " "der vorgegebenen Datei liest, anstatt den Verzeichnisbaum zu durchlaufen. " @@ -3162,10 +3088,10 @@ msgstr "SourceFileList" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:328 msgid "" -"Specifies that instead of walking the directory tree, " -"<command>apt-ftparchive</command> should read the list of files from the " -"given file. Relative files names are prefixed with the archive directory. " -"This is used when processing source indexes." +"Specifies that instead of walking the directory tree, <command>apt-" +"ftparchive</command> should read the list of files from the given file. " +"Relative files names are prefixed with the archive directory. This is used " +"when processing source indexes." msgstr "" "Gibt an, dass <command>apt-ftparchive</command> die Liste der Dateien aus " "der vorgegebenen Datei liest, anstatt den Verzeichnisbaum zu durchlaufen. " @@ -3186,11 +3112,10 @@ msgid "" "pathing used is defined by the <literal>Directory</literal> substitution " "variable." msgstr "" -"Der <literal>Tree</literal>-Abschnitt definiert einen " -"Standard-Debian-Dateibaum, der aus einem Basisverzeichnis, dann mehreren " -"Abschnitten in diesem Basisverzeichnis und am Ende, mehreren " -"Architekturen in jedem Abschnitt besteht. Die genaue benutzte " -"Pfadeinstellung ist durch die " +"Der <literal>Tree</literal>-Abschnitt definiert einen Standard-Debian-" +"Dateibaum, der aus einem Basisverzeichnis, dann mehreren Abschnitten in " +"diesem Basisverzeichnis und am Ende, mehreren Architekturen in jedem " +"Abschnitt besteht. Die genaue benutzte Pfadeinstellung ist durch die " "<literal>Directory</literal>-Ersetzungsvariable definiert." #. type: Content of: <refentry><refsect1><refsect2><para> @@ -3201,11 +3126,11 @@ msgid "" "path is prefixed by <literal>ArchiveDir</literal>). Typically this is a " "setting such as <filename>dists/woody</filename>." msgstr "" -"Der <literal>Tree</literal>-Abschnitt nimmt eine scope-Markierung, die " -"die <literal>$(DIST)</literal>-Variable setzt und die Wurzel des Baumes " +"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/woody</" +"filename>." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:348 @@ -3214,23 +3139,23 @@ msgid "" "can be use in a <literal>Tree</literal> section as well as three new " "variables." msgstr "" -"Alle im <literal>TreeDefault</literal>-Abschnitt definierten " -"Einstellungen können in einem <literal>Tree</literal>-Abschnitt, sowie " -"als drei neue Variablen benutzt werden." +"Alle im <literal>TreeDefault</literal>-Abschnitt definierten Einstellungen " +"können in einem <literal>Tree</literal>-Abschnitt, sowie als drei neue " +"Variablen benutzt werden." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt-ftparchive.1.xml:351 msgid "" -"When processing a <literal>Tree</literal> section " -"<command>apt-ftparchive</command> performs an operation similar to:" +"When processing a <literal>Tree</literal> section <command>apt-ftparchive</" +"command> performs an operation similar to:" msgstr "" "Wenn ein <literal>Tree</literal>-Abschnitt bearbeitet wird, führt " "<command>apt-ftparchive</command> eine Operation aus, die folgender ähnelt:" +# report, that this string is missing in man page #. type: Content of: <refentry><refsect1><refsect2><para><informalexample><programlisting> #: apt-ftparchive.1.xml:354 #, no-wrap -# report, that this string is missing in man page msgid "" "for i in Sections do \n" " for j in Architectures do\n" @@ -3249,12 +3174,12 @@ msgstr "Abschnitte" #: apt-ftparchive.1.xml:362 msgid "" "This is a space separated list of sections which appear under the " -"distribution, typically this is something like <literal>main contrib " -"non-free</literal>" +"distribution, typically this is something like <literal>main contrib non-" +"free</literal>" msgstr "" "Dies ist eine durch Leerzeichen getrennte Liste der Abschnitte, die unter " -"der Distribution erscheint, typischerweise etwas wie <literal>main " -"contrib non-free</literal>" +"der Distribution erscheint, typischerweise etwas wie <literal>main contrib " +"non-free</literal>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:367 @@ -3269,8 +3194,8 @@ msgid "" "this tree has a source archive." msgstr "" "Dies ist eine durch Leerzeichen getrennte Liste aller Architekturen, die " -"unter dem Suchabschnitt erscheinen. Die spezielle Architektur »source« " -"wird benutzt, um anzugeben, dass dieser Baum ein Quellarchiv besitzt." +"unter dem Suchabschnitt erscheinen. Die spezielle Architektur »source« wird " +"benutzt, um anzugeben, dass dieser Baum ein Quellarchiv besitzt." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:374 apt-ftparchive.1.xml:422 @@ -3331,14 +3256,14 @@ msgid "" "The <literal>bindirectory</literal> section defines a binary directory tree " "with no special structure. The scope tag specifies the location of the " "binary directory and the settings are similar to the <literal>Tree</literal> " -"section with no substitution variables or " -"<literal>Section</literal><literal>Architecture</literal> settings." +"section with no substitution variables or <literal>Section</" +"literal><literal>Architecture</literal> settings." msgstr "" "Der <literal>bindirectory</literal>-Abschnitt definiert einen " -"Programmverzeichnisbaum ohne spezielle Struktur. Die scope-Markierung " -"gibt den Ort des Programmverzeichnisses an und die Einstellungen sind " -"denen des <literal>Tree</literal>-Abschnitts ohne Platzhaltervariablen " -"oder <literal>Abschnitt</literal><literal>Architektur</literal> ähnlich." +"Programmverzeichnisbaum ohne spezielle Struktur. Die scope-Markierung gibt " +"den Ort des Programmverzeichnisses an und die Einstellungen sind denen des " +"<literal>Tree</literal>-Abschnitts ohne Platzhaltervariablen oder " +"<literal>Abschnitt</literal><literal>Architektur</literal> ähnlich." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:408 @@ -3409,10 +3334,10 @@ msgid "" "permutation field." msgstr "" "Die Programm-Override-Datei ist vollständig zu &dpkg-scanpackages; " -"kompatibel. Sie enthält vier durch Leerzeichen getrennte Felder. Das " -"erste Feld ist der Paketname, das zweite ist die Priorität zu der das " -"Paket erzwungen wird, das dritte ist der Abschnittzu der das Paket " -"erzwungen wird und das letzte Feld ist das Betreuerumsetzungsfeld." +"kompatibel. Sie enthält vier durch Leerzeichen getrennte Felder. Das erste " +"Feld ist der Paketname, das zweite ist die Priorität zu der das Paket " +"erzwungen wird, das dritte ist der Abschnittzu der das Paket erzwungen wird " +"und das letzte Feld ist das Betreuerumsetzungsfeld." #. type: Content of: <refentry><refsect1><para><literallayout> #: apt-ftparchive.1.xml:468 @@ -3429,19 +3354,19 @@ msgstr "neu" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:467 msgid "" -"The general form of the maintainer field is: <placeholder " -"type=\"literallayout\" id=\"0\"/> or simply, <placeholder " -"type=\"literallayout\" id=\"1\"/> The first form allows a double-slash " -"separated list of old email addresses to be specified. If any of those are " -"found then new is substituted for the maintainer field. The second form " -"unconditionally substitutes the maintainer field." +"The general form of the maintainer field is: <placeholder type=" +"\"literallayout\" id=\"0\"/> or simply, <placeholder type=\"literallayout\" " +"id=\"1\"/> The first form allows a double-slash separated list of old email " +"addresses to be specified. If any of those are found then new is substituted " +"for the maintainer field. The second form unconditionally substitutes the " +"maintainer field." msgstr "" -"Die allgemeine Form des Betreuerfelds ist: <placeholder " -"type=\"literallayout\" id=\"0\"/> oder einfach <placeholder " -"type=\"literallayout\" id=\"1\"/>. Die erste Form erlaubt es, eine durch " -"Doppelschrägstrich getrennte Liste alter E-Mail-Adressen anzugegeben. " -"Wenn eine davon gefunden wird, wird die neue für das Betreuerfeld " -"ersetzt. Die zweite Form ersetzt das Betreuerfeld bedingungslos." +"Die allgemeine Form des Betreuerfelds ist: <placeholder type=\"literallayout" +"\" id=\"0\"/> oder einfach <placeholder type=\"literallayout\" id=\"1\"/>. " +"Die erste Form erlaubt es, eine durch Doppelschrägstrich getrennte Liste " +"alter E-Mail-Adressen anzugegeben. Wenn eine davon gefunden wird, wird die " +"neue für das Betreuerfeld ersetzt. Die zweite Form ersetzt das Betreuerfeld " +"bedingungslos." #. type: Content of: <refentry><refsect1><title> #: apt-ftparchive.1.xml:478 @@ -3455,10 +3380,9 @@ msgid "" "contains 2 fields separated by spaces. The first fields is the source " "package name, the second is the section to assign it." msgstr "" -"Die Quell-Override-Datei ist vollständig kompatibel zu " -"&dpkg-scansources;. Sie enthält zwei durch Leerzeichen getrennte Felder. " -"Das erste Feld ist der Quellpaketname, das zweite ist der Abschnitt, dem " -"er zugeordnet ist." +"Die Quell-Override-Datei ist vollständig kompatibel zu &dpkg-scansources;. " +"Sie enthält zwei durch Leerzeichen getrennte Felder. Das erste Feld ist der " +"Quellpaketname, das zweite ist der Abschnitt, dem er zugeordnet ist." #. type: Content of: <refentry><refsect1><title> #: apt-ftparchive.1.xml:485 @@ -3473,9 +3397,9 @@ msgid "" "tag and the remainder of the line is the new value." msgstr "" "Die zusätzlich Override-Datei erlaubt jeder beliebigen Markierung zur " -"Ausgabe hinzugefügt oder darin ersetzt zu werden. Sie hat drei Spalten. " -"Die erste ist das Paket, die zweite ist die Markierung und der Rest der " -"Zeile ist der neue Wert." +"Ausgabe hinzugefügt oder darin ersetzt zu werden. Sie hat drei Spalten. Die " +"erste ist das Paket, die zweite ist die Markierung und der Rest der Zeile " +"ist der neue Wert." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:496 @@ -3489,10 +3413,9 @@ msgid "" "files will not have MD5Sum fields where possible. Configuration Item: " "<literal>APT::FTPArchive::MD5</literal>" msgstr "" -"Generiert MD5-Summen. Dies ist standardmäßig an, wenn es ausgeschaltet " -"ist, haben die generierten Indexdateien keine MD5Sum-Felder, sofern dies " -"möglich ist. Konfigurationselement: " -"<literal>APT::FTPArchive::MD5</literal>" +"Generiert MD5-Summen. Dies ist standardmäßig an, wenn es ausgeschaltet ist, " +"haben die generierten Indexdateien keine MD5Sum-Felder, sofern dies möglich " +"ist. Konfigurationselement: <literal>APT::FTPArchive::MD5</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:503 @@ -3506,8 +3429,8 @@ msgid "" "Configuration Item: <literal>APT::FTPArchive::DB</literal>." msgstr "" "Benutzt eine Programmzwischenspeicherdatenbank. Dies hat keine Auswirkung " -"auf den generate-Befehl. Konfigurationselement: " -"<literal>APT::FTPArchive::DB</literal>." +"auf den generate-Befehl. Konfigurationselement: <literal>APT::FTPArchive::" +"DB</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:511 @@ -3518,10 +3441,10 @@ msgid "" "file. Configuration Item: <literal>quiet</literal>." msgstr "" "Still; erzeugt eine Ausgabe, die für Protokollierung geeignet ist und " -"Fortschrittsanzeiger weglässt. Mehr »q«s unterdrücken mehr Ausgaben, bis " -"zu einem Maximum von 2. Sie können außerdem <option>-q=#</option> " -"benutzen, um die Stillestufe zu setzen, was die Konfigurationsdatei " -"überschreibt. Konfigurationselement: <literal>quiet</literal>." +"Fortschrittsanzeiger weglässt. Mehr »q«s unterdrücken mehr Ausgaben, bis zu " +"einem Maximum von 2. Sie können außerdem <option>-q=#</option> benutzen, um " +"die Stillestufe zu setzen, was die Konfigurationsdatei überschreibt. " +"Konfigurationselement: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:517 @@ -3536,11 +3459,11 @@ msgid "" "and can be turned off with <option>--no-delink</option>. Configuration " "Item: <literal>APT::FTPArchive::DeLinkAct</literal>." msgstr "" -"Führt Delinking aus. Wenn die " -"<literal>External-Links</literal>-Einstellung benutzt wird, schaltet " -"diese Option das Delinking zu Dateien ein. Standardmäßig ist es an " -"und kann mit <option>--no-delink</option> ausgeschaltet werden. " -"Konfigurationselement: <literal>APT::FTPArchive::DeLinkAct</literal>." +"Führt Delinking aus. Wenn die <literal>External-Links</literal>-Einstellung " +"benutzt wird, schaltet diese Option das Delinking zu Dateien ein. " +"Standardmäßig ist es an und kann mit <option>--no-delink</option> " +"ausgeschaltet werden. Konfigurationselement: <literal>APT::FTPArchive::" +"DeLinkAct</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:525 @@ -3557,12 +3480,11 @@ msgid "" "Configuration Item: <literal>APT::FTPArchive::Contents</literal>." msgstr "" "Führt Inhaltsgenerierung durch. Wenn diese Option gesetzt ist und " -"Paketindizes mit einer Zwischenspeicherdatenbank generiert werden, dann " -"wird die Dateiliste auch extrahiert und für spätere Benutzung in der " -"Datenbank gespeichert. Wenn der generate-Befehl benutzt wird, erlaubt " -"diese Option außerdem die Erzeugung beliebiger Contents-Dateien. Die " -"Vorgabe ist an. Konfigurationselement: " -"<literal>APT::FTPArchive::Contents</literal>." +"Paketindizes mit einer Zwischenspeicherdatenbank generiert werden, dann wird " +"die Dateiliste auch extrahiert und für spätere Benutzung in der Datenbank " +"gespeichert. Wenn der generate-Befehl benutzt wird, erlaubt diese Option " +"außerdem die Erzeugung beliebiger Contents-Dateien. Die Vorgabe ist an. " +"Konfigurationselement: <literal>APT::FTPArchive::Contents</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:535 @@ -3573,12 +3495,12 @@ msgstr "<option>--source-override</option>" #: apt-ftparchive.1.xml:537 msgid "" "Select the source override file to use with the <literal>sources</literal> " -"command. Configuration Item: " -"<literal>APT::FTPArchive::SourceOverride</literal>." +"command. Configuration Item: <literal>APT::FTPArchive::SourceOverride</" +"literal>." msgstr "" -"Wählt die Quell-Override-Datei, die mit dem " -"<literal>sources</literal>-Befehl benutzt wird. Konfigurationselement: " -"<literal>APT::FTPArchive::SourceOverride</literal>." +"Wählt die Quell-Override-Datei, die mit dem <literal>sources</literal>-" +"Befehl benutzt wird. Konfigurationselement: <literal>APT::FTPArchive::" +"SourceOverride</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-ftparchive.1.xml:541 @@ -3588,28 +3510,23 @@ msgstr "<option>--readonly</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:543 msgid "" -"Make the caching databases read only. Configuration Item: " -"<literal>APT::FTPArchive::ReadOnlyDB</literal>." +"Make the caching databases read only. Configuration Item: <literal>APT::" +"FTPArchive::ReadOnlyDB</literal>." msgstr "" "Gibt der Zwischenspeicherdatenbank nur Lesezugriff. Konfigurationselement: " "<literal>APT::FTPArchive::ReadOnlyDB</literal>." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:552 apt.conf.5.xml:962 apt_preferences.5.xml:462 sources.list.5.xml:181 +#: apt-ftparchive.1.xml:552 apt.conf.5.xml:967 apt_preferences.5.xml:462 +#: sources.list.5.xml:181 msgid "Examples" msgstr "Beispiele" #. type: Content of: <refentry><refsect1><para><programlisting> #: apt-ftparchive.1.xml:558 #, no-wrap -msgid "" -"<command>apt-ftparchive</command> packages " -"<replaceable>directory</replaceable> | <command>gzip</command> > " -"<filename>Packages.gz</filename>\n" -msgstr "" -"<command>apt-ftparchive</command> Pakete " -"<replaceable>Verzeichnis</replaceable> | <command>gzip</command> > " -"<filename>Pakete.gz</filename>\n" +msgid "<command>apt-ftparchive</command> packages <replaceable>directory</replaceable> | <command>gzip</command> > <filename>Packages.gz</filename>\n" +msgstr "<command>apt-ftparchive</command> Pakete <replaceable>Verzeichnis</replaceable> | <command>gzip</command> > <filename>Pakete.gz</filename>\n" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:554 @@ -3618,8 +3535,8 @@ msgid "" "packages (.deb): <placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" "Um eine gepackte Paketdatei für ein Verzeichnis zu erstellen, das " -"Programmpakete (.deb) enthält: <placeholder type=\"programlisting\" " -"id=\"0\"/>" +"Programmpakete (.deb) enthält: <placeholder type=\"programlisting\" id=\"0\"/" +">" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:568 @@ -3637,8 +3554,8 @@ msgid "" "&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>08 " "November 2008</date>" msgstr "" -"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>" -"8. November 2008</date>" +"&apt-author.jgunthorpe; &apt-author.team; &apt-email; &apt-product; <date>8. " +"November 2008</date>" #. type: Content of: <refentry><refnamediv><refname> #: apt-get.8.xml:22 apt-get.8.xml:29 @@ -3648,8 +3565,7 @@ msgstr "apt-get" #. type: Content of: <refentry><refnamediv><refpurpose> #: apt-get.8.xml:30 msgid "APT package handling utility -- command-line interface" -msgstr "" -"APT-Werkzeug für den Umgang mit Paketen -- Befehlszeilenschnittstelle" +msgstr "APT-Werkzeug für den Umgang mit Paketen -- Befehlszeilenschnittstelle" #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-get.8.xml:36 @@ -3660,27 +3576,26 @@ msgid "" "<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'> <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'>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'>check</arg> <arg choice='plain'>clean</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 " @@ -3688,36 +3603,31 @@ 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 " +"<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\"><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> </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 " +"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" +"\"><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> </" +"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 " "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 " @@ -3732,11 +3642,11 @@ msgid "" "library. Several \"front-end\" interfaces exist, such as &dselect;, " "&aptitude;, &synaptic;, &gnome-apt; and &wajig;." 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;." +"<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;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:135 apt-key.8.xml:123 @@ -3752,22 +3662,20 @@ msgid "" "example, when using a Debian archive, this command retrieves and scans the " "<filename>Packages.gz</filename> files, so that information about new and " "updated packages is available. An <literal>update</literal> should always be " -"performed before an <literal>upgrade</literal> or " -"<literal>dist-upgrade</literal>. Please be aware that the overall progress " -"meter will be incorrect as the size of the package files cannot be known in " -"advance." +"performed before an <literal>upgrade</literal> or <literal>dist-upgrade</" +"literal>. Please be aware that the overall progress meter will be incorrect " +"as the size of the package files cannot be known in advance." msgstr "" "<literal>update</literal> wird benutzt, um die Paketindexdatei wieder mit " -"ihren Quellen zu synchronisieren. Die Indizes verfügbarer Pakete werden " -"von den in <filename>/etc/apt/sources.list</filename> angegebenen Orten " -"geladen. Wenn Sie zum Beispiel ein Debian-Archiv benutzen, erneuert " -"dieser Befehl die <filename>Packages.gz</filename>-Dateien und wertet sie " -"aus, so dass Informationen über neue und aktualisierte Pakete verfügbar " -"sind. Ein <literal>update</literal> sollte immer vor einem " -"<literal>upgrade</literal> oder <literal>dist-upgrade</literal> " -"ausgeführt werden. Bitte seien Sie sich bewusst, dass die " -"Gesamtfortschrittsanzeige nicht richtig sein wird, da die Größe der " -"Pakete nicht im voraus bekannt ist." +"ihren Quellen zu synchronisieren. Die Indizes verfügbarer Pakete werden von " +"den in <filename>/etc/apt/sources.list</filename> angegebenen Orten geladen. " +"Wenn Sie zum Beispiel ein Debian-Archiv benutzen, erneuert dieser Befehl die " +"<filename>Packages.gz</filename>-Dateien und wertet sie aus, so dass " +"Informationen über neue und aktualisierte Pakete verfügbar sind. Ein " +"<literal>update</literal> sollte immer vor einem <literal>upgrade</literal> " +"oder <literal>dist-upgrade</literal> ausgeführt werden. Bitte seien Sie sich " +"bewusst, dass die Gesamtfortschrittsanzeige nicht richtig sein wird, da die " +"Größe der Pakete nicht im voraus bekannt ist." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:147 @@ -3785,23 +3693,20 @@ msgid "" "already installed retrieved and installed. New versions of currently " "installed packages that cannot be upgraded without changing the install " "status of another package will be left at their current version. An " -"<literal>update</literal> must be performed first so that " -"<command>apt-get</command> knows that new versions of packages are " -"available." +"<literal>update</literal> must be performed first so that <command>apt-get</" +"command> knows that new versions of packages are available." msgstr "" "<literal>upgrade</literal> wird benutzt, um die neusten Versionen aller " -"aktuell auf dem System installierten Pakete aus den in " -"<filename>/etc/apt/sources.list</filename> aufgezählten Quellen zu " -"installieren. Aktuell installierte Pakete mit verfügbaren neuen Versionen " -"werden heruntergeladen und das Upgrade durchgeführt. Unter keinen " -"Umständen werden derzeit installierte Pakete entfernt oder nicht " -"installierte Pakete heruntergeladen und installiert. Neue Versionen von " -"aktuell installierten Paketen von denen kein Upgrade durchgeführt werden " -"kann, ohne den Installationsstatus eines anderen Paketes zu ändern, " -"werden in ihrer aktuellen Version bleiben. Zuerst muss ein " -"<literal>update</literal> durchgeführt werden, so dass " -"<command>apt-get</command> die neuen Versionen der verfügbaren Pakete " -"kennt." +"aktuell auf dem System installierten Pakete aus den in <filename>/etc/apt/" +"sources.list</filename> aufgezählten Quellen zu installieren. Aktuell " +"installierte Pakete mit verfügbaren neuen Versionen werden heruntergeladen " +"und das Upgrade durchgeführt. Unter keinen Umständen werden derzeit " +"installierte Pakete entfernt oder nicht installierte Pakete heruntergeladen " +"und installiert. Neue Versionen von aktuell installierten Paketen von denen " +"kein Upgrade durchgeführt werden kann, ohne den Installationsstatus eines " +"anderen Paketes zu ändern, werden in ihrer aktuellen Version bleiben. Zuerst " +"muss ein <literal>update</literal> durchgeführt werden, so dass <command>apt-" +"get</command> die neuen Versionen der verfügbaren Pakete kennt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:160 @@ -3812,11 +3717,11 @@ msgstr "dselect-upgrade" #: apt-get.8.xml:161 msgid "" "<literal>dselect-upgrade</literal> is used in conjunction with the " -"traditional Debian packaging front-end, " -"&dselect;. <literal>dselect-upgrade</literal> follows the changes made by " -"&dselect; to the <literal>Status</literal> field of available packages, and " -"performs the actions necessary to realize that state (for instance, the " -"removal of old and the installation of new packages)." +"traditional Debian packaging front-end, &dselect;. <literal>dselect-upgrade</" +"literal> follows the changes made by &dselect; to the <literal>Status</" +"literal> field of available packages, and performs the actions necessary to " +"realize that state (for instance, the removal of old and the installation of " +"new packages)." msgstr "" "<literal>dselect-upgrade</literal> wird zusammen mit der traditionellen " "Debian-Oberfläche &dselect; benutzt. <literal>dselect-upgrade</literal> " @@ -3845,15 +3750,14 @@ msgid "" msgstr "" "<literal>dist-upgrade</literal> führt zusätzlich zu der Funktion von " "<literal>upgrade</literal> intelligente Handhabung von " -"Abhängigkeitsänderungen mit neuen Versionen von Paketen durch. " -"<command>apt-get</command> hat ein »intelligentes« " -"Konfliktauflösungssystem und es wird versuchen, Upgrades der wichtigsten " -"Pakete, wenn nötig zu Lasten der weniger wichtigen, zu machen. So könnte " -"der <literal>dist-upgrade</literal>-Befehl einige Pakete entfernen. Die " -"<filename>/etc/apt/sources.list</filename>-Datei enthält eine Liste mit " -"Orten, von denen gewünschte Paketdateien abgerufen werden. Siehe auch " -"&apt-preferences; für einen Mechanismus zum überschreiben der " -"allgemeinen Einstellungen für einzelne Pakete." +"Abhängigkeitsänderungen mit neuen Versionen von Paketen durch. <command>apt-" +"get</command> hat ein »intelligentes« Konfliktauflösungssystem und es wird " +"versuchen, Upgrades der wichtigsten Pakete, wenn nötig zu Lasten der weniger " +"wichtigen, zu machen. So könnte der <literal>dist-upgrade</literal>-Befehl " +"einige Pakete entfernen. Die <filename>/etc/apt/sources.list</filename>-" +"Datei enthält eine Liste mit Orten, von denen gewünschte Paketdateien " +"abgerufen werden. Siehe auch &apt-preferences; für einen Mechanismus zum " +"überschreiben der allgemeinen Einstellungen für einzelne Pakete." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:183 @@ -3875,18 +3779,17 @@ msgid "" "a package to install. These latter features may be used to override " "decisions made by apt-get's conflict resolution system." msgstr "" -"<literal>install</literal> wird gefolgt von einem oder mehreren " -"gewünschten Paketen zur Installation oder zum Upgrade. Jedes Paket ist " -"ein Paketname, kein vollständig zusammengesetzter Dateiname (zum Beispiel " -"wäre in einem »Debian GNU/Linux«-System libc6 das bereitgestellte " -"Argument, nicht <literal>libc6_1.9.6-2.deb</literal>). Alle von den zur " -"Installation angegebenen Paketen benötigten Pakete werden zusätzlich " -"heruntergeladen und installiert. Die " -"<filename>/etc/apt/sources.list</filename>-Datei wird benutzt, um die " -"gewünschten Pakete zu finden. Wenn ein Bindestrich an den Paketnamen " -"(ohne Leerzeichen dazwischen) angehängt ist, wird das erkannte Pakete " -"entfernt, falls es installiert ist. Ähnlich kann ein Pluszeichen benutzt " -"werden, um ein Paket zum Installieren vorzumerken. Diese letzteren " +"<literal>install</literal> wird gefolgt von einem oder mehreren gewünschten " +"Paketen zur Installation oder zum Upgrade. Jedes Paket ist ein Paketname, " +"kein vollständig zusammengesetzter Dateiname (zum Beispiel wäre in einem " +"»Debian GNU/Linux«-System libc6 das bereitgestellte Argument, nicht " +"<literal>libc6_1.9.6-2.deb</literal>). Alle von den zur Installation " +"angegebenen Paketen benötigten Pakete werden zusätzlich heruntergeladen und " +"installiert. Die <filename>/etc/apt/sources.list</filename>-Datei wird " +"benutzt, um die gewünschten Pakete zu finden. Wenn ein Bindestrich an den " +"Paketnamen (ohne Leerzeichen dazwischen) angehängt ist, wird das erkannte " +"Pakete entfernt, falls es installiert ist. Ähnlich kann ein Pluszeichen " +"benutzt werden, um ein Paket zum Installieren vorzumerken. Diese letzteren " "Funktionen können benutzt werden, um Entscheidungen zu überschreiben, die " "vom Konfliktauflösungssystem von apt-get getroffen wurden." @@ -3895,13 +3798,13 @@ msgstr "" msgid "" "A specific version of a package can be selected for installation by " "following the package name with an equals and the version of the package to " -"select. This will cause that version to be located and selected for " -"install. Alternatively a specific distribution can be selected by following " -"the package name with a slash and the version of the distribution or the " -"Archive name (stable, testing, unstable)." +"select. This will cause that version to be located and selected for install. " +"Alternatively a specific distribution can be selected by following the " +"package name with a slash and the version of the distribution or the Archive " +"name (stable, testing, unstable)." msgstr "" -"Eine bestimmte Version eines Paketes kann durch den Paketnamen gefolgt " -"von einem Gleichheitszeichen und der Version des Paketes zur Installation " +"Eine bestimmte Version eines Paketes kann durch den Paketnamen gefolgt von " +"einem Gleichheitszeichen und der Version des Paketes zur Installation " "ausgewählt werden. Dies bewirkt, dass diese Version gesucht und zum " "Installieren ausgewählt wird. Alternativ kann eine bestimmte Distribution " "durch den Paketnamen gefolgt von einem Schrägstrich und der Version der " @@ -3920,23 +3823,23 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:213 msgid "" -"This is also the target to use if you want to upgrade one or more " -"already-installed packages without upgrading every package you have on your " -"system. Unlike the \"upgrade\" target, which installs the newest version of " -"all currently installed packages, \"install\" will install the newest " -"version of only the package(s) specified. Simply provide the name of the " -"package(s) you wish to upgrade, and if a newer version is available, it (and " -"its dependencies, as described above) will be downloaded and installed." -msgstr "" -"Dies ist außerdem die bevorzugt zu benutzende Art, wenn Sie Sie ein " -"Upgrade eines oder mehrerer bereits installierter Pakete durchführen " -"möchten, ohne ein Upgrade aller Pakete, die Sie auf Ihrem System haben, " -"durchzuführen. Anders als das Ziel von »upgrade«, das die neusten " -"Versionen aller aktuell installierten Pakete installiert, wird »install« " -"nur die neusten Versionen der angegebenen Pakete installieren. Geben Sie " -"einfach den Namen des Paketes an, von dem Sie ein Upgrade durchführen " -"möchten und wenn eine neuere Version verfügbar ist, wird sie (und ihre " -"Abhängigkeiten, wie oben beschrieben) heruntergeladen und installiert." +"This is also the target to use if you want to upgrade one or more already-" +"installed packages without upgrading every package you have on your system. " +"Unlike the \"upgrade\" target, which installs the newest version of all " +"currently installed packages, \"install\" will install the newest version of " +"only the package(s) specified. Simply provide the name of the package(s) " +"you wish to upgrade, and if a newer version is available, it (and its " +"dependencies, as described above) will be downloaded and installed." +msgstr "" +"Dies ist außerdem die bevorzugt zu benutzende Art, wenn Sie Sie ein Upgrade " +"eines oder mehrerer bereits installierter Pakete durchführen möchten, ohne " +"ein Upgrade aller Pakete, die Sie auf Ihrem System haben, durchzuführen. " +"Anders als das Ziel von »upgrade«, das die neusten Versionen aller aktuell " +"installierten Pakete installiert, wird »install« nur die neusten Versionen " +"der angegebenen Pakete installieren. Geben Sie einfach den Namen des Paketes " +"an, von dem Sie ein Upgrade durchführen möchten und wenn eine neuere Version " +"verfügbar ist, wird sie (und ihre Abhängigkeiten, wie oben beschrieben) " +"heruntergeladen und installiert." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:224 @@ -3959,13 +3862,13 @@ msgid "" "expression." msgstr "" "Wenn keine Pakete dem angegebenen Ausdruck entsprechen und der Ausdruck " -"entweder ».«,»,«,»?« oder »*« enthält, dann wird vermutet, dass es sich " -"um einen regulären POSIX-Ausdruck handelt und er wird auf alle Paketnamen " -"in der Datenbank angewandt. Jeder Treffer wird dann installiert (oder " -"entfernt). Beachten Sie, dass nach übereinstimmenden Zeichenkettenteilen " -"gesucht wird, so dass »lo.*« auf »how-lo« und »lowest« passt. Wenn dies " -"nicht gewünscht wird, hängen Sie an den regulären Ausdruck ein »^«- oder " -"»$«-Zeichen, um genauere reguläre Ausdruck zu erstellen." +"entweder ».«,»,«,»?« oder »*« enthält, dann wird vermutet, dass es sich um einen " +"regulären POSIX-Ausdruck handelt und er wird auf alle Paketnamen in der " +"Datenbank angewandt. Jeder Treffer wird dann installiert (oder entfernt). " +"Beachten Sie, dass nach übereinstimmenden Zeichenkettenteilen gesucht wird, " +"so dass »lo.*« auf »how-lo« und »lowest« passt. Wenn dies nicht gewünscht wird, " +"hängen Sie an den regulären Ausdruck ein »^«- oder »$«-Zeichen, um genauere " +"reguläre Ausdruck zu erstellen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:237 @@ -3981,12 +3884,11 @@ msgid "" "package name (with no intervening space), the identified package will be " "installed instead of removed." msgstr "" -"<literal>remove</literal> ist identisch mit <literal>install</literal>, " -"mit der Ausnahme, dass Pakte entfernt anstatt installiert werden. " -"Beachten Sie, dass das Entfernen von Paketen deren Konfigurationsdateien " -"im System belässt. Wenn ein Pluszeichen an den Paketnamen angehängt wird " -"(ohne Leerzeichen dazwischen) wird das erkannte Paket installiert anstatt " -"entfernt." +"<literal>remove</literal> ist identisch mit <literal>install</literal>, mit " +"der Ausnahme, dass Pakte entfernt anstatt installiert werden. Beachten Sie, " +"dass das Entfernen von Paketen deren Konfigurationsdateien im System " +"belässt. Wenn ein Pluszeichen an den Paketnamen angehängt wird (ohne " +"Leerzeichen dazwischen) wird das erkannte Paket installiert anstatt entfernt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:245 @@ -4011,42 +3913,40 @@ msgstr "source" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:251 +#, 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 while respect the " -"default release, set with the option " -"<literal>APT::Default-Release</literal>, the <option>-t</option> option or " -"per package with with the <literal>pkg/release</literal> syntax, if " -"possible." +"default release, set with the option <literal>APT::Default-Release</" +"literal>, the <option>-t</option> option or per package with the " +"<literal>pkg/release</literal> syntax, if possible." msgstr "" "<literal>source</literal> veranlasst <command>apt-get</command> dazu, " "Paketquellen zu laden. APT wird die verfügbaren Pakete überprüfen, um zu " "entscheiden, welche Paketquellen geladen werden. Es wird dann die neueste " "Version der Paketquelle finden und in das aktuelle Verzeichnis " "herunterladen. Dabei berücksichtigt es das Vorgabe-Release, das mit der " -"Option <literal>APT::Default-Release</literal>, der Option " -"<option>-t</option> oder pro Paket mit der " -"<literal>pkg/release</literal>-Syntax gesetzt wurde, wenn möglich." +"Option <literal>APT::Default-Release</literal>, der Option <option>-t</" +"option> oder pro Paket mit der <literal>pkg/release</literal>-Syntax gesetzt " +"wurde, wenn möglich." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:259 msgid "" -"Source packages are tracked separately from binary packages via " -"<literal>deb-src</literal> type lines in the &sources-list; file. This means " -"that you will need to add such a line for each repository you want to get " -"sources 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." +"Source packages are tracked separately from binary packages via <literal>deb-" +"src</literal> type lines in the &sources-list; file. This means that you " +"will need to add such a line for each repository you want to get sources " +"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 "" -"Paketquellen werden von Programmpaket getrennt über " -"<literal>deb-src</literal>-Typzeilen in der &sources-list;-Datei " -"nachverfolgt. Das bedeutet, dass Sie für jedes Depot, aus dem Sie Quellen " -"erhalten wollen, eine solche Zeile hinzufügen müssen. Wenn Sie dies nicht " -"tun, werden Sie eine andere als die passende (neuere, ältere oder keine) " -"Quellenversion erhalten, die Sie installiert haben oder installieren " -"könnten." +"Paketquellen werden von Programmpaket getrennt über <literal>deb-src</" +"literal>-Typzeilen in der &sources-list;-Datei nachverfolgt. Das bedeutet, " +"dass Sie für jedes Depot, aus dem Sie Quellen erhalten wollen, eine solche " +"Zeile hinzufügen müssen. Wenn Sie dies nicht tun, werden Sie eine andere als " +"die passende (neuere, ältere oder keine) Quellenversion erhalten, die Sie " +"installiert haben oder installieren könnten." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:266 @@ -4056,10 +3956,10 @@ msgid "" "<option>--download-only</option> is specified then the source package will " "not be unpacked." msgstr "" -"Wenn die <option>--compile</option>-Option angegeben ist, dann wird " -"das Paket unter Benutzung von <command>dpkg-buildpackage</command> zu " -"einem binären .deb kompiliert, wenn <option>--download-only</option> " -"angegeben ist, wird das Quellpaket nicht entpackt." +"Wenn die <option>--compile</option>-Option angegeben ist, dann wird das " +"Paket unter Benutzung von <command>dpkg-buildpackage</command> zu einem " +"binären .deb kompiliert, wenn <option>--download-only</option> angegeben " +"ist, wird das Quellpaket nicht entpackt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:271 @@ -4067,15 +3967,15 @@ msgid "" "A specific source version can be retrieved by postfixing the source name " "with an equals and then the version to fetch, similar to the mechanism used " "for the package files. This enables exact matching of the source package " -"name and version, implicitly enabling the " -"<literal>APT::Get::Only-Source</literal> option." +"name and version, implicitly enabling the <literal>APT::Get::Only-Source</" +"literal> option." msgstr "" "Eine bestimmte Quellversion kann durch Voranstellen eines " "Gleichheitszeichens vor den Paketnamen und dann der Version zum " -"Herunterladen erhalten werde, ähnlich dem Mechanismus, der für " -"Paketdateien benutzt wird. Dies ermöglicht exakte Übereinstimmung von " -"Quellpaketname und -Version und impliziert das Einschalten der" -"<literal>APT::Get::Only-Source</literal>-Option." +"Herunterladen erhalten werde, ähnlich dem Mechanismus, der für Paketdateien " +"benutzt wird. Dies ermöglicht exakte Übereinstimmung von Quellpaketname und -" +"Version und impliziert das Einschalten der<literal>APT::Get::Only-Source</" +"literal>-Option." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:277 @@ -4084,8 +3984,8 @@ msgid "" "only in the current directory and are similar to downloading source tar " "balls." msgstr "" -"Beachten Sie, dass Quellpakete nicht wie normale Programmpakete " -"nachverfolgt werden, sie existieren nur im aktuellen Verzeichnis und sind " +"Beachten Sie, dass Quellpakete nicht wie normale Programmpakete nachverfolgt " +"werden, sie existieren nur im aktuellen Verzeichnis und sind " "heruntergeladenen Tarballs ähnlich." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> @@ -4099,9 +3999,9 @@ msgid "" "<literal>build-dep</literal> causes apt-get to install/remove packages in an " "attempt to satisfy the build dependencies for a source package." msgstr "" -"<literal>build-dep</literal> veranlasst apt-get, Pakete zu " -"installieren/entfernen, um zu versuchen, die Bauabhängigkeiten eines " -"Quellpakets zu erfüllen." +"<literal>build-dep</literal> veranlasst apt-get, Pakete zu installieren/" +"entfernen, um zu versuchen, die Bauabhängigkeiten eines Quellpakets zu " +"erfüllen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:287 @@ -4122,20 +4022,19 @@ msgstr "" msgid "" "<literal>clean</literal> clears out the local repository of retrieved " "package files. It removes everything but the lock file from " -"<filename>&cachedir;/archives/</filename> and " -"<filename>&cachedir;/archives/partial/</filename>. When APT is used as a " -"&dselect; method, <literal>clean</literal> is run automatically. Those who " -"do not use dselect will likely want to run <literal>apt-get clean</literal> " -"from time to time to free up disk space." +"<filename>&cachedir;/archives/</filename> and <filename>&cachedir;/archives/" +"partial/</filename>. When APT is used as a &dselect; method, <literal>clean</" +"literal> is run automatically. Those who do not use dselect will likely " +"want to run <literal>apt-get clean</literal> from time to time to free up " +"disk space." msgstr "" "<literal>clean</literal> bereinigt das lokale Depot von heruntergeladenen " "Paketdateien. Es entfernt alles außer der Sperrdatei aus " -"<filename>&cachedir;/archives/</filename> und " -"<filename>&cachedir;/archives/partial/</filename>. Wenn APT als eine " -"&dselect;-Methode benutzt wird, wird <literal>clean</literal> " -"automatisch ausgeführt. Diejenigen, die Dselect nicht benutzen, werden " -"<literal>apt-get clean</literal> wahrscheinlich von Zeit zu Zeit " -"ausführen, um Plattenplatz freizugeben." +"<filename>&cachedir;/archives/</filename> und <filename>&cachedir;/archives/" +"partial/</filename>. Wenn APT als eine &dselect;-Methode benutzt wird, wird " +"<literal>clean</literal> automatisch ausgeführt. Diejenigen, die Dselect " +"nicht benutzen, werden <literal>apt-get clean</literal> wahrscheinlich von " +"Zeit zu Zeit ausführen, um Plattenplatz freizugeben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:302 @@ -4149,18 +4048,18 @@ msgid "" "local repository of retrieved package files. The difference is that it only " "removes package files that can no longer be downloaded, and are largely " "useless. This allows a cache to be maintained over a long period without it " -"growing out of control. The configuration option " -"<literal>APT::Clean-Installed</literal> will prevent installed packages from " -"being erased if it is set to off." +"growing out of control. The configuration option <literal>APT::Clean-" +"Installed</literal> will prevent installed packages from being erased if it " +"is set to off." msgstr "" "Wie <literal>clean</literal> bereinigt <literal>autoclean</literal> das " "lokale Depot von heruntergeladenen Paketdateien. Der Unterschied besteht " "darin, dass es nur Pakete entfernt, die nicht mehr heruntergeladen werden " "können und größtenteils nutzlos sind. Dies erlaubt es, einen " "Zwischenspeicher über eine lange Zeitspanne zu betreuen, ohne dass er " -"unkontrolliert anwächst. Die Konfigurationsoption " -"<literal>APT::Clean-Installed</literal> wird installierte Pakete vor der " -"Löschung bewahren, wenn sie auf off gesetzt ist." +"unkontrolliert anwächst. Die Konfigurationsoption <literal>APT::Clean-" +"Installed</literal> wird installierte Pakete vor der Löschung bewahren, wenn " +"sie auf off gesetzt ist." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:312 @@ -4175,8 +4074,8 @@ msgid "" "are no more needed." msgstr "" "<literal>autoremove</literal> wird benutzt, um Pakete, die automatisch " -"installiert wurden, um Abhängigkeiten für einige Pakete zu erfüllen und " -"und die nicht mehr benötigt werden, zu entfernen." +"installiert wurden, um Abhängigkeiten für einige Pakete zu erfüllen und und " +"die nicht mehr benötigt werden, zu entfernen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:323 apt-get.8.xml:429 @@ -4204,17 +4103,17 @@ msgid "" "Configuration Item: <literal>APT::Get::Download-Only</literal>." msgstr "" "Nur herunterladen; Paketdateien werde nur heruntergeladen, nicht entpackt " -"oder installiert. Konfigurationselement: " -"<literal>APT::Get::Download-Only</literal>." +"oder installiert. Konfigurationselement: <literal>APT::Get::Download-Only</" +"literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:333 msgid "<option>--fix-broken</option>" msgstr "<option>--fix-broken</option>" +# s/Any Package that are specified/Any package that is specified/ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:334 -# s/Any Package that are specified/Any package that is specified/ 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 " @@ -4225,23 +4124,22 @@ msgid "" "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>." -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 " -"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 Abhängigkeitsstruktur eines Systems so fehlerhaft ist, dass ein " -"manuelles Eingreifen erforderlich ist (was normalerweise bedeutet, dass " -"&dselect; oder <command>dpkg --remove</command> benutzt wird, um einige " -"der fehlerhaften Pakete zu beseitigen). Wenn Sie die Option zusammen " -"mit <option>-m</option> benutzen, könnte das in einigen Situationen zu " -"Fehlern führen. Konfigurationselement: " -"<literal>APT::Get::Fix-Broken</literal>." +"may produce an error in some situations. Configuration Item: <literal>APT::" +"Get::Fix-Broken</literal>." +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 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 " +"Abhängigkeitsstruktur eines Systems so fehlerhaft ist, dass ein manuelles " +"Eingreifen erforderlich ist (was normalerweise bedeutet, dass &dselect; oder " +"<command>dpkg --remove</command> benutzt wird, um einige der fehlerhaften " +"Pakete zu beseitigen). Wenn Sie die Option zusammen mit <option>-m</option> " +"benutzen, könnte das in einigen Situationen zu Fehlern führen. " +"Konfigurationselement: <literal>APT::Get::Fix-Broken</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:347 @@ -4258,21 +4156,21 @@ msgstr "<option>--fix-missing</option>" msgid "" "Ignore missing packages; If packages cannot be retrieved or fail the " "integrity check after retrieval (corrupted package files), hold back those " -"packages and handle the result. Use of this option together with " -"<option>-f</option> may produce an error in some situations. If a package is " -"selected for installation (particularly if it is mentioned on the command " -"line) and it could not be downloaded then it will be silently held back. " +"packages and handle the result. Use of this option together with <option>-f</" +"option> may produce an error in some situations. If a package is selected " +"for installation (particularly if it is mentioned on the command line) and " +"it could not be downloaded then it will be silently held back. " "Configuration Item: <literal>APT::Get::Fix-Missing</literal>." msgstr "" -"Fehlende Pakete ignorieren; Wenn Pakete nicht heruntergeladen werden " -"können oder die Integritätsprüfung nach dem Herunterladen fehlschlägt " -"(fehlerhafte Paketdateien), werden diese Pakete zurückgehalten und das " -"Ergebnis verarbeitet. Die Benutzung dieser Option zusammen mit " -"<option>-f</option> kann in einigen Situationen zu Fehlern führen. Wenn " -"ein Paket zur Installation ausgewählt ist (besonders, wenn es auf der " -"Befehlszeile genannt wurde) und es nicht heruntergeladen werden kann, " -"wird es stillschweigend zurückgehalten. Konfigurationselement: " -"<literal>APT::Get::Fix-Missing</literal>." +"Fehlende Pakete ignorieren; Wenn Pakete nicht heruntergeladen werden können " +"oder die Integritätsprüfung nach dem Herunterladen fehlschlägt (fehlerhafte " +"Paketdateien), werden diese Pakete zurückgehalten und das Ergebnis " +"verarbeitet. Die Benutzung dieser Option zusammen mit <option>-f</option> " +"kann in einigen Situationen zu Fehlern führen. Wenn ein Paket zur " +"Installation ausgewählt ist (besonders, wenn es auf der Befehlszeile genannt " +"wurde) und es nicht heruntergeladen werden kann, wird es stillschweigend " +"zurückgehalten. Konfigurationselement: <literal>APT::Get::Fix-Missing</" +"literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:359 @@ -4282,15 +4180,14 @@ msgstr "<option>--no-download</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:360 msgid "" -"Disables downloading of packages. This is best used with " -"<option>--ignore-missing</option> to force APT to use only the .debs it has " -"already downloaded. Configuration Item: " -"<literal>APT::Get::Download</literal>." +"Disables downloading of packages. This is best used with <option>--ignore-" +"missing</option> to force APT to use only the .debs it has already " +"downloaded. Configuration Item: <literal>APT::Get::Download</literal>." msgstr "" "Schaltet das Herunterladen von Paketen aus. Dies wird am besten mit " -"<option>--ignore-missing</option> benutzt, um APT zu zwingen, nur die " -".debs zu benutzten, die es bereits heruntergeladenen hat. " -"Konfigurationselement: <literal>APT::Get::Download</literal>." +"<option>--ignore-missing</option> benutzt, um APT zu zwingen, nur die .debs " +"zu benutzten, die es bereits heruntergeladenen hat. Konfigurationselement: " +"<literal>APT::Get::Download</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:367 @@ -4304,14 +4201,13 @@ msgid "" "<literal>quiet</literal>." msgstr "" "Still; erzeugt eine Ausgabe, die für Protokollierung geeignet ist und " -"Fortschrittsanzeiger weglässt. Mehr »q«s unterdrücken mehr Ausgaben, bis " -"zu einem Maximum von 2. Sie können außerdem <option>-q=#</option> " -"benutzen, um die Stillestufe zu setzen, was die Konfigurationsdatei " -"überschreibt. Beachten Sie, dass Stillestufe 2 <option>-y</option> " -"impliziert. Sie sollten niemals -qq ohne einen keine-Aktion-Umwandler, " -"wie -d, --print-uris oder -s benutzen, da APT entscheiden könnte, etwas " -"zu tun, das Sie nicht erwarten. Konfigurationselement: " -"<literal>quiet</literal>." +"Fortschrittsanzeiger weglässt. Mehr »q«s unterdrücken mehr Ausgaben, bis zu " +"einem Maximum von 2. Sie können außerdem <option>-q=#</option> benutzen, um " +"die Stillestufe zu setzen, was die Konfigurationsdatei überschreibt. " +"Beachten Sie, dass Stillestufe 2 <option>-y</option> impliziert. Sie sollten " +"niemals -qq ohne einen keine-Aktion-Umwandler, wie -d, --print-uris oder -s " +"benutzen, da APT entscheiden könnte, etwas zu tun, das Sie nicht erwarten. " +"Konfigurationselement: <literal>quiet</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:377 @@ -4327,8 +4223,8 @@ msgstr "<option>--dry-run</option>" #: apt-get.8.xml:382 msgid "" "No action; perform a simulation of events that would occur but do not " -"actually change the system. Configuration Item: " -"<literal>APT::Get::Simulate</literal>." +"actually change the system. Configuration Item: <literal>APT::Get::" +"Simulate</literal>." msgstr "" "Keine Aktion; führt eine Simulation von Ereignissen aus, die eintreten " "würden, aber das aktuelle System nicht verändern. Konfigurationselement: " @@ -4337,22 +4233,20 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:386 msgid "" -"Simulation run as user will deactivate locking " -"(<literal>Debug::NoLocking</literal>) automatic. Also a notice will be " -"displayed indicating that this is only a simulation, if the option " -"<literal>APT::Get::Show-User-Simulation-Note</literal> is set (Default: " -"true). Neither NoLocking nor the notice will be triggered if run as root " -"(root should know what he is doing without further warnings by " -"<literal>apt-get</literal>)." +"Simulation run as user will deactivate locking (<literal>Debug::NoLocking</" +"literal>) automatic. Also a notice will be displayed indicating that this " +"is only a simulation, if the option <literal>APT::Get::Show-User-Simulation-" +"Note</literal> is set (Default: true). Neither NoLocking nor the notice " +"will be triggered if run as root (root should know what he is doing without " +"further warnings by <literal>apt-get</literal>)." msgstr "" "Ausführung der Simulation als normaler Anwender wird das Sperren " "(<literal>Debug::NoLocking</literal>) automatisch deaktivieren. Außerdem " "wird eine Mitteilung angezeigt, die angibt, dass dies nur eine Simulation " -"ist, wenn die Option " -"<literal>APT::Get::Show-User-Simulation-Note</literal> gesetzt ist " -"(Vorgabe ist true). Weder NoLocking noch die Mitteilung werden ausgelöst, " -"wenn es als root ausgeführt wird (root sollte ohne weitere Warnungen von " -"<literal>apt-get</literal> wissen, was er tut)." +"ist, wenn die Option <literal>APT::Get::Show-User-Simulation-Note</literal> " +"gesetzt ist (Vorgabe ist true). Weder NoLocking noch die Mitteilung werden " +"ausgelöst, wenn es als root ausgeführt wird (root sollte ohne weitere " +"Warnungen von <literal>apt-get</literal> wissen, was er tut)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:392 @@ -4362,11 +4256,10 @@ msgid "" "indicate broken packages with and empty set of square brackets meaning " "breaks that are of no consequence (rare)." msgstr "" -"Simulieren gibt eine Serie von Zeilen aus, von denen jede eine " -"Dpkg-Operation darstellt: Konfigurieren (Conf), Entfernen (Remv), " -"Entpacken (Inst). Eckige Klammern zeigen beschädigte Pakete an und ein " -"leeres Paar eckiger Klammern bedeutet Unterbrechungen, die keine Folgen " -"haben (selten)." +"Simulieren gibt eine Serie von Zeilen aus, von denen jede eine Dpkg-" +"Operation darstellt: Konfigurieren (Conf), Entfernen (Remv), Entpacken " +"(Inst). Eckige Klammern zeigen beschädigte Pakete an und ein leeres Paar " +"eckiger Klammern bedeutet Unterbrechungen, die keine Folgen haben (selten)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:399 @@ -4392,12 +4285,12 @@ msgid "" "essential package occurs then <literal>apt-get</literal> will abort. " "Configuration Item: <literal>APT::Get::Assume-Yes</literal>." msgstr "" -"Automatisches »Ja« auf Anfragen; Versucht »Ja« auf alle Anfragen zu " -"antworten und ohne Eingaben zu laufen. Wenn eine unerwünschte Situation " -"eintritt, wie ein gehaltenes Paket zu ändern, ein nicht authentifiziert " -"Paket zu installieren oder ein essentielles Paket zu entfernen, dann " -"wird <literal>apt-get</literal> abgebrochen. Konfigurationselement: " -"<literal>APT::Get::Assume-Yes</literal>." +"Automatisches »Ja« auf Anfragen; Versucht »Ja« auf alle Anfragen zu antworten " +"und ohne Eingaben zu laufen. Wenn eine unerwünschte Situation eintritt, wie " +"ein gehaltenes Paket zu ändern, ein nicht authentifiziert Paket zu " +"installieren oder ein essentielles Paket zu entfernen, dann wird " +"<literal>apt-get</literal> abgebrochen. Konfigurationselement: <literal>APT::" +"Get::Assume-Yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:408 @@ -4435,9 +4328,9 @@ msgid "" "Show full versions for upgraded and installed packages. Configuration Item: " "<literal>APT::Get::Show-Versions</literal>." msgstr "" -"Zeigt vollständige Versionen für Pakete, von denen ein Upgrade " -"durchgeführt oder die installiert wurden. Konfigurationselement: " -"<literal>APT::Get::Show-Versions</literal>." +"Zeigt vollständige Versionen für Pakete, von denen ein Upgrade durchgeführt " +"oder die installiert wurden. Konfigurationselement: <literal>APT::Get::Show-" +"Versions</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:419 @@ -4491,11 +4384,11 @@ msgid "" "<literal>dist-upgrade</literal> to override a large number of undesired " "holds. Configuration Item: <literal>APT::Ignore-Hold</literal>." msgstr "" -"Ignoriert zurückhalten des Paketes; Dies veranlasst " -"<command>apt-get</command>, ein für das Paket gesetztes »Halten« zu " -"ignorieren. Dies kann zusammen mit <literal>dist-upgrade</literal> " -"nützlich sein, um eine große Anzahl ungewünschter »Halten« zu " -"überschreiben. Konfigurationselement: <literal>APT::Ignore-Hold</literal>." +"Ignoriert zurückhalten des Paketes; Dies veranlasst <command>apt-get</" +"command>, ein für das Paket gesetztes »Halten« zu ignorieren. Dies kann " +"zusammen mit <literal>dist-upgrade</literal> nützlich sein, um eine große " +"Anzahl ungewünschter »Halten« zu überschreiben. Konfigurationselement: " +"<literal>APT::Ignore-Hold</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:440 @@ -4505,16 +4398,16 @@ msgstr "<option>--no-upgrade</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:441 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>." +"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>." msgstr "" -"Kein Upgrade von Paketen durchführen; Wenn es zusammen mit " -"<literal>install</literal> benutzt wird, wird " -"<literal>no-upgrade</literal> auf der Befehlszeile ein Upgrade von " -"Paketen verhindern, wenn sie bereits installiert sind. " -"Konfigurationselement: <literal>APT::Get::Upgrade</literal>." +"Kein Upgrade von Paketen durchführen; Wenn es zusammen mit <literal>install</" +"literal> benutzt wird, wird <literal>no-upgrade</literal> auf der " +"Befehlszeile ein Upgrade von Paketen verhindern, wenn sie bereits " +"installiert sind. Konfigurationselement: <literal>APT::Get::Upgrade</" +"literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:447 @@ -4526,16 +4419,15 @@ msgstr "<option>--force-yes</option>" msgid "" "Force yes; This is a dangerous option that will cause apt to continue " "without prompting if it is doing something potentially harmful. It should " -"not be used except in very special situations. Using " -"<literal>force-yes</literal> can potentially destroy your system! " -"Configuration Item: <literal>APT::Get::force-yes</literal>." -msgstr "" -"»Ja« erzwingen; Dies ist eine gefährliche Option, die APT veranlasst, " -"ohne Nachfrage fortzufahren, wenn es etwas möglicherweise schädliches " -"tut. Es sollte nicht benutzt werden, außer in ganz besonderen " -"Situationen. <literal>force-yes</literal> zu benutzen, kann " -"möglicherweise ihr System zerstören! Konfigurationselement: " +"not be used except in very special situations. Using <literal>force-yes</" +"literal> can potentially destroy your system! Configuration Item: " "<literal>APT::Get::force-yes</literal>." +msgstr "" +"»Ja« erzwingen; Dies ist eine gefährliche Option, die APT veranlasst, ohne " +"Nachfrage fortzufahren, wenn es etwas möglicherweise schädliches tut. Es " +"sollte nicht benutzt werden, außer in ganz besonderen Situationen. " +"<literal>force-yes</literal> zu benutzen, kann möglicherweise ihr System " +"zerstören! Konfigurationselement: <literal>APT::Get::force-yes</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:455 @@ -4549,42 +4441,39 @@ msgid "" "will have the path, the destination file name, the size and the expected md5 " "hash. Note that the file name to write to will not always match the file " "name on the remote site! This also works with the <literal>source</literal> " -"and <literal>update</literal> commands. When used with the " -"<literal>update</literal> command the MD5 and size are not included, and it " -"is up to the user to decompress any compressed files. Configuration Item: " -"<literal>APT::Get::Print-URIs</literal>." -msgstr "" -"Anstatt die Dateien herunterzuladen, werden ihre URIs ausgegeben. Jede " -"URI wird den Pfad, den Zieldateinamen, die Größe und den erwarteten " -"md5-Hash enthalten. Beachten Sie, dass der zu schreibende Dateiname nicht " -"immer dem Dateinamen auf der entfernt gelegenen Seite entspricht. Dies " -"funktioniert auch mit den Befehlen <literal>source</literal> und " -"<literal>update</literal>. Wenn es mit dem Befehl " -"<literal>update</literal> benutzt wird, sind MD5 und Größe nicht " -"enthalten und es ist Aufgabe des Benutzers, komprimierte Dateien zu " -"dekomprimieren. Konfigurationselement: " -"<literal>APT::Get::Print-URIs</literal>." +"and <literal>update</literal> commands. When used with the <literal>update</" +"literal> command the MD5 and size are not included, and it is up to the user " +"to decompress any compressed files. Configuration Item: <literal>APT::Get::" +"Print-URIs</literal>." +msgstr "" +"Anstatt die Dateien herunterzuladen, werden ihre URIs ausgegeben. Jede URI " +"wird den Pfad, den Zieldateinamen, die Größe und den erwarteten md5-Hash " +"enthalten. Beachten Sie, dass der zu schreibende Dateiname nicht immer dem " +"Dateinamen auf der entfernt gelegenen Seite entspricht. Dies funktioniert " +"auch mit den Befehlen <literal>source</literal> und <literal>update</" +"literal>. Wenn es mit dem Befehl <literal>update</literal> benutzt wird, " +"sind MD5 und Größe nicht enthalten und es ist Aufgabe des Benutzers, " +"komprimierte Dateien zu dekomprimieren. Konfigurationselement: <literal>APT::" +"Get::Print-URIs</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:466 msgid "<option>--purge</option>" msgstr "<option>--purge</option>" +# s/equivalent for/equivalent to the/ #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:467 -# s/equivalent for/equivalent to the/ 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>." +"(\"*\") 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>." msgstr "" -"»remove« »purge« für alles zu entfernende benutzen. Ein Stern (»*«) wird " -"bei Paketen angezeigt, die zum vollständigen Entfernen vorgemerkt sind. " -"<option>remove --purge</option> entspricht dem Befehl " -"<option>purge</option>. Konfigurationselement: " -"<literal>APT::Get::Purge</literal>." +"»remove« »purge« für alles zu entfernende benutzen. Ein Stern (»*«) wird bei " +"Paketen angezeigt, die zum vollständigen Entfernen vorgemerkt sind. " +"<option>remove --purge</option> entspricht dem Befehl <option>purge</" +"option>. Konfigurationselement: <literal>APT::Get::Purge</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:474 @@ -4598,8 +4487,7 @@ msgid "" "Configuration Item: <literal>APT::Get::ReInstall</literal>." msgstr "" "Paket erneut installieren, die bereits installiert und in der neuesten " -"Version sind. Konfigurationselement: " -"<literal>APT::Get::ReInstall</literal>." +"Version sind. Konfigurationselement: <literal>APT::Get::ReInstall</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:479 @@ -4613,17 +4501,16 @@ msgid "" "it off. When on <command>apt-get</command> will automatically manage the " "contents of <filename>&statedir;/lists</filename> to ensure that obsolete " "files are erased. The only reason to turn it off is if you frequently " -"change your source list. Configuration Item: " -"<literal>APT::Get::List-Cleanup</literal>." +"change your source list. Configuration Item: <literal>APT::Get::List-" +"Cleanup</literal>." msgstr "" "Diese Option ist standardmäßig eingeschaltet. Um sie auszuschalten, benutzen " "Sie <literal>--no-list-cleanup</literal>. Wenn eingeschaltet, wird " -"<command>apt-get</command> den Inhalt von " -"<filename>&statedir;/lists</filename> automatisch verwalten, um " -"sicherzustellen, dass veraltete Dateien gelöscht werden. Nur das häufige " -"Ändern der Quelllisten stellt den einzigen Grund zum Ausschalten der " -"Option dar.Konfigurationselement: " -"<literal>APT::Get::List-Cleanup</literal>." +"<command>apt-get</command> den Inhalt von <filename>&statedir;/lists</" +"filename> automatisch verwalten, um sicherzustellen, dass veraltete Dateien " +"gelöscht werden. Nur das häufige Ändern der Quelllisten stellt den einzigen " +"Grund zum Ausschalten der Option dar.Konfigurationselement: <literal>APT::" +"Get::List-Cleanup</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:489 @@ -4640,27 +4527,25 @@ msgstr "<option>--default-release</option>" msgid "" "This option controls the default input to the policy engine, it creates a " "default pin at priority 990 using the specified release string. This " -"overrides the general settings in " -"<filename>/etc/apt/preferences</filename>. Specifically pinned packages are " -"not affected by the value of this option. In short, this option lets you " -"have simple control over which distribution packages will be retrieved " -"from. Some common examples might be <option>-t '2.1*'</option>, <option>-t " -"unstable</option> or <option>-t sid</option>. Configuration Item: " -"<literal>APT::Default-Release</literal>; see also the &apt-preferences; " -"manual page." +"overrides the general settings in <filename>/etc/apt/preferences</" +"filename>. Specifically pinned packages are not affected by the value of " +"this option. In short, this option lets you have simple control over which " +"distribution packages will be retrieved from. Some common examples might be " +"<option>-t '2.1*'</option>, <option>-t unstable</option> or <option>-t sid</" +"option>. Configuration Item: <literal>APT::Default-Release</literal>; see " +"also the &apt-preferences; manual page." msgstr "" "Diese Option steuert die standardmäßige Eingabe an die Einheit zur " -"Durchsetzung der Richtlinien (»policy«), sie erstellt eine Vorgabe-Pin " -"mit Priorität 990 unter Benutzung der angegebenen Release-Zeichenkette. " -"Dies überschreibt die allgemeinen Einstellungen in " -"<filename>/etc/apt/preferences</filename>. Pakete mit speziellem Pinning " -"sind nicht vom Wert dieser Option betroffen. Kurz gesagt, gibt Ihnen " -"diese Option einfache Kontrolle darüber, welche Distributions-Pakete " -"heruntergeladen werden sollen. Einige typische Beispiele könnten " -"<option>-t '2.1*'</option>, <option>-t unstable</option> oder " -"<option>-t sid</option> sein. Konfigurationselement: " -"<literal>APT::Default-Release</literal>; Lesen Sie auch die " -"&apt-preferences;-Handbuchseite." +"Durchsetzung der Richtlinien (»policy«), sie erstellt eine Vorgabe-Pin mit " +"Priorität 990 unter Benutzung der angegebenen Release-Zeichenkette. Dies " +"überschreibt die allgemeinen Einstellungen in <filename>/etc/apt/" +"preferences</filename>. Pakete mit speziellem Pinning sind nicht vom Wert " +"dieser Option betroffen. Kurz gesagt, gibt Ihnen diese Option einfache " +"Kontrolle darüber, welche Distributions-Pakete heruntergeladen werden " +"sollen. Einige typische Beispiele könnten <option>-t '2.1*'</option>, " +"<option>-t unstable</option> oder <option>-t sid</option> sein. " +"Konfigurationselement: <literal>APT::Default-Release</literal>; Lesen Sie " +"auch die &apt-preferences;-Handbuchseite." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:504 @@ -4671,16 +4556,15 @@ msgstr "<option>--trivial-only</option>" #: apt-get.8.xml:506 msgid "" "Only perform operations that are 'trivial'. Logically this can be considered " -"related to <option>--assume-yes</option>, where " -"<option>--assume-yes</option> will answer yes to any prompt, " -"<option>--trivial-only</option> will answer no. Configuration Item: " -"<literal>APT::Get::Trivial-Only</literal>." +"related to <option>--assume-yes</option>, where <option>--assume-yes</" +"option> will answer yes to any prompt, <option>--trivial-only</option> will " +"answer no. Configuration Item: <literal>APT::Get::Trivial-Only</literal>." msgstr "" -"Nur Operationen ausführen, die »trivial« sind. Logischerweise kann dies " -"in Betracht bezogen auf <option>--assume-yes</option> sein, wobei " -"<option>--assume-yes</option> auf jede Frage mit »Ja« und " -"<option>--trivial-only</option> mit »Nein« antworten wird. " -"Konfigurationselement: <literal>APT::Get::Trivial-Only</literal>." +"Nur Operationen ausführen, die »trivial« sind. Logischerweise kann dies in " +"Betracht bezogen auf <option>--assume-yes</option> sein, wobei <option>--" +"assume-yes</option> auf jede Frage mit »Ja« und <option>--trivial-only</" +"option> mit »Nein« antworten wird. Konfigurationselement: <literal>APT::Get::" +"Trivial-Only</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:512 @@ -4693,9 +4577,8 @@ msgid "" "If any packages are to be removed apt-get immediately aborts without " "prompting. Configuration Item: <literal>APT::Get::Remove</literal>." msgstr "" -"Wenn irgendwelche Pakete entfernt werden sollen, bricht apt-get sofort " -"ohne Nachfrage ab. Konfigurationselement: " -"<literal>APT::Get::Remove</literal>." +"Wenn irgendwelche Pakete entfernt werden sollen, bricht apt-get sofort ohne " +"Nachfrage ab. Konfigurationselement: <literal>APT::Get::Remove</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:518 @@ -4705,16 +4588,16 @@ msgstr "<option>--auto-remove</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:519 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>." -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: " +"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>." +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>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:525 @@ -4724,21 +4607,21 @@ msgstr "<option>--only-source</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:526 msgid "" -"Only has meaning for the <literal>source</literal> and " -"<literal>build-dep</literal> commands. Indicates that the given source " -"names are not to be mapped through the binary table. This means that if " -"this option is specified, these commands will only accept source package " -"names as arguments, rather than accepting binary package names and looking " -"up the corresponding source package. Configuration Item: " -"<literal>APT::Get::Only-Source</literal>." +"Only has meaning for the <literal>source</literal> and <literal>build-dep</" +"literal> commands. Indicates that the given source names are not to be " +"mapped through the binary table. This means that if this option is " +"specified, these commands will only accept source package names as " +"arguments, rather than accepting binary package names and looking up the " +"corresponding source package. Configuration Item: <literal>APT::Get::Only-" +"Source</literal>." msgstr "" "Hat nur eine Bedeutung für die Befehle <literal>source</literal> und " "<literal>build-dep</literal>. Zeigt an, dass die angegebenen Quellnamen " -"nicht durch die Programmtabelle ermittelt werden. Dies bedeutet, das " -"dieser Befehl, wenn diese Option angegeben ist, nur Quellpaketnamen als " -"Argumente akzeptiert, anstatt Programmpakete zu akzeptieren und nach den " -"entsprechenden Quellpaketen zu suchen. Konfigurationselement: " -"<literal>APT::Get::Only-Source</literal>." +"nicht durch die Programmtabelle ermittelt werden. Dies bedeutet, das dieser " +"Befehl, wenn diese Option angegeben ist, nur Quellpaketnamen als Argumente " +"akzeptiert, anstatt Programmpakete zu akzeptieren und nach den " +"entsprechenden Quellpaketen zu suchen. Konfigurationselement: <literal>APT::" +"Get::Only-Source</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:536 @@ -4759,14 +4642,13 @@ msgstr "<option>--tar-only</option>" #: apt-get.8.xml:537 msgid "" "Download only the diff, dsc, or tar file of a source archive. Configuration " -"Item: <literal>APT::Get::Diff-Only</literal>, " -"<literal>APT::Get::Dsc-Only</literal>, and " -"<literal>APT::Get::Tar-Only</literal>." +"Item: <literal>APT::Get::Diff-Only</literal>, <literal>APT::Get::Dsc-Only</" +"literal>, and <literal>APT::Get::Tar-Only</literal>." msgstr "" "Nur die diff-, dsc-, oder tar-Dateien eines Quellarchivs herunterladen. " "Konfigurationselemente: <literal>APT::Get::Diff-Only</literal>, " -"<literal>APT::Get::Dsc-Only</literal> und " -"<literal>APT::Get::Tar-Only</literal>." +"<literal>APT::Get::Dsc-Only</literal> und <literal>APT::Get::Tar-Only</" +"literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-get.8.xml:542 @@ -4791,12 +4673,12 @@ msgstr "<option>--allow-unauthenticated</option>" #: apt-get.8.xml:548 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::AllowUnauthenticated</literal>." +"is useful for tools like pbuilder. Configuration Item: <literal>APT::Get::" +"AllowUnauthenticated</literal>." msgstr "" -"Ignorieren, wenn Pakete nicht authentifiziert werden können und nicht " -"danach fragen. Dies ist für Werkzeuge wie pbuilder nützlich. " -"Konfigurationselement: <literal>APT::Get::AllowUnauthenticated</literal>." +"Ignorieren, wenn Pakete nicht authentifiziert werden können und nicht danach " +"fragen. Dies ist für Werkzeuge wie pbuilder nützlich. Konfigurationselement: " +"<literal>APT::Get::AllowUnauthenticated</literal>." #. type: Content of: <refentry><refsect1><variablelist> #: apt-get.8.xml:561 @@ -4811,12 +4693,12 @@ msgstr "" #: apt-get.8.xml:570 msgid "" "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " -"&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, " -"&apt-preferences;, the APT Howto." +"&apt-config;, &apt-secure;, The APT User's guide in &guidesdir;, &apt-" +"preferences;, the APT Howto." msgstr "" "&apt-cache;, &apt-cdrom;, &dpkg;, &dselect;, &sources-list;, &apt-conf;, " -"&apt-config;, &apt-secure;, Die APT-Benutzeranleitung in &guidesdir;, " -"&apt-preferences;, das APT-Howto." +"&apt-config;, &apt-secure;, Die APT-Benutzeranleitung in &guidesdir;, &apt-" +"preferences;, das APT-Howto." #. type: Content of: <refentry><refsect1><para> #: apt-get.8.xml:576 @@ -4824,8 +4706,8 @@ msgid "" "<command>apt-get</command> returns zero on normal operation, decimal 100 on " "error." msgstr "" -"<command>apt-get</command> gibt bei normalen Operationen 0 zurück, " -"dezimal 100 bei Fehlern." +"<command>apt-get</command> gibt bei normalen Operationen 0 zurück, dezimal " +"100 bei Fehlern." #. type: Content of: <refentry><refsect1><title> #: apt-get.8.xml:579 @@ -4861,12 +4743,12 @@ msgstr "APT-Schlüsselverwaltungsdienstprogramm" #: apt-key.8.xml:28 msgid "" "<command>apt-key</command> <arg><replaceable>command</replaceable>/</arg> " -"<arg " -"rep=\"repeat\"><option><replaceable>arguments</replaceable></option></arg>" +"<arg rep=\"repeat\"><option><replaceable>arguments</replaceable></option></" +"arg>" msgstr "" "<command>apt-key</command> <arg><replaceable>Befehl</replaceable>/</arg> " -"<arg " -"rep=\"repeat\"><option><replaceable>Argumente</replaceable></option></arg>" +"<arg rep=\"repeat\"><option><replaceable>Argumente</replaceable></option></" +"arg>" #. type: Content of: <refentry><refsect1><para> #: apt-key.8.xml:36 @@ -4876,8 +4758,8 @@ msgid "" "keys will be considered trusted." msgstr "" "<command>apt-key</command> wird benutzt, um eine Liste von Schlüsseln zu " -"verwalten, die APT benutzt, um Pakete zu authentifizieren. Pakete, die " -"durch Benutzung dieser Schlüssel authentifiziert wurden, werden als " +"verwalten, die APT benutzt, um Pakete zu authentifizieren. Pakete, die durch " +"Benutzung dieser Schlüssel authentifiziert wurden, werden als " "vertrauenswürdig betrachtet." #. type: Content of: <refentry><refsect1><title> @@ -4897,10 +4779,10 @@ msgid "" "<replaceable>filename</replaceable>, or standard input if " "<replaceable>filename</replaceable> is <literal>-</literal>." msgstr "" -"Einen neuen Schlüssel zur Liste der vertrauenswürdigen Schlüssel " -"hinzufügen. Der Schlüssel wird aus <replaceable>Dateiname</replaceable> " -"gelesen oder, wenn <replaceable>Dateiname</replaceable> " -"<literal>-</literal> ist, von der Standardeingabe." +"Einen neuen Schlüssel zur Liste der vertrauenswürdigen Schlüssel hinzufügen. " +"Der Schlüssel wird aus <replaceable>Dateiname</replaceable> gelesen oder, " +"wenn <replaceable>Dateiname</replaceable> <literal>-</literal> ist, von der " +"Standardeingabe." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:56 @@ -5013,8 +4895,10 @@ msgstr "Schlüsselring vertrauenswürdiger Schlüssel des Debian-Archivs." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:152 -msgid "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" -msgstr "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" +msgid "" +"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" +msgstr "" +"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:153 @@ -5034,8 +4918,8 @@ 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>" -"9. August 2009</date>" +"&apt-author.moconnor; &apt-author.team; &apt-email; &apt-product; <date>9. " +"August 2009</date>" #. type: Content of: <refentry><refnamediv><refname> #: apt-mark.8.xml:22 apt-mark.8.xml:29 @@ -5052,21 +4936,19 @@ msgstr "" #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-mark.8.xml:36 msgid "" -" <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>" -msgstr "" -" <command>apt-mark</command> <arg><option>-hv</option></arg> " -"<arg><option>-f=<replaceable>DATEINAME</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>Paket</replaceable></arg> </arg> <arg " -"choice=\"plain\">showauto</arg> </group>" +" <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>" +msgstr "" +" <command>apt-mark</command> <arg><option>-hv</option></arg> <arg><option>-" +"f=<replaceable>DATEINAME</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>Paket</replaceable></arg> </" +"arg> <arg choice=\"plain\">showauto</arg> </group>" #. type: Content of: <refentry><refsect1><para> #: apt-mark.8.xml:53 @@ -5106,8 +4988,8 @@ msgid "" "installed packages depend on this package." msgstr "" "<literal>markauto</literal> wird benutzt, um ein Paket als automatisch " -"installiert zu markieren, was veranlasst, dass das Paket entfernt wird, " -"wenn keine manuell installierten Pakete von ihm abhängen." +"installiert zu markieren, was veranlasst, dass das Paket entfernt wird, wenn " +"keine manuell installierten Pakete von ihm abhängen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-mark.8.xml:73 @@ -5141,28 +5023,32 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-mark.8.xml:93 -msgid "<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>" +msgid "" +"<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>" msgstr "" "<option>-f=<filename><replaceable>DATEINAME</replaceable></filename></option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-mark.8.xml:94 -msgid "<option>--file=<filename><replaceable>FILENAME</replaceable></filename></option>" +msgid "" +"<option>--file=<filename><replaceable>FILENAME</replaceable></filename></" +"option>" msgstr "" -"<option>--file=<filename><replaceable>DATEINAME</replaceable></filename></option>" +"<option>--file=<filename><replaceable>DATEINAME</replaceable></filename></" +"option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:97 msgid "" -"Read/Write package stats from " -"<filename><replaceable>FILENAME</replaceable></filename> instead of the " -"default location, which is <filename>extended_status</filename> in the " -"directory defined by the Configuration Item: <literal>Dir::State</literal>." +"Read/Write package stats from <filename><replaceable>FILENAME</replaceable></" +"filename> instead of the default location, which is " +"<filename>extended_status</filename> in the directory defined by the " +"Configuration Item: <literal>Dir::State</literal>." msgstr "" "Paketstatus von <filename><replaceable>DATEINAME</replaceable></filename> " -"lesen/schreiben, anstatt vom Standardort, der " -"<filename>extended_status</filename> im von Konfigurationselement " -"<literal>Dir::State</literal> definierten Verzeichnis, ist." +"lesen/schreiben, anstatt vom Standardort, der <filename>extended_status</" +"filename> im von Konfigurationselement <literal>Dir::State</literal> " +"definierten Verzeichnis, ist." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-mark.8.xml:103 @@ -5202,9 +5088,9 @@ msgstr "<filename>/var/lib/apt/extended_states</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-mark.8.xml:125 msgid "" -"Status list of auto-installed packages. Configuration Item: " -"<literal>Dir::State</literal> sets the path to the " -"<filename>extended_states</filename> file." +"Status list of auto-installed packages. Configuration Item: <literal>Dir::" +"State</literal> sets the path to the <filename>extended_states</filename> " +"file." msgstr "" "Statusliste automatisch installierter Pakete. Konfigurationselement: " "<literal>Dir::State</literal> setzt den Pfad zur Datei " @@ -5244,8 +5130,8 @@ msgid "" msgstr "" "Beginnend mit Version 0.6 enthält <command>apt</command> Code, der die " "Signatur der Release-Datei für alle Archive prüft. Dies stellt sicher, dass " -"Pakete im Archiv nicht von Leuten geändert werden können, die keinen " -"Zugriff auf den Signierschlüssel der Release-Datei haben." +"Pakete im Archiv nicht von Leuten geändert werden können, die keinen Zugriff " +"auf den Signierschlüssel der Release-Datei haben." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:50 @@ -5259,9 +5145,9 @@ msgstr "" "Wenn ein Paket aus einem Archiv ohne Signatur stammt oder einem mit " "Signatur, für das APT keinen Schlüssel hat, wird dieses Paket als nicht " "vertrauenswürdig angesehen und es zu installieren, führt zu einer großen " -"Warnung. <command>apt-get</command> wird aktuell nur bei nicht " -"signierten Archiven warnen, zukünftige Releases könnten die Prüfung aller " -"Quellen vor dem Herunterladen von Paketen von dort erzwingen." +"Warnung. <command>apt-get</command> wird aktuell nur bei nicht signierten " +"Archiven warnen, zukünftige Releases könnten die Prüfung aller Quellen vor " +"dem Herunterladen von Paketen von dort erzwingen." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:59 @@ -5269,8 +5155,8 @@ msgid "" "The package frontends &apt-get;, &aptitude; and &synaptic; support this new " "authentication feature." msgstr "" -"Die Paketoberflächen &apt-get;, &aptitude; und &synaptic; unterstützen " -"diese neue Authentifizierungsfunktion." +"Die Paketoberflächen &apt-get;, &aptitude; und &synaptic; unterstützen diese " +"neue Authentifizierungsfunktion." #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml:64 @@ -5288,12 +5174,12 @@ msgid "" "archive integrity is correct." msgstr "" "Eine Kette des Vertrauens von einem APT-Archiv zum Endanwender wird durch " -"verschiedene Schritte erreicht. <command>apt-secure</command> ist der " -"letzte Schritt in dieser Kette. Einem Archiv zu vertrauen bedeutet nicht, " -"dass das Paket, dem Sie vertrauen, keinen schadhaften Code enthält, aber " -"es bedeutet, dass Sie dem Archivbetreuer vertrauen. Der Archivbetreuer " -"ist dafür verantwortlich, dass er die Korrektheit der Integrität des " -"Archivs sicherstellt." +"verschiedene Schritte erreicht. <command>apt-secure</command> ist der letzte " +"Schritt in dieser Kette. Einem Archiv zu vertrauen bedeutet nicht, dass das " +"Paket, dem Sie vertrauen, keinen schadhaften Code enthält, aber es bedeutet, " +"dass Sie dem Archivbetreuer vertrauen. Der Archivbetreuer ist dafür " +"verantwortlich, dass er die Korrektheit der Integrität des Archivs " +"sicherstellt." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:75 @@ -5303,8 +5189,8 @@ msgid "" "<command>debsign</command> (provided in the debsig-verify and devscripts " "packages respectively)." msgstr "" -"apt-secure überprüft keine Signaturen auf einer Ebene des Pakets. Falls " -"Sie ein Werkzeug benötigen, das dies tut, sollten Sie einen Blick auf " +"apt-secure überprüft keine Signaturen auf einer Ebene des Pakets. Falls Sie " +"ein Werkzeug benötigen, das dies tut, sollten Sie einen Blick auf " "<command>debsig-verify</command> und <command>debsign</command> werfen " "(bereitgestellt von den Paketen debsig-verify beziehungsweise devscripts)." @@ -5314,17 +5200,17 @@ msgid "" "The chain of trust in Debian starts when a maintainer uploads a new package " "or a new version of a package to the Debian archive. This upload in order to " "become effective needs to be signed by a key of a maintainer within the " -"Debian maintainer's keyring (available in the debian-keyring " -"package). Maintainer's keys are signed by other maintainers following " -"pre-established procedures to ensure the identity of the key holder." +"Debian maintainer's keyring (available in the debian-keyring package). " +"Maintainer's keys are signed by other maintainers following pre-established " +"procedures to ensure the identity of the key holder." 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-keyring) signiert werden. Betreuerschlüssel werden von anderen " -"Betreuern gemäß vorbestimmter Regeln signiert, um die Identität des " -"Schlüsselinhabers sicherzustellen." +"Schlüsselring 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." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:92 @@ -5339,10 +5225,10 @@ msgstr "" "Sobald das hochgeladenen Paket überprüft und in das Archiv hinzugefügt " "wurde, wird die Betreuersignatur entfernt, eine MD5-Summe des Pakets " "berechnet und in die Paketdatei getan. Dann werden die MD5-Summen aller " -"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." +"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." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:102 @@ -5353,11 +5239,11 @@ msgid "" "package was checked. Now both the MD5 sum and the signature of the Release " "file are checked." msgstr "" -"Jeder Endanwender kann die Signatur der Release-Datei prüfen, die " -"MD5-Summe eines Paketes daraus entpacken und mit der MD5-Summe des " -"Pakets vergleichen, das er heruntergeladen hat. Vor Version 0.6 wurde nur " -"die MD5-Summe des heruntergeladenen Debian-Pakets geprüft. Nun werden " -"sowohl die MD5-Summe als auch die Signatur der Release-Datei geprüft." +"Jeder Endanwender kann die Signatur der Release-Datei prüfen, die MD5-Summe " +"eines Paketes daraus entpacken und mit der MD5-Summe des Pakets vergleichen, " +"das er heruntergeladen hat. Vor Version 0.6 wurde nur die MD5-Summe des " +"heruntergeladenen Debian-Pakets geprüft. Nun werden sowohl die MD5-Summe als " +"auch die Signatur der Release-Datei geprüft." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:109 @@ -5379,10 +5265,10 @@ msgid "" msgstr "" "<literal>Network \"man in the middle\" attacks</literal>. Ohne " "Signaturprüfung kann ein schädlicher Mittelsmann sich selbst in das " -"Herunterladen von Paketen einbringen und Schadsoftware bereitstellen. " -"Dies kann entweder durch Kontrolle eines Netzwerkelements (Router, " -"Switch, etc.) oder durch Umleiten des Netzverkehrs zu einem bösartigen " -"Server (durch ARP- oder DNS-Manipulationsangriffe) erfolgen." +"Herunterladen von Paketen einbringen und Schadsoftware bereitstellen. Dies " +"kann entweder durch Kontrolle eines Netzwerkelements (Router, Switch, etc.) " +"oder durch Umleiten des Netzverkehrs zu einem bösartigen Server (durch ARP- " +"oder DNS-Manipulationsangriffe) erfolgen." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:122 @@ -5392,24 +5278,23 @@ msgid "" "propagate malicious software to all users downloading packages from that " "host." msgstr "" -"<literal>Mirror network compromise</literal>. Ohne Signaturprüfung kann " -"ein schädlicher Mittelsmann einen Spiegelserver kompromittieren und die " -"Dateien darauf verändern, um schädliche Software an alle Anwender zu " -"verbreiten, die Pakete von diesem Rechner herunterladen." +"<literal>Mirror network compromise</literal>. Ohne Signaturprüfung kann ein " +"schädlicher Mittelsmann einen Spiegelserver kompromittieren und die Dateien " +"darauf verändern, um schädliche Software an alle Anwender zu verbreiten, die " +"Pakete von diesem Rechner herunterladen." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:129 msgid "" "However, it does not defend against a compromise of the Debian master server " "itself (which signs the packages) or against a compromise of the key used to " -"sign the Release files. In any case, this mechanism can complement a " -"per-package signature." +"sign the Release files. In any case, this mechanism can complement a per-" +"package signature." msgstr "" -"Es schützt jedoch nicht gegen eine Kompromittierung des " -"Haupt-Debian-Servers selbst (der die Pakete signiert) oder gegen eine " -"Kompromittierung des Schlüssels, der zum Signieren der Release-Dateien " -"benutzt wird. In jedem Fall kann dieser Mechanismus eine Signatur pro " -"Paket ergänzen." +"Es schützt jedoch nicht gegen eine Kompromittierung des Haupt-Debian-Servers " +"selbst (der die Pakete signiert) oder gegen eine Kompromittierung des " +"Schlüssels, der zum Signieren der Release-Dateien benutzt wird. In jedem " +"Fall kann dieser Mechanismus eine Signatur pro Paket ergänzen." #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml:135 @@ -5427,26 +5312,24 @@ msgstr "" "<command>apt-key</command> ist das Programm, das die Liste der von APT " "verwendeten Schlüssel verwaltet. Es kann benutzt werden, um Schlüssel " "hinzuzufügen oder zu entfernen, obwohl eine Installation dieses Releases " -"automatisch die Standard-Debian-Archivsignierschlüssel bereitstellt, " -"die in den Debian-Paketdepots benutzt werden." +"automatisch die Standard-Debian-Archivsignierschlüssel bereitstellt, die in " +"den Debian-Paketdepots benutzt werden." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:144 msgid "" "In order to add a new key you need to first download it (you should make " "sure you are using a trusted communication channel when retrieving it), add " -"it with <command>apt-key</command> and then run <command>apt-get " -"update</command> so that apt can download and verify the " -"<filename>Release.gpg</filename> files from the archives you have " -"configured." +"it with <command>apt-key</command> and then run <command>apt-get update</" +"command> so that apt can download and verify the <filename>Release.gpg</" +"filename> files from the archives you have configured." msgstr "" "Um einen neuen Schlüssel hinzuzufügen, müssen Sie ihn zuerst herunterladen " "(Sie sollten sicherstellen, dass Sie einen vertrauenswürdigen " "Kommunikationskanal benutzen, wenn Sie ihn herunterladen), ihn mit " -"<command>apt-key</command> hinzufügen und dann <command>apt-get " -"update</command> ausführen, so dass APT die " -"<filename>Release.gpg</filename>-Dateien der von Ihnen konfigurierten " -"Archive herunterladen und prüfen kann." +"<command>apt-key</command> hinzufügen und dann <command>apt-get update</" +"command> ausführen, so dass APT die <filename>Release.gpg</filename>-Dateien " +"der von Ihnen konfigurierten Archive herunterladen und prüfen kann." #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml:153 @@ -5459,19 +5342,19 @@ msgid "" "If you want to provide archive signatures in an archive under your " "maintenance you have to:" msgstr "" -"Wenn Sie Archivsignaturen in einem von Ihnen betreuten Archiv zur " -"Verfügung stellen möchten, müssen Sie:" +"Wenn Sie Archivsignaturen in einem von Ihnen betreuten Archiv zur Verfügung " +"stellen möchten, müssen Sie:" #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:160 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)." +"already. You can do this by running <command>apt-ftparchive release</" +"command> (provided in apt-utils)." msgstr "" "<literal>Create a toplevel Release file</literal>, wenn es nicht bereits " -"existiert. Sie können dies tun, indem Sie <command>apt-ftparchive " -"release</command> (aus apt-utils) ausführen." +"existiert. Sie können dies tun, indem Sie <command>apt-ftparchive release</" +"command> (aus apt-utils) ausführen." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:165 @@ -5479,8 +5362,8 @@ msgid "" "<literal>Sign it</literal>. You can do this by running <command>gpg -abs -o " "Release.gpg Release</command>." msgstr "" -"<literal>Sign it</literal>. Sie können dies tun, indem Sie <command>gpg " -"-abs -o Release.gpg Release</command> ausführen." +"<literal>Sign it</literal>. Sie können dies tun, indem Sie <command>gpg -abs " +"-o Release.gpg Release</command> ausführen." #. type: Content of: <refentry><refsect1><itemizedlist><listitem><para> #: apt-secure.8.xml:168 @@ -5489,9 +5372,9 @@ msgid "" "know what key they need to import in order to authenticate the files in the " "archive." msgstr "" -"<literal>Publish the key fingerprint</literal>, derart, dass Ihre " -"Anwender wissen, welchen Schlüssel sie importieren müssen, um die Dateien " -"im Archiv zu authentifizieren." +"<literal>Publish the key fingerprint</literal>, derart, dass Ihre Anwender " +"wissen, welchen Schlüssel sie importieren müssen, um die Dateien im Archiv " +"zu authentifizieren." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:175 @@ -5500,9 +5383,9 @@ msgid "" "removed) the archive maintainer has to follow the first two steps previously " "outlined." msgstr "" -"Immer wenn sich die Inhalte des Archivs ändern (neue Pakete hinzugefügt " -"oder entfernt werden), muss der Archivbetreuen den beiden zuerst " -"skizzierten Schritten folgen." +"Immer wenn sich die Inhalte des Archivs ändern (neue Pakete hinzugefügt oder " +"entfernt werden), muss der Archivbetreuen den beiden zuerst skizzierten " +"Schritten folgen." #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:183 @@ -5516,20 +5399,19 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt-secure.8.xml:187 msgid "" -"For more background information you might want to review the <ulink " -"url=\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7.en.html\">Debian " -"Security Infrastructure</ulink> chapter of the Securing Debian Manual " -"(available also in the harden-doc package) and the <ulink " -"url=\"http://www.cryptnet.net/fdp/crypto/strong_distro.html\" >Strong " +"For more background information you might want to review the <ulink url=" +"\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7.en.html" +"\">Debian Security Infrastructure</ulink> chapter of the Securing Debian " +"Manual (available also in the harden-doc package) and the <ulink url=" +"\"http://www.cryptnet.net/fdp/crypto/strong_distro.html\" >Strong " "Distribution HOWTO</ulink> by V. Alex Brennen." msgstr "" -"Um weitere Hintergrundinformationen zu erhalten, können Sie die <ulink " -"url=\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7.de.html\">" -"Die Infrastruktur für Sicherheit in Debian</ulink>-Kapitel des Handbuchs " -"»Anleitung zum Absichern von Debian« (auch verfügbar im Paket harden-doc) " -"und dem <ulink " -"url=\"http://www.cryptnet.net/fdp/crypto/strong_distro.html\" >Strong " -"Distribution HOWTO</ulink> von V. Alex Brennen lesen." +"Um weitere Hintergrundinformationen zu erhalten, können Sie die <ulink url=" +"\"http://www.debian.org/doc/manuals/securing-debian-howto/ch7.de.html\">Die " +"Infrastruktur für Sicherheit in Debian</ulink>-Kapitel des Handbuchs " +"»Anleitung zum Absichern von Debian« (auch verfügbar im Paket harden-doc) und " +"dem <ulink url=\"http://www.cryptnet.net/fdp/crypto/strong_distro.html\" " +">Strong Distribution HOWTO</ulink> von V. Alex Brennen lesen." #. type: Content of: <refentry><refsect1><title> #: apt-secure.8.xml:200 @@ -5560,14 +5442,14 @@ msgstr "Werkzeug zum Sortieren von Paketindexdateien" msgid "" "<command>apt-sortpkgs</command> <arg><option>-hvs</option></arg> " "<arg><option>-o=<replaceable>config string</replaceable></option></arg> " -"<arg><option>-c=<replaceable>file</replaceable></option></arg> <arg " -"choice=\"plain\" rep=\"repeat\"><replaceable>file</replaceable></arg>" +"<arg><option>-c=<replaceable>file</replaceable></option></arg> <arg choice=" +"\"plain\" rep=\"repeat\"><replaceable>file</replaceable></arg>" msgstr "" "<command>apt-sortpkgs</command> <arg><option>-hvs</option></arg> " -"<arg><option>-o=<replaceable>Konfigurationszeichenkette</replaceable>" -"</option></arg> " -"<arg><option>-c=<replaceable>Datei</replaceable></option></arg> <arg " -"choice=\"plain\" rep=\"repeat\"><replaceable>Datei</replaceable></arg>" +"<arg><option>-o=<replaceable>Konfigurationszeichenkette</replaceable></" +"option></arg> <arg><option>-c=<replaceable>Datei</replaceable></option></" +"arg> <arg choice=\"plain\" rep=\"repeat\"><replaceable>Datei</replaceable></" +"arg>" #. type: Content of: <refentry><refsect1><para> #: apt-sortpkgs.1.xml:45 @@ -5579,15 +5461,14 @@ msgid "" msgstr "" "<command>apt-sortpkgs</command> nimmt eine Indexdatei (Quell- oder " "Paketindex) und sortiert die Datensätze nach Paketnamen. Es wird außerdem " -"die internen Felder jedes Datensatzes gemäß interner Sortierregeln " -"sortieren." +"die internen Felder jedes Datensatzes gemäß interner Sortierregeln sortieren." #. type: Content of: <refentry><refsect1><para> #: apt-sortpkgs.1.xml:51 msgid "All output is sent to stdout, the input must be a seekable file." msgstr "" -"Alle Ausgaben werden an stdout gesendet, die Eingabe muss eine " -"durchsuchbare Datei sein." +"Alle Ausgaben werden an stdout gesendet, die Eingabe muss eine durchsuchbare " +"Datei sein." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-sortpkgs.1.xml:58 @@ -5597,11 +5478,11 @@ msgstr "<option>--source</option>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-sortpkgs.1.xml:60 msgid "" -"Use Source index field ordering. Configuration Item: " -"<literal>APT::SortPkgs::Source</literal>." +"Use Source index field ordering. Configuration Item: <literal>APT::" +"SortPkgs::Source</literal>." msgstr "" -"Quellindexfeldanordnung benutzen. Konfigurationselement: " -"<literal>APT::SortPkgs::Source</literal>." +"Quellindexfeldanordnung benutzen. Konfigurationselement: <literal>APT::" +"SortPkgs::Source</literal>." #. type: Content of: <refentry><refsect1><para> #: apt-sortpkgs.1.xml:74 @@ -5616,16 +5497,15 @@ msgstr "" #. type: Content of: <refentry><refentryinfo> #: apt.conf.5.xml:13 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>" +"&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>" 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-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>" #. type: Content of: <refentry><refnamediv><refname> #: apt.conf.5.xml:28 apt.conf.5.xml:35 @@ -5648,24 +5528,23 @@ 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 " +"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> ist die Hauptkonfigurationsdatei für die " -"APT-Werkzeugsammlung. Alle Werkzeuge benutzen die Konfigurationsdatei " -"und einen gemeinsamen Befehlszeilenauswerter, um eine einheitliche " -"Umgebung bereitzustellen. Wenn ein APT-Werkzeug startet, liest es die in " -"der Umgebungsvariablen <envar>APT_CONFIG</envar> (falls vorhanden) " -"angegebene Konfiguration, dann die Dateien in " -"<literal>Dir::Etc::Parts</literal>, dann die durch " -"<literal>Dir::Etc::main</literal> angegebene Konfigurationsdatei und " -"übernimmt am Ende die Befehlszeilenoptionen, um Konfigurationsdirektiven " -"zu überschreiben und möglicherweise sogar weitere Konfigurationsdateien " -"zu laden." +"<filename>apt.conf</filename> ist die Hauptkonfigurationsdatei für die APT-" +"Werkzeugsammlung. Alle Werkzeuge benutzen die Konfigurationsdatei und einen " +"gemeinsamen Befehlszeilenauswerter, um eine einheitliche Umgebung " +"bereitzustellen. Wenn ein APT-Werkzeug startet, liest es die in der " +"Umgebungsvariablen <envar>APT_CONFIG</envar> (falls vorhanden) angegebene " +"Konfiguration, dann die Dateien in <literal>Dir::Etc::Parts</literal>, dann " +"die durch <literal>Dir::Etc::main</literal> angegebene Konfigurationsdatei " +"und übernimmt am Ende die Befehlszeilenoptionen, um Konfigurationsdirektiven " +"zu überschreiben und möglicherweise sogar weitere Konfigurationsdateien zu " +"laden." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:50 @@ -5676,35 +5555,39 @@ msgid "" "within the APT tool group, for the Get tool. options do not inherit from " "their parent groups." msgstr "" -"Die Konfigurationsdatei ist in einem Baum mit Optionen organisiert, die " -"in funktionellen Gruppen organisiert sind. Optionsspezifikation wird mit " -"einer doppelten Doppelpunktschreibweise angegeben, zum Beispiel ist " -"<literal>APT::Get::Assume-Yes</literal> eine Option innerhalb der " -"APT-Werkzeuggruppe für das Werkzeug Get. Optionen werden nicht von ihren " -"Elterngruppe geerbt." +"Die Konfigurationsdatei ist in einem Baum mit Optionen organisiert, die in " +"funktionellen Gruppen organisiert sind. Optionsspezifikation wird mit einer " +"doppelten Doppelpunktschreibweise angegeben, zum Beispiel ist <literal>APT::" +"Get::Assume-Yes</literal> eine Option innerhalb der APT-Werkzeuggruppe für " +"das Werkzeug Get. Optionen werden nicht von ihren Elterngruppe geerbt." #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:56 +#, 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:" -msgstr "" -"Syntaktisch ist die Konfigurationssprache dem nachempfunden, was die " -"ISC-Werkzeuge, wie bind und dhcp, benutzen. Zeilen, die mit " -"<literal>//</literal> beginnen, werden als Kommentar betrachtet (und " -"ignoriert), ebenso wie jeglicher Text zwischen <literal>/*</literal> und " -"<literal>*/</literal>, wie bei C/C++-Kommentaren. Jede Zeile hat die " -"Form <literal>APT::Get::Assume-Yes \"true\";</literal>. Das abschließende " -"Semikolon wird benötigt und Klammern sind optional. Ein neuer " -"Geltungsbereich kann mit geschweiften Klammern geöffnet werden, wie:" +"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 and the quotes are required. The value must be on one line, and " +"there is no kind of string concatenation. It must not include inside " +"quotes. The behavior of the backslash \"\\\" and escaped characters inside " +"a value is undefined and it should not be used. An option name may include " +"alphanumerical characters and the \"/-:._+\" characters. A new scope can be " +"opened with curly braces, like:" +msgstr "" +"Syntaktisch ist die Konfigurationssprache dem nachempfunden, was die ISC-" +"Werkzeuge, wie bind und dhcp, benutzen. Zeilen, die mit <literal>//</" +"literal> beginnen, werden als Kommentar betrachtet (und ignoriert), ebenso " +"wie jeglicher Text zwischen <literal>/*</literal> und <literal>*/</literal>, " +"wie bei C/C++-Kommentaren. Jede Zeile hat die Form <literal>APT::Get::Assume-" +"Yes \"true\";</literal>. Das abschließende Semikolon wird benötigt und " +"Klammern sind optional. Ein neuer Geltungsbereich kann mit geschweiften " +"Klammern geöffnet werden, wie:" #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:66 +#: apt.conf.5.xml:70 #, no-wrap msgid "" "APT {\n" @@ -5722,38 +5605,36 @@ msgstr "" "};\n" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:74 +#: apt.conf.5.xml:78 msgid "" "with newlines placed to make it more readable. Lists can be created by " "opening a scope and including a single string enclosed in quotes followed by " -"a semicolon. Multiple entries can be included, each separated by a " -"semicolon." +"a semicolon. Multiple entries can be included, each separated by a semicolon." msgstr "" "mit eingefügten Zeilenumbrüchen, um es leserlicher zu gestalten. Listen " "können erstellt werden, indem ein Geltungsbereich geöffnet wird und eine " -"einzelne, von Anführungszeichen, denen ein Semikolon folgt, " -"eingeschlossene Zeichenkette eingefügt wird. Es können mehrere Einträge " -"eingefügt werden, jeweils getrennt durch ein Semikolon." +"einzelne, von Anführungszeichen, denen ein Semikolon folgt, eingeschlossene " +"Zeichenkette eingefügt wird. Es können mehrere Einträge eingefügt werden, " +"jeweils getrennt durch ein Semikolon." #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:79 +#: apt.conf.5.xml:83 #, no-wrap msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" msgstr "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:82 +#: apt.conf.5.xml:86 msgid "" -"In general the sample configuration file in " -"<filename>&docdir;examples/apt.conf</filename> &configureindex; is a good " -"guide for how it should look." +"In general the sample configuration file in <filename>&docdir;examples/apt." +"conf</filename> &configureindex; is a good guide for how it should look." msgstr "" -"Im Allgemeinen bietet die Beispielkonfigurationsdatei in " -"<filename>&docdir;examples/apt.conf</filename> &configureindex; eine gute " -"Anleitung, wie dies aussehen könnte." +"Im Allgemeinen bietet die Beispielkonfigurationsdatei in <filename>&docdir;" +"examples/apt.conf</filename> &configureindex; eine gute Anleitung, wie dies " +"aussehen könnte." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:86 +#: apt.conf.5.xml:90 msgid "" "The names of the configuration items are not case-sensitive. So in the " "previous example you could use <literal>dpkg::pre-install-pkgs</literal>." @@ -5763,59 +5644,59 @@ msgstr "" "<literal>dpkg::pre-install-pkgs</literal> benutzen." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:89 +#: apt.conf.5.xml:93 msgid "" "Names for the configuration items are optional if a list is defined as it " -"can be see in the <literal>DPkg::Pre-Install-Pkgs</literal> example " -"above. If you don't specify a name a new entry will simply add a new option " -"to the list. If you specify a name you can override the option as every " -"other option by reassigning a new value to the option." -msgstr "" -"Namen für die Konfigurationsdatei sind optional, wenn eine Liste, wie sie " -"im Beispiel <literal>DPkg::Pre-Install-Pkgs</literal> oberhalb gesehen " -"werden kann, definiert ist. Wenn Sie keinen neuen Namen angeben, wird ein " -"neuer Eintrag der Liste lediglich eine neue Option hinzufügen. Wenn Sie " -"einen Namen eingeben, können Sie die Option, wie jede andere Option, " +"can be see in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. " +"If you don't specify a name a new entry will simply add a new option to the " +"list. If you specify a name you can override the option as every other " +"option by reassigning a new value to the option." +msgstr "" +"Namen für die Konfigurationsdatei sind optional, wenn eine Liste, wie sie im " +"Beispiel <literal>DPkg::Pre-Install-Pkgs</literal> oberhalb gesehen werden " +"kann, definiert ist. Wenn Sie keinen neuen Namen angeben, wird ein neuer " +"Eintrag der Liste lediglich eine neue Option hinzufügen. Wenn Sie einen " +"Namen eingeben, können Sie die Option, wie jede andere Option, " "überschreiben, indem Sie der Option erneut einen neuen Wert zuweisen." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:94 +#: apt.conf.5.xml:98 +#, 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 descendants are " -"erased. (Note that these lines also need to end with a semicolon.)" +"Two specials are allowed, <literal>#include</literal> (which is deprecated " +"and not supported by alternative implementations) 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 descendants are erased. (Note that these " +"lines also need to end with a semicolon.)" msgstr "" "Es sind die beiden Spezialfälle <literal>#include</literal> und " "<literal>#clear</literal> erlaubt: <literal>#include</literal> wird die " -"angegebene Datei einfügen außer, wenn der Dateiname mit einem " -"Schrägstrich endet, dann wird das ganze Verzeichnis eingefügt. " -"<literal>#clear</literal> wird benutzt, um einen Teil des " -"Konfigurationsbaums zu löschen. Das angegebene Element und alle davon " -"absteigenden Elemente werden gelöscht. (Beachten Sie, dass diese Zeilen " -"auch mit einem Semikolon enden müssen.)" +"angegebene Datei einfügen außer, wenn der Dateiname mit einem Schrägstrich " +"endet, dann wird das ganze Verzeichnis eingefügt. <literal>#clear</literal> " +"wird benutzt, um einen Teil des Konfigurationsbaums zu löschen. Das " +"angegebene Element und alle davon absteigenden Elemente werden gelöscht. " +"(Beachten Sie, dass diese Zeilen auch mit einem Semikolon enden müssen.)" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:101 +#: apt.conf.5.xml:106 msgid "" "The #clear command is the only way to delete a list or a complete scope. " -"Reopening a scope or the ::-style described below will " -"<emphasis>not</emphasis> override previously written entries. Only options " -"can be overridden by addressing a new value to it - lists and scopes can't " -"be overridden, only cleared." +"Reopening a scope or the ::-style described below will <emphasis>not</" +"emphasis> override previously written entries. Only options can be " +"overridden by addressing a new value to it - lists and scopes can't be " +"overridden, only cleared." msgstr "" "Der #clear-Befehl ist der einzige Weg, eine Liste oder einen kompletten " -"Geltungsbereich zu löschen. Erneutes Öffnen eines Geltungsbereichs oder " -"der unten beschriebene ::-Stil werden vorherige Einträge " -"<emphasis>nicht</emphasis> überschreiben. Optionen können nur " -"überschrieben werden, indem ein neuer Wert an sie adressiert wird – " -"Listen und Geltungsbereiche können nicht überschrieben, sondern nur " -"bereinigt werden." +"Geltungsbereich zu löschen. Erneutes Öffnen eines Geltungsbereichs oder der " +"unten beschriebene ::-Stil werden vorherige Einträge <emphasis>nicht</" +"emphasis> überschreiben. Optionen können nur überschrieben werden, indem ein " +"neuer Wert an sie adressiert wird – Listen und Geltungsbereiche können nicht " +"überschrieben, sondern nur bereinigt werden." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:106 +#: apt.conf.5.xml:111 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 " @@ -5825,136 +5706,134 @@ msgid "" "suspect: The scope syntax can't be used on the command line.)" msgstr "" "Alle APT-Werkzeuge bringen eine Option -o mit, die es einer beliebigen " -"Installationsdirektiven erlaubt, auf der Befehlszeile angegeben zu " -"werden. Die Syntax ist ein vollständiger Optionsname " -"(<literal>APT::Get::Assume-Yes</literal> zum Beispiel), gefolgt von einem " -"Gleichheitszeichen und dann dem neuen Wert der Option. Listen können " -"ebenfalls durch Anhängen von abschließenden :: zur Namensliste " -"hinzugefügt werden. (Wenn Ihnen das merkwürdig vorkommt: Die " -"Geltungsbereichs-Syntax kann nicht auf der Befehlszeile benutzt werden.)" +"Installationsdirektiven erlaubt, auf der Befehlszeile angegeben zu werden. " +"Die Syntax ist ein vollständiger Optionsname (<literal>APT::Get::Assume-Yes</" +"literal> zum Beispiel), gefolgt von einem Gleichheitszeichen und dann dem " +"neuen Wert der Option. Listen können ebenfalls durch Anhängen von " +"abschließenden :: zur Namensliste hinzugefügt werden. (Wenn Ihnen das " +"merkwürdig vorkommt: Die Geltungsbereichs-Syntax kann nicht auf der " +"Befehlszeile benutzt werden.)" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:113 +#: apt.conf.5.xml:118 msgid "" "Note that you can use :: only for appending one item per line to a list and " "that you should not use it in combination with the scope syntax. (The scope " "syntax implicit insert ::) Using both syntaxes together will trigger a bug " "which some users unfortunately relay on: An option with the unusual name " -"\"<literal>::</literal>\" which acts like every other option with a " -"name. These introduces many problems including that a user who writes " -"multiple lines in this <emphasis>wrong</emphasis> syntax in the hope to " -"append to a list will gain the opposite as only the last assignment for this " -"option \"<literal>::</literal>\" will be used. Upcoming APT versions will " -"raise errors and will stop working if they encounter this misuse, so please " +"\"<literal>::</literal>\" which acts like every other option with a name. " +"These introduces many problems including that a user who writes multiple " +"lines in this <emphasis>wrong</emphasis> syntax in the hope to append to a " +"list will gain the opposite as only the last assignment for this option " +"\"<literal>::</literal>\" will be used. Upcoming APT versions will raise " +"errors and will stop working if they encounter this misuse, so please " "correct such statements now as long as APT doesn't complain explicit about " "them." msgstr "" -"Beachten Sie, dass Sie :: nur benutzen können, um ein Element pro Zeile " -"an eine Liste anzuhängen und dass Sie es nicht nicht in Verbindung mit " -"einer Geltungsbereichs-Syntax benutzen sollten. (Die " -"Geltungsbereichssysyntax fügt implizit :: ein) Die Benutzung der Syntax " -"von beiden zusammen wird einen Fehler auslösen, den einige Anwender " -"ungünstigerweise weitergeben an eine Option mit dem unüblichen Namen " -"»<literal>::</literal>«, der wie jede andere Option mit einem Namen " -"agiert. Dies leitet viele Probleme ein, einschließlich, dass der " -"Anwender, der mehrere Zeilen in dieser <emphasis>falschen</emphasis> " -"Syntax in der Hoffnung etwas an die Liste anzuhängen schreibt, das " -"Gegenteil von nur der letzten Zuweisung zu diese Option " -"»<literal>::</literal>« erreicht. Bevorstehende APT-Versionen werden " +"Beachten Sie, dass Sie :: nur benutzen können, um ein Element pro Zeile an " +"eine Liste anzuhängen und dass Sie es nicht nicht in Verbindung mit einer " +"Geltungsbereichs-Syntax benutzen sollten. (Die Geltungsbereichssysyntax fügt " +"implizit :: ein) Die Benutzung der Syntax von beiden zusammen wird einen " +"Fehler auslösen, den einige Anwender ungünstigerweise weitergeben an eine " +"Option mit dem unüblichen Namen »<literal>::</literal>«, der wie jede andere " +"Option mit einem Namen agiert. Dies leitet viele Probleme ein, " +"einschließlich, dass der Anwender, der mehrere Zeilen in dieser " +"<emphasis>falschen</emphasis> Syntax in der Hoffnung etwas an die Liste " +"anzuhängen schreibt, das Gegenteil von nur der letzten Zuweisung zu diese " +"Option »<literal>::</literal>« erreicht. Bevorstehende APT-Versionen werden " "Fehler ausgeben und die Arbeit stoppen, wenn sie auf diese falsche " -"Verwendung stoßen. Korrigieren Sie deshalb nun solche Anweisungen, " -"solange sich APT nicht explizit darüber beklagt." +"Verwendung stoßen. Korrigieren Sie deshalb nun solche Anweisungen, solange " +"sich APT nicht explizit darüber beklagt." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:125 +#: apt.conf.5.xml:130 msgid "The APT Group" msgstr "Die APT-Gruppe" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:126 +#: apt.conf.5.xml:131 msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." msgstr "" -"Diese Gruppe von Optionen steuert das allgemeine Verhalten von APT, " -"ebenso wie es die Optionen für alle Werkzeuge enthält." +"Diese Gruppe von Optionen steuert das allgemeine Verhalten von APT, ebenso " +"wie es die Optionen für alle Werkzeuge enthält." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:130 +#: apt.conf.5.xml:135 msgid "Architecture" msgstr "Architecture" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:131 +#: apt.conf.5.xml:136 msgid "" "System Architecture; sets the architecture to use when fetching files and " "parsing package lists. The internal default is the architecture apt was " "compiled for." msgstr "" "Systemarchitektur; Setzt die Architektur die benutzt wird, wenn Dateien " -"heruntergeladen und Paketlisten ausgewertet werden. Die interne Vorgabe " -"ist die Architektur für die APT kompiliert wurde." +"heruntergeladen und Paketlisten ausgewertet werden. Die interne Vorgabe ist " +"die Architektur für die APT kompiliert wurde." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:136 +#: apt.conf.5.xml:141 msgid "Default-Release" msgstr "Default-Release" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:137 +#: apt.conf.5.xml:142 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;." +"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;." 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;." +"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;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:141 +#: apt.conf.5.xml:146 msgid "Ignore-Hold" msgstr "Ignore-Hold" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:142 +#: apt.conf.5.xml:147 msgid "" "Ignore Held packages; This global option causes the problem resolver to " "ignore held packages in its decision making." msgstr "" "Halten von Paketen ignorieren; Diese globale Option veranlasst den " -"Problemlöser, gehaltene Pakete beim Treffen von Entscheidungen zu " -"ignorieren." +"Problemlöser, gehaltene Pakete beim Treffen von Entscheidungen zu ignorieren." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:146 +#: apt.conf.5.xml:151 msgid "Clean-Installed" msgstr "Clean-Installed" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:147 +#: apt.conf.5.xml:152 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " "then packages that are locally installed are also excluded from cleaning - " "but note that APT provides no direct means to reinstall them." msgstr "" -"Standardmäßig auf on (ein). Wenn es auf on gesetzt wird, wird die automatische " -"Bereinigungsfunktion alle Pakete entfernen, die nicht länger aus dem " -"Zwischenspeicher heruntergeladen werden können. Wenn es auf off gesetzt " -"wird, dann werden außerden die Pakete, die lokal installiert sind, vom " -"Bereinigen ausgeschlossen – beachten Sie jedoch, dass APT keine direkten " +"Standardmäßig auf on (ein). Wenn es auf on gesetzt wird, wird die " +"automatische Bereinigungsfunktion alle Pakete entfernen, die nicht länger " +"aus dem Zwischenspeicher heruntergeladen werden können. Wenn es auf off " +"gesetzt wird, dann werden außerden die Pakete, die lokal installiert sind, " +"vom Bereinigen ausgeschlossen – beachten Sie jedoch, dass APT keine direkten " "Möglichkeiten bereitstellt, um sie erneut zu installieren." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:153 +#: apt.conf.5.xml:158 msgid "Immediate-Configure" msgstr "Immediate-Configure" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:154 +#: apt.conf.5.xml:159 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 " @@ -5962,70 +5841,69 @@ msgid "" "and may cause package install scripts to fail or worse. Use at your own " "risk." msgstr "" -"Sofortkonfiguration ausschalten; Diese gefährliche Option schaltet " -"einigen Befehlscode von APT aus, um es zu veranlassen, Dpkg seltener " -"aufzurufen. Dies zu tun, könnte auf besonders langsamen " -"Einzelbenutzersystemen nötig sein, ist aber gefährlich und könnte " -"Paketinstallationsskripte zum Scheitern oder schlimmeren veranlassen. " -"Benutzen Sie es auf eigene Gefahr." +"Sofortkonfiguration ausschalten; Diese gefährliche Option schaltet einigen " +"Befehlscode von APT aus, um es zu veranlassen, Dpkg seltener aufzurufen. " +"Dies zu tun, könnte auf besonders langsamen Einzelbenutzersystemen nötig " +"sein, ist aber gefährlich und könnte Paketinstallationsskripte zum Scheitern " +"oder schlimmeren veranlassen. Benutzen Sie es auf eigene Gefahr." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:161 +#: apt.conf.5.xml:166 msgid "Force-LoopBreak" msgstr "Force-LoopBreak" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:162 +#: apt.conf.5.xml:167 msgid "" "Never Enable this option unless you -really- know what you are doing. It " -"permits APT to temporarily remove an essential package to break a " -"Conflicts/Conflicts or Conflicts/Pre-Depend loop between two essential " -"packages. SUCH A LOOP SHOULD NEVER EXIST AND IS A GRAVE BUG. This option " -"will work if the essential packages are not tar, gzip, libc, dpkg, bash or " -"anything that those packages depend on." -msgstr "" -"Schalten Sie diese Option niemals ein, außer wenn Sie -wirklich- wissen, " -"was Sie tun. Es erlaubt APT temporär ein essentielles Paket zu entfernen, " -"um eine Conflicts/Conflicts- oder Conflicts/Pre-Depend-Schleife zwischen " -"zwei essentiellen Paketen zu unterbrechen. SOLCH EINE SCHLEIFE SOLLTE " -"NIEMALS EXISTIEREN UND IST EIN SCHWERWIEGENDER FEHLER. Diese Option wird " +"permits APT to temporarily remove an essential package to break a Conflicts/" +"Conflicts or Conflicts/Pre-Depend loop between two essential packages. SUCH " +"A LOOP SHOULD NEVER EXIST AND IS A GRAVE BUG. This option will work if the " +"essential packages are not tar, gzip, libc, dpkg, bash or anything that " +"those packages depend on." +msgstr "" +"Schalten Sie diese Option niemals ein, außer wenn Sie -wirklich- wissen, was " +"Sie tun. Es erlaubt APT temporär ein essentielles Paket zu entfernen, um " +"eine Conflicts/Conflicts- oder Conflicts/Pre-Depend-Schleife zwischen zwei " +"essentiellen Paketen zu unterbrechen. SOLCH EINE SCHLEIFE SOLLTE NIEMALS " +"EXISTIEREN UND IST EIN SCHWERWIEGENDER FEHLER. Diese Option wird " "funktionieren, wenn die essentiellen Pakete nicht tar, gzip, libc, dpkg, " "bash oder etwas, was davon abhängt, sind." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:170 +#: apt.conf.5.xml:175 msgid "Cache-Limit" msgstr "Cache-Limit" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:171 +#: apt.conf.5.xml:176 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 benutzt eine Zwischenspeicherdatei mit fester Größe, um die " -"»verfügbar«-Informationen zu speichern. Dies setzt die Größe dieses " -"Zwischenspeichers (in Bytes)." +"APT benutzt eine Zwischenspeicherdatei mit fester Größe, um die »verfügbar«-" +"Informationen zu speichern. Dies setzt die Größe dieses Zwischenspeichers " +"(in Bytes)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:175 +#: apt.conf.5.xml:180 msgid "Build-Essential" msgstr "Build-Essential" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:176 +#: apt.conf.5.xml:181 msgid "Defines which package(s) are considered essential build dependencies." msgstr "" -"Definiert, welche(s) Paket(e) als essentielle Bauabhängigkeiten " -"betrachtet werde." +"Definiert, welche(s) Paket(e) als essentielle Bauabhängigkeiten betrachtet " +"werde." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:179 +#: apt.conf.5.xml:184 msgid "Get" msgstr "Get" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:180 +#: apt.conf.5.xml:185 msgid "" "The Get subsection controls the &apt-get; tool, please see its documentation " "for more information about the options here." @@ -6035,133 +5913,130 @@ msgstr "" "erhalten." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:184 +#: apt.conf.5.xml:189 msgid "Cache" msgstr "Cache" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:185 +#: apt.conf.5.xml:190 msgid "" "The Cache subsection controls the &apt-cache; tool, please see its " "documentation for more information about the options here." msgstr "" -"Der Cache-Unterabschnitt steuert das &apt-cache;-Werkzeug. Lesen Sie " -"bitte dessen Dokumentation, um weitere Informationen über die Optionen " -"hier zu erhalten." +"Der Cache-Unterabschnitt steuert das &apt-cache;-Werkzeug. Lesen Sie bitte " +"dessen Dokumentation, um weitere Informationen über die Optionen hier zu " +"erhalten." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:189 +#: apt.conf.5.xml:194 msgid "CDROM" msgstr "CDROM" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:190 +#: apt.conf.5.xml:195 msgid "" "The CDROM subsection controls the &apt-cdrom; tool, please see its " "documentation for more information about the options here." msgstr "" -"Der CDROM-Unterabschnitt steuert das &apt-cdrom;-Werkzeug. Lesen Sie " -"bitte dessen Dokumentation, um weitere Informationen über die Optionen " -"hier zu erhalten." +"Der CDROM-Unterabschnitt steuert das &apt-cdrom;-Werkzeug. Lesen Sie bitte " +"dessen Dokumentation, um weitere Informationen über die Optionen hier zu " +"erhalten." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:196 +#: apt.conf.5.xml:201 msgid "The Acquire Group" msgstr "Die Erwerbgruppe" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:201 +#: apt.conf.5.xml:206 msgid "PDiffs" msgstr "PDiffs" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:202 +#: apt.conf.5.xml:207 msgid "" "Try to download deltas called <literal>PDiffs</literal> for Packages or " "Sources files instead of downloading whole ones. True by default." msgstr "" -"Versuchen, Deltas, die <literal>PDiffs</literal> genannt werden, für " -"Paket- oder Quelldateien herunterzuladen, statt der kompletten Dateien. " -"Vorgabe ist True." +"Versuchen, Deltas, die <literal>PDiffs</literal> genannt werden, für Paket- " +"oder Quelldateien herunterzuladen, statt der kompletten Dateien. Vorgabe ist " +"True." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:207 +#: apt.conf.5.xml:212 msgid "Queue-Mode" msgstr "Queue-Mode" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:208 +#: apt.conf.5.xml:213 msgid "" -"Queuing mode; <literal>Queue-Mode</literal> can be one of " -"<literal>host</literal> or <literal>access</literal> which determines how " -"APT parallelizes outgoing connections. <literal>host</literal> means that " -"one connection per target host will be opened, <literal>access</literal> " -"means that one connection per URI type will be opened." +"Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" +"literal> or <literal>access</literal> which determines how APT parallelizes " +"outgoing connections. <literal>host</literal> means that one connection per " +"target host will be opened, <literal>access</literal> means that one " +"connection per URI type will be opened." msgstr "" "Warteschlangenmodus; <literal>Queue-Mode</literal> kann entweder " "<literal>host</literal> oder <literal>access</literal> sein, wodurch " "festgelegt wird, wie APT ausgehende Verbindungen parallelisiert. " "<literal>host</literal> bedeutet, dass eine Verbindung pro Zielrechner " -"geöffnet wird, <literal>access</literal> bedeutet, dass eine Verbindung " -"pro URI-Art geöffnet wird." +"geöffnet wird, <literal>access</literal> bedeutet, dass eine Verbindung pro " +"URI-Art geöffnet wird." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:215 +#: apt.conf.5.xml:220 msgid "Retries" msgstr "Retries" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:216 +#: apt.conf.5.xml:221 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." msgstr "" -"Anzahl der auszuführenden erneuten Versuche. Wenn dies nicht Null ist, " -"wird APT fehlgeschlagene Dateien in der angegebenen Zahl erneut " -"versuchen." +"Anzahl der auszuführenden erneuten Versuche. Wenn dies nicht Null ist, wird " +"APT fehlgeschlagene Dateien in der angegebenen Zahl erneut versuchen." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:220 +#: apt.conf.5.xml:225 msgid "Source-Symlinks" msgstr "Source-Symlinks" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:221 +#: apt.conf.5.xml:226 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." msgstr "" -"Symbolische Verweise für Quellarchive benutzen. Wenn dies auf true " -"gesetzt ist, werden Quellarchive, wenn möglich, symbolisch verknüpft, " -"anstatt kopiert zu werden. True ist die Vorgabe." +"Symbolische Verweise für Quellarchive benutzen. Wenn dies auf true gesetzt " +"ist, werden Quellarchive, wenn möglich, symbolisch verknüpft, anstatt " +"kopiert zu werden. True ist die Vorgabe." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:225 sources.list.5.xml:139 +#: apt.conf.5.xml:230 sources.list.5.xml:139 msgid "http" msgstr "http" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:226 +#: apt.conf.5.xml:231 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. If no one of the above " -"settings is specified, <envar>http_proxy</envar> environment variable will " -"be used." +"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. If no one of the above settings is specified, " +"<envar>http_proxy</envar> environment variable will be used." msgstr "" "HTTP-URIs; http::Proxy ist der zu benutzende Standard-HTTP-Proxy. Er wird " -"standardmäßig in der Form " -"<literal>http://[[Anwender][:Passwort]@]Host[:Port]/</literal> angegeben. " -"Durch Host-Proxies kann außerdem in der Form " +"standardmäßig in der Form <literal>http://[[Anwender][:Passwort]@]Host[:" +"Port]/</literal> angegeben. Durch Host-Proxies kann außerdem in der Form " "<literal>http::Proxy::<host></literal> mit dem speziellen " -"Schlüsselwort <literal>DIRECT</literal> angegeben werden, dass keine " -"Proxies benutzt werden. Falls keine der obigen Einstellungen angegeben " -"wurde, wird die Umgebungsvariable <envar>http_proxy</envar> benutzt." +"Schlüsselwort <literal>DIRECT</literal> angegeben werden, dass keine Proxies " +"benutzt werden. Falls keine der obigen Einstellungen angegeben wurde, wird " +"die Umgebungsvariable <envar>http_proxy</envar> benutzt." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:234 +#: apt.conf.5.xml:239 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy to not use its cached " @@ -6170,37 +6045,35 @@ msgid "" "than the given number of seconds. Debian updates its index files daily so " "the default is 1 day. <literal>No-Store</literal> specifies that the cache " "should never store this request, it is only set for archive files. This may " -"be useful to prevent polluting a proxy cache with very large .deb " -"files. Note: Squid 2.0.2 does not support any of these options." -msgstr "" -"Für die Steuerung des Zwischenspeichers mit HTTP/1.1-konformen " -"Proxy-Zwischenspeichern stehen drei Einstellungen zur Verfügung. " -"<literal>No-Cache</literal> teilt dem Proxy mit, dass er unter keinen " -"Umständen seine zwischengespeicherten Antworten benutzen soll, " -"<literal>Max-Age</literal> wird nur für Indexdateien gesendet und sagt " -"dem Zwischenspeicher, dass er seine Objekte erneuern soll, die älter als " -"die angegebene Zahl in Sekunden sind. Debian aktualisiert seine " -"Indexdateien täglich, so dass die Vorgabe ein Tag ist. " -"<literal>No-Store</literal> gibt an, dass der Zwischenspeicher diese " -"Anfragen niemals speichern soll, es ist nur für Archivdateien gesetzt. " -"Dies könnte nützlich sein, um Verunreinigungen des " -"Proxy-Zwischenspeichers mit sehr großen .deb-Dateien zu verhindern. " -"Beachten Sie: Squid 2.0.2 unterstützt keine dieser Optionen." +"be useful to prevent polluting a proxy cache with very large .deb files. " +"Note: Squid 2.0.2 does not support any of these options." +msgstr "" +"Für die Steuerung des Zwischenspeichers mit HTTP/1.1-konformen Proxy-" +"Zwischenspeichern stehen drei Einstellungen zur Verfügung. <literal>No-" +"Cache</literal> teilt dem Proxy mit, dass er unter keinen Umständen seine " +"zwischengespeicherten Antworten benutzen soll, <literal>Max-Age</literal> " +"wird nur für Indexdateien gesendet und sagt dem Zwischenspeicher, dass er " +"seine Objekte erneuern soll, die älter als die angegebene Zahl in Sekunden " +"sind. Debian aktualisiert seine Indexdateien täglich, so dass die Vorgabe " +"ein Tag ist. <literal>No-Store</literal> gibt an, dass der Zwischenspeicher " +"diese Anfragen niemals speichern soll, es ist nur für Archivdateien gesetzt. " +"Dies könnte nützlich sein, um Verunreinigungen des Proxy-Zwischenspeichers " +"mit sehr großen .deb-Dateien zu verhindern. Beachten Sie: Squid 2.0.2 " +"unterstützt keine dieser Optionen." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:244 apt.conf.5.xml:301 +#: apt.conf.5.xml:249 apt.conf.5.xml:306 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method, this applies to all things including connection timeout and data " "timeout." msgstr "" "Die Option <literal>timeout</literal> stellt den Zeitnehmer für die " -"Zeitüberschreitung ein, die von der Methode benutzt wird. Dies wird auf " -"alle Dinge, einschließlich Verbindungs- und Datenzeitüberschreitungen, " -"angewandt." +"Zeitüberschreitung ein, die von der Methode benutzt wird. Dies wird auf alle " +"Dinge, einschließlich Verbindungs- und Datenzeitüberschreitungen, angewandt." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:247 +#: apt.conf.5.xml:252 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) " @@ -6212,48 +6085,47 @@ msgid "" msgstr "" "Eine Einstellung wird bereitgestellt, um die Tiefe der Warteschlange in " "Fällen zu steuern, in denen der andere Server nicht RFC-konform oder " -"fehlerhaft (so wie Squid 2.0.2) ist. " -"<literal>Acquire::http::Pipeline-Depth</literal> kann " -"ein Wert von 0 bis 5 sein, der anzeigt, wie viele ausstehende Anfragen " -"APT senden soll. Ein Wert von Null MUSS angegeben werden, falls der " -"andere Server nicht ordnungsgemäß auf TCP-Verbindungen wartet – " -"anderenfalls werden fehlerhafte Daten erscheinen. Rechner, die dies " -"erfordern, verstoßen gegen RFC 2068." +"fehlerhaft (so wie Squid 2.0.2) ist. <literal>Acquire::http::Pipeline-Depth</" +"literal> kann ein Wert von 0 bis 5 sein, der anzeigt, wie viele ausstehende " +"Anfragen APT senden soll. Ein Wert von Null MUSS angegeben werden, falls der " +"andere Server nicht ordnungsgemäß auf TCP-Verbindungen wartet – anderenfalls " +"werden fehlerhafte Daten erscheinen. Rechner, die dies erfordern, verstoßen " +"gegen RFC 2068." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:255 +#: apt.conf.5.xml:260 msgid "" -"The used bandwidth can be limited with " -"<literal>Acquire::http::Dl-Limit</literal> which accepts integer values in " -"kilobyte. The default value is 0 which deactivates the limit and tries uses " -"as much as possible of the bandwidth (Note that this option implicit " -"deactivates the download from multiple servers at the same time.)" +"The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" +"literal> which accepts integer values in kilobyte. The default value is 0 " +"which deactivates the limit and tries uses as much as possible of the " +"bandwidth (Note that this option implicit deactivates the download from " +"multiple servers at the same time.)" msgstr "" -"Die benutzte Bandbreite kann durch " -"<literal>Acquire::http::Dl-Limit</literal> eingeschränkt werden, was " -"Ganzzahlwerte in Kilobyte akzeptiert. Der Vorgabewert ist 0, was die " -"Beschränkung ausschaltet und versucht, soviel wie möglich von der " -"Bandbreite zu benutzen. (Beachten Sie, dass diese Optionen implizit das " -"Herunterladen von mehreren Servern zur gleichen Zeit deaktiviert.)" +"Die benutzte Bandbreite kann durch <literal>Acquire::http::Dl-Limit</" +"literal> eingeschränkt werden, was Ganzzahlwerte in Kilobyte akzeptiert. Der " +"Vorgabewert ist 0, was die Beschränkung ausschaltet und versucht, soviel wie " +"möglich von der Bandbreite zu benutzen. (Beachten Sie, dass diese Optionen " +"implizit das Herunterladen von mehreren Servern zur gleichen Zeit " +"deaktiviert.)" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:261 +#: apt.conf.5.xml:266 msgid "https" msgstr "https" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:262 +#: apt.conf.5.xml:267 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." msgstr "" "HTTPS-URIs. Zwischenspeichersteuerung und Proxy-Optionen entsprehen denen " -"der <literal>http</literal>-Methode. Die Option " -"<literal>Pipeline-Depth</literal> wird noch nicht unterstützt." +"der <literal>http</literal>-Methode. Die Option <literal>Pipeline-Depth</" +"literal> wird noch nicht unterstützt." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:266 +#: apt.conf.5.xml:271 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is " @@ -6261,84 +6133,78 @@ msgid "" "suboption determines whether verify server's host certificate against " "trusted certificates or not. <literal><host>::Verify-Peer</literal> " "is corresponding per-host option. <literal>Verify-Host</literal> boolean " -"suboption determines whether verify server's hostname or not. " -"<literal><host>::Verify-Host</literal> is corresponding per-host " -"option. <literal>SslCert</literal> determines what certificate to use for " -"client authentication. <literal><host>::SslCert</literal> is " -"corresponding per-host option. <literal>SslKey</literal> determines what " -"private key to use for client " -"authentication. <literal><host>::SslKey</literal> is corresponding " -"per-host option. <literal>SslForceVersion</literal> overrides default SSL " -"version to use. Can contain 'TLSv1' or 'SSLv3' string. " +"suboption determines whether verify server's hostname or not. <literal><" +"host>::Verify-Host</literal> is corresponding per-host option. " +"<literal>SslCert</literal> determines what certificate to use for client " +"authentication. <literal><host>::SslCert</literal> is corresponding " +"per-host option. <literal>SslKey</literal> determines what private key to " +"use for client authentication. <literal><host>::SslKey</literal> is " +"corresponding per-host option. <literal>SslForceVersion</literal> overrides " +"default SSL version to use. Can contain 'TLSv1' or 'SSLv3' string. " "<literal><host>::SslForceVersion</literal> is corresponding per-host " "option." msgstr "" "Die Unteroption <literal>CaInfo</literal> gibt den Ort an, an dem " "Informationen über vertrauenswürdige Zertifikate bereitgehalten werden. " -"<literal><host>::CaInfo</literal> ist die entsprechende " -"per-Host-Option. Die boolsche Unteroption <literal>Verify-Peer</literal> " -"entscheidet, ob das Host-Zertifikat des Servers mit den " -"vertrauenswürdigen Zertifikaten geprüft wird oder nicht. " -"<literal><host>::Verify-Peer</literal> ist die entsprechende " -"per-Host-Option. Die boolsche Unteroption <literal>Verify-Host</literal> " -"entscheidet, ob der Host-Name des Servers geprüft wird oder nicht. " -"<literal><host>::Verify-Host</literal> ist die entsprechende " -"per-Host-Option. <literal>SslCert</literal> entscheidet, welches " -"Zertifikat zur Client-Authentifizierung benutzt wird. " -"<literal><host>::SslCert</literal> ist die entsprechende " -"per-Host-Option. <literal>SslKey</literal> entscheidet, welche privaten " -"Schlüssel für die Client-Authentifizierung benutzt werden. " -"<literal><host>::SslKey</literal> ist die entsprechende " -"per-Host-Option. <literal>SslForceVersion</literal> überschreibt die " -"zu benutzende Standard-SSL-Version. Es kann die Zeichenketten »TLSv1« " -"oder »SSLv3« enthalten. <literal><host>::SslForceVersion</literal> " -"ist die entsprechende per-Host-Option." +"<literal><host>::CaInfo</literal> ist die entsprechende per-Host-" +"Option. Die boolsche Unteroption <literal>Verify-Peer</literal> entscheidet, " +"ob das Host-Zertifikat des Servers mit den vertrauenswürdigen Zertifikaten " +"geprüft wird oder nicht. <literal><host>::Verify-Peer</literal> ist " +"die entsprechende per-Host-Option. Die boolsche Unteroption <literal>Verify-" +"Host</literal> entscheidet, ob der Host-Name des Servers geprüft wird oder " +"nicht. <literal><host>::Verify-Host</literal> ist die entsprechende " +"per-Host-Option. <literal>SslCert</literal> entscheidet, welches Zertifikat " +"zur Client-Authentifizierung benutzt wird. <literal><host>::SslCert</" +"literal> ist die entsprechende per-Host-Option. <literal>SslKey</literal> " +"entscheidet, welche privaten Schlüssel für die Client-Authentifizierung " +"benutzt werden. <literal><host>::SslKey</literal> ist die " +"entsprechende per-Host-Option. <literal>SslForceVersion</literal> " +"überschreibt die zu benutzende Standard-SSL-Version. Es kann die " +"Zeichenketten »TLSv1« oder »SSLv3« enthalten. <literal><host>::" +"SslForceVersion</literal> ist die entsprechende per-Host-Option." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:284 sources.list.5.xml:150 +#: apt.conf.5.xml:289 sources.list.5.xml:150 msgid "ftp" msgstr "ftp" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:285 +#: apt.conf.5.xml:290 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 " -"proxies can also be specified by using the form " -"<literal>ftp::Proxy::<host></literal> with the special keyword " -"<literal>DIRECT</literal> meaning to use no proxies. If no one of the above " -"settings is specified, <envar>ftp_proxy</envar> environment variable will be " -"used. 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." +"proxies can also be specified by using the form <literal>ftp::Proxy::<" +"host></literal> with the special keyword <literal>DIRECT</literal> " +"meaning to use no proxies. If no one of the above settings is specified, " +"<envar>ftp_proxy</envar> environment variable will be used. 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." msgstr "" "FTP-URIs; ftp::Proxy ist der zu benutzende Standard-FTP-Proxy. Er wird " -"standardmäßig in der Form " -"<literal>ftp://[[Anwender][:Passwort]@]Host[:Port]/</literal> angegeben. " -"pro-Host-Proxys kann außerdem in der Form " +"standardmäßig in der Form <literal>ftp://[[Anwender][:Passwort]@]Host[:Port]/" +"</literal> angegeben. pro-Host-Proxys kann außerdem in der Form " "<literal>ftp::Proxy::<host></literal> angegeben werden. Hierbei " -"bedeutet das spezielle Schlüsselwort <literal>DIRECT</literal>, dass " -"keine Proxys benutzt werden. Falls keine der obigen Einstellungen " -"angegeben wurde, wird die Umgebungsvariable <envar>ftp_proxy</envar> " -"benutzt. Um einen FTP-Proxy zu benutzen, müssen Sie in der " -"Konfigurationsdatei das Skript <literal>ftp::ProxyLogin</literal> setzen. " -"Dieser Eintrag gibt die Befehle an, die gesendet werden müssen, um dem " -"Proxy-Server mitzuteilen, womit er sich verbinden soll. Um ein Beispiel " -"zu erhalten, wie das gemacht wird, lesen Sie bitte &configureindex;. Die " -"Platzhaltervariablen sind <literal>$(PROXY_USER)</literal>, " -"<literal>$(PROXY_PASS)</literal>, <literal>$(SITE_USER)</literal>, " -"<literal>$(SITE_PASS)</literal>, <literal>$(SITE)</literal> und " -"<literal>$(SITE_PORT)</literal>. Jede wird von ihrem entsprechenden " -"URI-Bestandteil genommen." +"bedeutet das spezielle Schlüsselwort <literal>DIRECT</literal>, dass keine " +"Proxys benutzt werden. Falls keine der obigen Einstellungen angegeben wurde, " +"wird die Umgebungsvariable <envar>ftp_proxy</envar> benutzt. Um einen FTP-" +"Proxy zu benutzen, müssen Sie in der Konfigurationsdatei das Skript " +"<literal>ftp::ProxyLogin</literal> setzen. Dieser Eintrag gibt die Befehle " +"an, die gesendet werden müssen, um dem Proxy-Server mitzuteilen, womit er " +"sich verbinden soll. Um ein Beispiel zu erhalten, wie das gemacht wird, " +"lesen Sie bitte &configureindex;. Die Platzhaltervariablen sind <literal>" +"$(PROXY_USER)</literal>, <literal>$(PROXY_PASS)</literal>, <literal>" +"$(SITE_USER)</literal>, <literal>$(SITE_PASS)</literal>, <literal>$(SITE)</" +"literal> und <literal>$(SITE_PORT)</literal>. Jede wird von ihrem " +"entsprechenden URI-Bestandteil genommen." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:304 +#: apt.conf.5.xml:309 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on, it works in nearly every environment. However " @@ -6346,31 +6212,30 @@ msgid "" "instead. This can be done globally, for connections that go through a proxy " "or for a specific host (See the sample config file for examples)." msgstr "" -"Mehrere Einstellungen werden zum Steuern des passiven Modus " -"bereitgestellt. Generell ist es sicher, den passiven Modus eingeschaltet " -"zu lassen, er funktioniert in nahezu jeder Umgebung. Jedoch erfordern " -"einige Situationen, dass der passive Modus ausgeschaltet und stattdessen " -"Port-Modus-FTP benutzt wird. Dies kann global für Verbindungen gemacht " -"werden, die durch einen Proxy oder über einen bestimmten Host gehen " -"(Lesen Sie die Beispielskonfiguration, um Beispiele zu erhalten)." +"Mehrere Einstellungen werden zum Steuern des passiven Modus bereitgestellt. " +"Generell ist es sicher, den passiven Modus eingeschaltet zu lassen, er " +"funktioniert in nahezu jeder Umgebung. Jedoch erfordern einige Situationen, " +"dass der passive Modus ausgeschaltet und stattdessen Port-Modus-FTP benutzt " +"wird. Dies kann global für Verbindungen gemacht werden, die durch einen " +"Proxy oder über einen bestimmten Host gehen (Lesen Sie die " +"Beispielskonfiguration, um Beispiele zu erhalten)." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:311 +#: apt.conf.5.xml:316 msgid "" -"It is possible to proxy FTP over HTTP by setting the " -"<envar>ftp_proxy</envar> environment variable to a http url - see the " -"discussion of the http method above for syntax. You cannot set this in the " -"configuration file and it is not recommended to use FTP over HTTP due to its " -"low efficiency." +"It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" +"envar> environment variable to a http url - see the discussion of the http " +"method above for syntax. You cannot set this in the configuration file and " +"it is not recommended to use FTP over HTTP due to its low efficiency." msgstr "" "Es ist möglich FTP über HTTP zu leiten, indem die Umgebungsvariable " "<envar>ftp_proxy</envar> auf eine HTTP-Url gesetzt wird – lesen Sie die " -"Besprechung der HTTP-Methode oberhalb bezüglich der Syntax. Sie können " -"dies nicht in der Konfigurationsdatei setzen und es wird wegen der " -"geringen Effizienz nicht empfohlen FTP über HTTP zu benutzen." +"Besprechung der HTTP-Methode oberhalb bezüglich der Syntax. Sie können dies " +"nicht in der Konfigurationsdatei setzen und es wird wegen der geringen " +"Effizienz nicht empfohlen FTP über HTTP zu benutzen." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:316 +#: apt.conf.5.xml:321 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -6378,26 +6243,26 @@ msgid "" "IPv6. Setting this to true forces their use even on IPv4 connections. Note " "that most FTP servers do not support RFC2428." msgstr "" -"Die Einstellung <literal>ForceExtended</literal> steuert die Benutzung " -"der RFC2428-Befehle <literal>EPSV</literal> und <literal>EPRT</literal>. " -"Die Vorgabe ist false, was bedeutet, dass diese Befehle nur benutzt " -"werden, wenn die Steuerverbindung IPv6 ist. Dies auf true zu stellen " -"erzwingt die Benutzung selbst auf IPv4-Verbindungen. Beachten Sie, dass " -"die wenigsten FTP-Server RFC2428 unterstützen." +"Die Einstellung <literal>ForceExtended</literal> steuert die Benutzung der " +"RFC2428-Befehle <literal>EPSV</literal> und <literal>EPRT</literal>. Die " +"Vorgabe ist false, was bedeutet, dass diese Befehle nur benutzt werden, wenn " +"die Steuerverbindung IPv6 ist. Dies auf true zu stellen erzwingt die " +"Benutzung selbst auf IPv4-Verbindungen. Beachten Sie, dass die wenigsten FTP-" +"Server RFC2428 unterstützen." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:323 sources.list.5.xml:132 +#: apt.conf.5.xml:328 sources.list.5.xml:132 msgid "cdrom" msgstr "cdrom" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:329 -#, no-wrap -msgid "\"/cdrom/\"::Mount \"foo\";" +#: apt.conf.5.xml:334 +#, fuzzy, no-wrap +msgid "/cdrom/::Mount \"foo\";" msgstr "\"/cdrom/\"::Mount \"foo\";" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:324 +#: apt.conf.5.xml:329 msgid "" "CDROM URIs; the only setting for CDROM URIs is the mount point, " "<literal>cdrom::Mount</literal> which must be the mount point for the CDROM " @@ -6409,22 +6274,22 @@ msgid "" "can be specified using UMount." msgstr "" "CDROM-URIs; Die einzige Einstellung für CDROM-URIs ist der Einhängepunkt " -"<literal>cdrom::Mount</literal>, der der Einhängepunkt des " -"CDROM-Laufwerks sein muss, wie er in <filename>/etc/fstab</filename> " -"angegeben wurde. Es ist möglich alternative Ein- und Aushängebefehle " -"anzugeben, falls Ihr Einhängepunkt nicht in der fstab aufgelistet werden " -"kann (so wie beim Einhängen per SMB und alten Mount-Paketen). Die Syntax " -"besteht darin, <placeholder type=\"literallayout\" id=\"0\"/> in den " -"CDROM-Block einzufügen. Der abschließende Schrägstrich ist wichtig. " -"Aushängebefehle können per UMount angegeben werden." +"<literal>cdrom::Mount</literal>, der der Einhängepunkt des CDROM-Laufwerks " +"sein muss, wie er in <filename>/etc/fstab</filename> angegeben wurde. Es ist " +"möglich alternative Ein- und Aushängebefehle anzugeben, falls Ihr " +"Einhängepunkt nicht in der fstab aufgelistet werden kann (so wie beim " +"Einhängen per SMB und alten Mount-Paketen). Die Syntax besteht darin, " +"<placeholder type=\"literallayout\" id=\"0\"/> in den CDROM-Block " +"einzufügen. Der abschließende Schrägstrich ist wichtig. Aushängebefehle " +"können per UMount angegeben werden." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:334 +#: apt.conf.5.xml:339 msgid "gpgv" msgstr "gpgv" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:335 +#: apt.conf.5.xml:340 msgid "" "GPGV URIs; the only option for GPGV URIs is the option to pass additional " "parameters to gpgv. <literal>gpgv::Options</literal> Additional options " @@ -6435,122 +6300,113 @@ msgstr "" "Zusätzliche Parameter werden an gpgv weitergeleitet." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:340 +#: apt.conf.5.xml:345 msgid "CompressionTypes" msgstr "CompressionTypes" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:346 +#: apt.conf.5.xml:351 #, no-wrap -msgid "" -"Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> " -"\"<replaceable>Methodname</replaceable>\";" -msgstr "" -"Acquire::CompressionTypes::<replaceable>Dateierweiterung</replaceable> " -"\"<replaceable>Methodenname</replaceable>\";" +msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" +msgstr "Acquire::CompressionTypes::<replaceable>Dateierweiterung</replaceable> \"<replaceable>Methodenname</replaceable>\";" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:341 +#: apt.conf.5.xml:346 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " "compression formats. Per default the acquire methods can decompress " -"<command>bzip2</command>, <command>lzma</command> and " -"<command>gzip</command> compressed files, with this setting more formats can " -"be added on the fly or the used method can be changed. The syntax for this " -"is: <placeholder type=\"synopsis\" id=\"0\"/>" -msgstr "" -"Die List der Kompressionstypen die von den »aquire«-Methoden " -"verstanden werden. Dateien wie <filename>Packages</filename> können in " -"verschiedenen Kompressionsformaten verfügbar sein. Standardmäßig können " -"die »aquire«-Methoden <command>bzip2</command>-, <command>lzma</command>- " -"und <command>gzip</command>-komprimierte Dateien dekomprimieren. Mit " -"dieser Einstellung können spontan weiter Formate hinzugefügt oder die " -"benutzte Methode geändert werden. Die Syntax dafür lautet: " +"<command>bzip2</command>, <command>lzma</command> and <command>gzip</" +"command> compressed files, with this setting more formats can be added on " +"the fly or the used method can be changed. The syntax for this is: " "<placeholder type=\"synopsis\" id=\"0\"/>" +msgstr "" +"Die List der Kompressionstypen die von den »aquire«-Methoden verstanden " +"werden. Dateien wie <filename>Packages</filename> können in verschiedenen " +"Kompressionsformaten verfügbar sein. Standardmäßig können die »aquire«-" +"Methoden <command>bzip2</command>-, <command>lzma</command>- und " +"<command>gzip</command>-komprimierte Dateien dekomprimieren. Mit dieser " +"Einstellung können spontan weiter Formate hinzugefügt oder die benutzte " +"Methode geändert werden. Die Syntax dafür lautet: <placeholder type=" +"\"synopsis\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:351 +#: apt.conf.5.xml:356 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "Acquire::CompressionTypes::Order:: \"gz\";" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:354 +#: apt.conf.5.xml:359 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:347 +#: apt.conf.5.xml:352 msgid "" "Also the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " "acquire system will try the first and proceed with the next compression type " "in this list on error, so to prefer one over the other type simple add the " "preferred type at first - not already added default types will be added at " -"run time to the end of the list, so e.g. <placeholder type=\"synopsis\" " -"id=\"0\"/> can be used to prefer <command>gzip</command> compressed files " -"over <command>bzip2</command> and <command>lzma</command>. If " -"<command>lzma</command> should be preferred over <command>gzip</command> and " +"run time to the end of the list, so e.g. <placeholder type=\"synopsis\" id=" +"\"0\"/> can be used to prefer <command>gzip</command> compressed files over " +"<command>bzip2</command> and <command>lzma</command>. If <command>lzma</" +"command> should be preferred over <command>gzip</command> and " "<command>bzip2</command> the configure setting should look like this " "<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 "" -"Außerdem kann die Untergruppe <literal>Order</literal> benutzt werden, um " -"zu definieren, in welcher Reihenfolge das »aquire«-System die " -"komprimierten Dateien herunterzuladen versucht. Das »aquire«-System wird " -"die erste versuchen und mit dem nächsten Kompressionstyp in dieser Liste " -"bei einem Fehler fortfahren. Um daher einen nach dem anderen Typ " -"vorzuziehen, fügen Sie einfach den bevorzugten Typ zuerst in die Liste " -"– noch nicht hinzugefügte Standardtypen werden zur Laufzeit an das Ende " -"der Liste angehängt, so kann z.B. " -"<placeholder type=\"synopsis\"id=\"0\"/> verwandt werden, um " -"<command>gzip</command>-komprimierte Dateien über " -"<command>bzip2</command> und <command>lzma</command> zu bevorzugen. Falls " -"<command>lzma</command> vor <command>gzip</command> und " -"<command>bzip2</command> vorgezogen werden soll, sollte die " -"Konfigurationseinstellung so aussehen: " -"<placeholder type=\"synopsis\" id=\"1\"/>. Es ist nicht nötig " -"<literal>bz2</literal> explizit zur Liste hinzuzufügen, da es automatisch " -"hinzufügt wird." +"Außerdem kann die Untergruppe <literal>Order</literal> benutzt werden, um zu " +"definieren, in welcher Reihenfolge das »aquire«-System die komprimierten " +"Dateien herunterzuladen versucht. Das »aquire«-System wird die erste " +"versuchen und mit dem nächsten Kompressionstyp in dieser Liste bei einem " +"Fehler fortfahren. Um daher einen nach dem anderen Typ vorzuziehen, fügen " +"Sie einfach den bevorzugten Typ zuerst in die Liste – noch nicht " +"hinzugefügte Standardtypen werden zur Laufzeit an das Ende der Liste " +"angehängt, so kann z.B. <placeholder type=\"synopsis\"id=\"0\"/> verwandt " +"werden, um <command>gzip</command>-komprimierte Dateien über <command>bzip2</" +"command> und <command>lzma</command> zu bevorzugen. Falls <command>lzma</" +"command> vor <command>gzip</command> und <command>bzip2</command> vorgezogen " +"werden soll, sollte die Konfigurationseinstellung so aussehen: <placeholder " +"type=\"synopsis\" id=\"1\"/>. Es ist nicht nötig <literal>bz2</literal> " +"explizit zur Liste hinzuzufügen, da es automatisch hinzufügt wird." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:358 +#: apt.conf.5.xml:363 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "Dir::Bin::bzip2 \"/bin/bzip2\";" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:356 -msgid "" -"Note that at run time the " -"<literal>Dir::Bin::<replaceable>Methodname</replaceable></literal> will be " -"checked: If this setting exists the method will only be used if this file " -"exists, e.g. for the bzip2 method (the inbuilt) setting is <placeholder " -"type=\"literallayout\" id=\"0\"/> Note also that list entries specified on " -"the command line will be added at the end of the list specified in the " -"configuration files, but before the default entries. To prefer a type in " -"this case over the ones specified in in the configuration files you can set " -"the option direct - not in list style. This will not override the defined " -"list, it will only prefix the list with this type." -msgstr "" -"Beachten Sie, dass " -"<literal>Dir::Bin::<replaceable>Methodenname</replaceable></literal> zur " -"Laufzeit geprüft wird: Falls diese Einstellung existiert, wird die " -"Methode nur benutzt, wenn die Datei existiert, z.B. für die (integrierte) " -"bzip2-Methode ist die Einstellung " -"<placeholder type=\"literallayout\" id=\"0\"/>. Beachten Sie, dass diese " -"auf der Befehlszeile eingegebenen Einträge an das Ende der Liste " -"angehängt werden, die in den Konfigurationsdateien angegeben wurde, aber " -"vor den Vorgabeeinträgen. Um einen Eintrag in diesem Fall vor einem, über " -"die in der Konfigurationsdatei angegebenen, zu bevorzugen, können Sie " -"diese Option direkt setzen – nicht im Listenstil. Dies wird die " -"definierte Liste nicht überschreiben, es wird diesen Typ nur vor die " -"Liste setzen." +#: apt.conf.5.xml:361 +msgid "" +"Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</" +"replaceable></literal> will be checked: If this setting exists the method " +"will only be used if this file exists, e.g. for the bzip2 method (the " +"inbuilt) setting is <placeholder type=\"literallayout\" id=\"0\"/> Note also " +"that list entries specified on the command line will be added at the end of " +"the list specified in the configuration files, but before the default " +"entries. To prefer a type in this case over the ones specified in in the " +"configuration files you can set the option direct - not in list style. This " +"will not override the defined list, it will only prefix the list with this " +"type." +msgstr "" +"Beachten Sie, dass <literal>Dir::Bin::<replaceable>Methodenname</" +"replaceable></literal> zur Laufzeit geprüft wird: Falls diese Einstellung " +"existiert, wird die Methode nur benutzt, wenn die Datei existiert, z.B. für " +"die (integrierte) bzip2-Methode ist die Einstellung <placeholder type=" +"\"literallayout\" id=\"0\"/>. Beachten Sie, dass diese auf der Befehlszeile " +"eingegebenen Einträge an das Ende der Liste angehängt werden, die in den " +"Konfigurationsdateien angegeben wurde, aber vor den Vorgabeeinträgen. Um " +"einen Eintrag in diesem Fall vor einem, über die in der Konfigurationsdatei " +"angegebenen, zu bevorzugen, können Sie diese Option direkt setzen – nicht im " +"Listenstil. Dies wird die definierte Liste nicht überschreiben, es wird " +"diesen Typ nur vor die Liste setzen." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:363 +#: apt.conf.5.xml:368 msgid "" "While it is possible to add an empty compression type to the order list, but " "APT in its current version doesn't understand it correctly and will display " @@ -6559,39 +6415,38 @@ msgid "" "prefer uncompressed files to support the usage of local mirrors." msgstr "" "Obwohl es möglich ist, einen leeren Komprimierungstyp zu der " -"Reihenfolgenliste hinzuzufügen, versteht dies APT in der aktuellen " -"Version nicht richtig und wird viele Warnungen wegen nicht " -"heruntergeladener Dateien anzeigen – diese Warnungen sind meistens " -"inkorrekte Treffer. Zukünftige Versionen werden möglicherweise eine " -"Möglichkeit enthalten, um wirklich unkomprimierte Dateien vorzuziehen, um " -"den Gebrauch lokaler Spiegel zu unterstützen." +"Reihenfolgenliste hinzuzufügen, versteht dies APT in der aktuellen Version " +"nicht richtig und wird viele Warnungen wegen nicht heruntergeladener Dateien " +"anzeigen – diese Warnungen sind meistens inkorrekte Treffer. Zukünftige " +"Versionen werden möglicherweise eine Möglichkeit enthalten, um wirklich " +"unkomprimierte Dateien vorzuziehen, um den Gebrauch lokaler Spiegel zu " +"unterstützen." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:197 +#: apt.conf.5.xml:202 msgid "" "The <literal>Acquire</literal> group of options controls the download of " -"packages and the URI handlers. <placeholder type=\"variablelist\" " -"id=\"0\"/>" +"packages and the URI handlers. <placeholder type=\"variablelist\" id=\"0\"/>" msgstr "" -"Die <literal>Acquire</literal>-Gruppe der Optionen steuert das " -"Herunterladen von Paketen und die URI-Steuerprogramme. " -"<placeholder type=\"variablelist\" id=\"0\"/>" +"Die <literal>Acquire</literal>-Gruppe der Optionen steuert das Herunterladen " +"von Paketen und die URI-Steuerprogramme. <placeholder type=\"variablelist\" " +"id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:372 +#: apt.conf.5.xml:377 msgid "Directories" msgstr "Verzeichnisse" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:374 +#: apt.conf.5.xml:379 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " "downloaded package lists in and <literal>status</literal> is the name of the " "dpkg status file. <literal>preferences</literal> is the name of the APT " "preferences file. <literal>Dir::State</literal> contains the default " -"directory to prefix on all sub items if they do not start with " -"<filename>/</filename> or <filename>./</filename>." +"directory to prefix on all sub items if they do not start with <filename>/</" +"filename> or <filename>./</filename>." msgstr "" "Der <literal>Dir::State</literal>-Abschnitt hat Verzeichnisse, die zu " "lokalen Statusinformationen gehören. <literal>lists</literal> ist das " @@ -6599,11 +6454,11 @@ msgstr "" "<literal>status</literal> ist der Name der Dpkg-Statusdatei. " "<literal>preferences</literal> ist der Name der APT-Einstellungsdatei. " "<literal>Dir::State</literal> enthält das Standardverzeichnis, das allen " -"Unterelementen vorangestellt wird, falls sie nicht mit " -"<filename>/</filename> oder <filename>./</filename> beginnen." +"Unterelementen vorangestellt wird, falls sie nicht mit <filename>/</" +"filename> oder <filename>./</filename> beginnen." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:381 +#: apt.conf.5.xml:386 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -6616,17 +6471,17 @@ msgid "" msgstr "" "<literal>Dir::Cache</literal> enthält Orte, die zu lokalen " "Zwischenspeicherinformationen gehören, so wie die beiden " -"Paketzwischenspeicher <literal>srcpkgcache</literal> und " -"<literal>pkgcache</literal>, sowie der Ort, an den heruntergeladene " -"Archive platziert werden, <literal>Dir::Cache::archives</literal>. " -"Die Generierung von Zwischenspeichern kann ausgeschaltet werden, indem ihre " -"Namen leer gelassen werden. Dies wird den Start verlangsamen, aber " -"Plattenplatz sparen. Es ist vermutlich vorzuziehen, statt des »pkgcache«s " -"den »srcpkgcache« auszuschalten. Wie <literal>Dir::State</literal> ist das " -"Standardverzeichnis in <literal>Dir::Cache</literal> enthalten." +"Paketzwischenspeicher <literal>srcpkgcache</literal> und <literal>pkgcache</" +"literal>, sowie der Ort, an den heruntergeladene Archive platziert werden, " +"<literal>Dir::Cache::archives</literal>. Die Generierung von " +"Zwischenspeichern kann ausgeschaltet werden, indem ihre Namen leer gelassen " +"werden. Dies wird den Start verlangsamen, aber Plattenplatz sparen. Es ist " +"vermutlich vorzuziehen, statt des »pkgcache«s den »srcpkgcache« auszuschalten. " +"Wie <literal>Dir::State</literal> ist das Standardverzeichnis in " +"<literal>Dir::Cache</literal> enthalten." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:390 +#: apt.conf.5.xml:395 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -6635,13 +6490,13 @@ msgid "" "<envar>APT_CONFIG</envar>)." msgstr "" "<literal>Dir::Etc</literal> enthält den Ort der Konfigurationsdateien, " -"<literal>sourcelist</literal> gibt den Ort der Quellliste und " -"<literal>main</literal> ist die Standardkonfigurationsdatei (Einstellung " -"hat keine Auswirkung, außer wenn sie aus der in <envar>APT_CONFIG</envar> " -"angegebenen Konfigurationsdatei erfolgt)." +"<literal>sourcelist</literal> gibt den Ort der Quellliste und <literal>main</" +"literal> ist die Standardkonfigurationsdatei (Einstellung hat keine " +"Auswirkung, außer wenn sie aus der in <envar>APT_CONFIG</envar> angegebenen " +"Konfigurationsdatei erfolgt)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:396 +#: apt.conf.5.xml:401 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -6649,57 +6504,54 @@ msgid "" msgstr "" "Die <literal>Dir::Parts</literal>-Einstellung liest in allen " "Konfigurationsteilen in lexikalischer Reihenfolge vom angegebenen " -"Verzeichnis. Nachdem dies geschehen ist, wird die " -"Hauptkonfigurationsdatei geladen." +"Verzeichnis. Nachdem dies geschehen ist, wird die Hauptkonfigurationsdatei " +"geladen." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:400 +#: apt.conf.5.xml:405 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>bzip2</literal>, <literal>lzma</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." +"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>bzip2</literal>, <literal>lzma</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." msgstr "" "Auf binäre Programme wird von <literal>Dir::Bin</literal> verwiesen. " "<literal>Dir::Bin::Methods</literal> gibt den Ort des " -"Methodensteuerungsprogramms an und <literal>gzip</literal>, " -"<literal>bzip2</literal>, <literal>lzma</literal>, " -"<literal>dpkg</literal>, <literal>apt-get</literal>, " -"<literal>dpkg-source</literal>, <literal>dpkg-buildpackage</literal> und " -"<literal>apt-cache</literal> geben den Ort des jeweiligen Programms an." +"Methodensteuerungsprogramms an und <literal>gzip</literal>, <literal>bzip2</" +"literal>, <literal>lzma</literal>, <literal>dpkg</literal>, <literal>apt-" +"get</literal>, <literal>dpkg-source</literal>, <literal>dpkg-buildpackage</" +"literal> und <literal>apt-cache</literal> geben den Ort des jeweiligen " +"Programms an." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:408 +#: apt.conf.5.xml:413 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " "<literal>RootDir</literal>, <emphasis>even paths that are specified " "absolutely</emphasis>. So, for instance, if <literal>RootDir</literal> is " -"set to <filename>/tmp/staging</filename> and " -"<literal>Dir::State::status</literal> is set to " -"<filename>/var/lib/dpkg/status</filename>, then the status file will be " -"looked up in <filename>/tmp/staging/var/lib/dpkg/status</filename>." +"set to <filename>/tmp/staging</filename> and <literal>Dir::State::status</" +"literal> is set to <filename>/var/lib/dpkg/status</filename>, then the " +"status file will be looked up in <filename>/tmp/staging/var/lib/dpkg/status</" +"filename>." msgstr "" "Das Konfigurationselement <literal>RootDir</literal> hat eine besondere " -"Bedeutung. Falls es gesetzt ist, sind alle Pfad relativ zu " -"<literal>RootDir</literal>, <emphasis>sogar Pfade, die absolut angegeben " -"wurden</emphasis>. So wird zum Beispiel, wenn <literal>RootDir</literal> " -"auf <filename>/tmp/staging</filename> und " -"<literal>Dir::State::status</literal> auf " -"<filename>/var/lib/dpkg/status</filename> gesetzt ist, nach der " -"Statusdatei in <filename>/tmp/staging/var/lib/dpkg/status</filename> " -"nachgesehen." +"Bedeutung. Falls es gesetzt ist, sind alle Pfad relativ zu <literal>RootDir</" +"literal>, <emphasis>sogar Pfade, die absolut angegeben wurden</emphasis>. So " +"wird zum Beispiel, wenn <literal>RootDir</literal> auf <filename>/tmp/" +"staging</filename> und <literal>Dir::State::status</literal> auf <filename>/" +"var/lib/dpkg/status</filename> gesetzt ist, nach der Statusdatei in " +"<filename>/tmp/staging/var/lib/dpkg/status</filename> nachgesehen." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:421 +#: apt.conf.5.xml:426 msgid "APT in DSelect" msgstr "APT in DSelect" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:423 +#: apt.conf.5.xml:428 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behaviour. These are in the <literal>DSelect</literal> " @@ -6710,12 +6562,12 @@ msgstr "" "<literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:427 +#: apt.conf.5.xml:432 msgid "Clean" msgstr "Clean" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:428 +#: apt.conf.5.xml:433 msgid "" "Cache Clean mode; this value may be one of always, prompt, auto, pre-auto " "and never. always and prompt will remove all packages from the cache after " @@ -6724,16 +6576,16 @@ msgid "" "for instance). pre-auto performs this action before downloading new " "packages." msgstr "" -"Zwischenspeicherbereinigungsmodus; Dieser Wert kann entweder always, " -"prompt, auto, pre-auto oder never sein. always und prompt werden, nachdem " -"das Upgrade durchgeführt wurde, alle Pakete aus dem Zwischenspeicher " -"entfernen, prompt (die Vorgabe) tut dies bedingt. auto entfernt nur jene " -"Pakete, die nicht länger heruntergeladen werden können (zum Beispiel, " -"weil sie durch eine neue Version ersetzt wurden). pre-auto führt diese " -"Aktion vor dem Herunterladen neuer Pakete durch." +"Zwischenspeicherbereinigungsmodus; Dieser Wert kann entweder always, prompt, " +"auto, pre-auto oder never sein. always und prompt werden, nachdem das " +"Upgrade durchgeführt wurde, alle Pakete aus dem Zwischenspeicher entfernen, " +"prompt (die Vorgabe) tut dies bedingt. auto entfernt nur jene Pakete, die " +"nicht länger heruntergeladen werden können (zum Beispiel, weil sie durch " +"eine neue Version ersetzt wurden). pre-auto führt diese Aktion vor dem " +"Herunterladen neuer Pakete durch." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:437 +#: apt.conf.5.xml:442 msgid "" "The contents of this variable is passed to &apt-get; as command line options " "when it is run for the install phase." @@ -6742,12 +6594,12 @@ msgstr "" "übermittelt, wenn es für die Installationsphase durchlaufen wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:441 +#: apt.conf.5.xml:446 msgid "Updateoptions" msgstr "Updateoptions" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:442 +#: apt.conf.5.xml:447 msgid "" "The contents of this variable is passed to &apt-get; as command line options " "when it is run for the update phase." @@ -6756,12 +6608,12 @@ msgstr "" "übermittelt, wenn es für die Aktualisierungsphase durchlaufen wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:446 +#: apt.conf.5.xml:451 msgid "PromptAfterUpdate" msgstr "PromptAfterUpdate" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:447 +#: apt.conf.5.xml:452 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -6770,12 +6622,12 @@ msgstr "" "nachfragen, um fortzufahren. Vorgabe ist es, nur bei Fehlern nachzufragen." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:453 +#: apt.conf.5.xml:458 msgid "How APT calls dpkg" msgstr "Wie APT Dpkg aufruft" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:454 +#: apt.conf.5.xml:459 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -6784,47 +6636,47 @@ msgstr "" "stehen im Abschnitt <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:459 +#: apt.conf.5.xml:464 msgid "" "This is a list of options to pass to dpkg. The options must be specified " "using the list notation and each list item is passed as a single argument to " "&dpkg;." msgstr "" "Dies ist eine Liste von Optionen, die an Dpkg übermittelt werden. Die " -"Optionen müssen unter Benutzung der Listenschreibweise angegeben werden " -"und jedes Listenelement wird als einzelnes Argument an &dpkg; übermittelt." +"Optionen müssen unter Benutzung der Listenschreibweise angegeben werden und " +"jedes Listenelement wird als einzelnes Argument an &dpkg; übermittelt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:464 +#: apt.conf.5.xml:469 msgid "Pre-Invoke" msgstr "Pre-Invoke" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:464 +#: apt.conf.5.xml:469 msgid "Post-Invoke" msgstr "Post-Invoke" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:465 +#: apt.conf.5.xml:470 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " "commands are invoked in order using <filename>/bin/sh</filename>, should any " "fail APT will abort." msgstr "" -"Dies ist eine Liste von Shell-Befehlen, die vor/nach dem Aufruf von " -"&dpkg; ausgeführt werden. Wie <literal>options</literal> muss dies in " -"Listenschreibweise angegeben werden. Die Befehle werden der Reihenfolge " -"nach mit <filename>/bin/sh</filename> aufgerufen, sollte einer " -"fehlschlagen, wird APT abgebrochen." +"Dies ist eine Liste von Shell-Befehlen, die vor/nach dem Aufruf von &dpkg; " +"ausgeführt werden. Wie <literal>options</literal> muss dies in " +"Listenschreibweise angegeben werden. Die Befehle werden der Reihenfolge nach " +"mit <filename>/bin/sh</filename> aufgerufen, sollte einer fehlschlagen, wird " +"APT abgebrochen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:471 +#: apt.conf.5.xml:476 msgid "Pre-Install-Pkgs" msgstr "Pre-Install-Pkgs" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:472 +#: apt.conf.5.xml:477 msgid "" "This is a list of shell commands to run before invoking dpkg. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -6834,50 +6686,49 @@ msgid "" msgstr "" "Dies ist eine Liste von Shell-Befehlen, die vor dem Aufruf von Dpkg " "ausgeführt werden. Wie <literal>options</literal> muss dies in " -"Listenschreibweise angegeben werden. Die Befehle werden der Reihenfolge " -"nach mit <filename>/bin/sh</filename> aufgerufen, sollte einer " -"fehlschlagen, wird APT abgebrochen. APT wird den Befehlen auf der " -"Standardeingabe die Dateinamen aller .deb-Dateien, die es installieren " -"wird, übergeben, einen pro Zeile." +"Listenschreibweise angegeben werden. Die Befehle werden der Reihenfolge nach " +"mit <filename>/bin/sh</filename> aufgerufen, sollte einer fehlschlagen, wird " +"APT abgebrochen. APT wird den Befehlen auf der Standardeingabe die " +"Dateinamen aller .deb-Dateien, die es installieren wird, übergeben, einen " +"pro Zeile." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:478 +#: apt.conf.5.xml:483 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " -"being changed. Version 2 is enabled by setting " -"<literal>DPkg::Tools::options::cmd::Version</literal> to " -"2. <literal>cmd</literal> is a command given to " -"<literal>Pre-Install-Pkgs</literal>." +"being changed. Version 2 is enabled by setting <literal>DPkg::Tools::" +"options::cmd::Version</literal> to 2. <literal>cmd</literal> is a command " +"given to <literal>Pre-Install-Pkgs</literal>." msgstr "" -"Version 2 dieses Protokolls gibt mehr Informationen aus, einschließlich " -"der Protokollversion, dem APT-Konfigurationsraum und den Paketen, Dateien " -"und den Versionen, die geändert werden. Version 2 wird durch Setzen von " -"<literal>DPkg::Tools::options::cmd::Version</literal> auf 2 " -"eingeschaltet. <literal>cmd</literal> ist ein Befehl, der an " -"<literal>Pre-Install-Pkgs</literal> gegeben wird." +"Version 2 dieses Protokolls gibt mehr Informationen aus, einschließlich der " +"Protokollversion, dem APT-Konfigurationsraum und den Paketen, Dateien und " +"den Versionen, die geändert werden. Version 2 wird durch Setzen von " +"<literal>DPkg::Tools::options::cmd::Version</literal> auf 2 eingeschaltet. " +"<literal>cmd</literal> ist ein Befehl, der an <literal>Pre-Install-Pkgs</" +"literal> gegeben wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:485 +#: apt.conf.5.xml:490 msgid "Run-Directory" msgstr "Run-Directory" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:486 +#: apt.conf.5.xml:491 msgid "" -"APT chdirs to this directory before invoking dpkg, the default is " -"<filename>/</filename>." +"APT chdirs to this directory before invoking dpkg, the default is <filename>/" +"</filename>." msgstr "" "APT wechselt mit chdir in dieses Verzeichnis, bevor Dpkg aufgerufen wird, " "die Vorgabe ist <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:495 msgid "Build-options" msgstr "Build-options" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:491 +#: apt.conf.5.xml:496 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages, the " "default is to disable signing and produce all binaries." @@ -6887,12 +6738,12 @@ msgstr "" "Programme werden erstellt." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:496 +#: apt.conf.5.xml:501 msgid "dpkg trigger usage (and related options)" msgstr "Dpkd-Trigger-Benutzung (und zugehöriger Optionen)" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:497 +#: apt.conf.5.xml:502 msgid "" "APT can call dpkg in a way so it can make aggressive use of triggers over " "multiply calls of dpkg. Without further options dpkg will use triggers only " @@ -6905,21 +6756,20 @@ msgid "" "all frontends will currently stay around half (or more) of the time in the " "100% state while it actually configures all packages." msgstr "" -"APT kann Dpkg auf eine Art aufrufen, auf die aggressiv Gebrauch von " -"Triggern über mehrere Dpkg-Aufrufe gemacht wird. Ohne weitere Optionen " -"wird Dpkg Trigger nur während seiner eigenen Ausführung benutzen. Diese " -"Optionen zu benutzen, kann daher die zum Installieren/Upgrade benötigte " -"Zeit verkürzen. Beachten Sie, dass geplant ist, diese Optionen " -"in Zukunft standardmäßig zu aktivieren, aber da es die Art, wie APT " -"Dpkg aufruft, drastisch ändert, benötigt es noch viele weitere Tests. " -"<emphasis>Diese Optionen sind daher aktuell noch experimentell und " -"sollten nicht in produktiven Umgebungen benutzt werden.</emphasis> " -"Außerdem unterbricht es die Fortschrittsanzeige, so dass alle " -"Oberflächen aktuell in der halben (oder mehr) Zeit auf dem Status 100% " -"stehen, während es aktuell alle Pakete konfiguriert." +"APT kann Dpkg auf eine Art aufrufen, auf die aggressiv Gebrauch von Triggern " +"über mehrere Dpkg-Aufrufe gemacht wird. Ohne weitere Optionen wird Dpkg " +"Trigger nur während seiner eigenen Ausführung benutzen. Diese Optionen zu " +"benutzen, kann daher die zum Installieren/Upgrade benötigte Zeit verkürzen. " +"Beachten Sie, dass geplant ist, diese Optionen in Zukunft standardmäßig zu " +"aktivieren, aber da es die Art, wie APT Dpkg aufruft, drastisch ändert, " +"benötigt es noch viele weitere Tests. <emphasis>Diese Optionen sind daher " +"aktuell noch experimentell und sollten nicht in produktiven Umgebungen " +"benutzt werden.</emphasis> Außerdem unterbricht es die Fortschrittsanzeige, " +"so dass alle Oberflächen aktuell in der halben (oder mehr) Zeit auf dem " +"Status 100% stehen, während es aktuell alle Pakete konfiguriert." #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:512 +#: apt.conf.5.xml:517 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -6933,7 +6783,7 @@ msgstr "" "DPkg::TriggersPending \"true\";" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:506 +#: apt.conf.5.xml:511 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -6949,22 +6799,21 @@ msgstr "" "unterstützen wird oder dass diese Optionen in der Zukunft keinen (großen) " "Ärger machen. Wenn Sie die allgemeinen Risiken und Probleme mit diesen " "Optionen verstanden haben, aber tapfer genug sind, sie testen zu helfen, " -"erstellen Sie eine neue Konfigurationsdatei und testen Sie eine " -"Kombination von Optionen. Bitte berichten Sie auf Englisch jegliche " -"Fehler, Probleme und Verbesserungen, denen Sie begegnen und stellen Sie " -"sicher, dass Sie alle von Ihnen benutzten Optionen in Ihren Berichten " -"vermerken. Zum Zweck der Fehlersuche könnte es außerdem nützlich sein, " -"Dpkg um Hilfe zu fragen. Lesen Sie z.B. <command>dpkg --audit</command>. " -"Eine defensive Optionenkombination wäre " -"<placeholder type=\"literallayout\" id=\"0\"/>" +"erstellen Sie eine neue Konfigurationsdatei und testen Sie eine Kombination " +"von Optionen. Bitte berichten Sie auf Englisch jegliche Fehler, Probleme und " +"Verbesserungen, denen Sie begegnen und stellen Sie sicher, dass Sie alle von " +"Ihnen benutzten Optionen in Ihren Berichten vermerken. Zum Zweck der " +"Fehlersuche könnte es außerdem nützlich sein, Dpkg um Hilfe zu fragen. Lesen " +"Sie z.B. <command>dpkg --audit</command>. Eine defensive Optionenkombination " +"wäre <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:518 +#: apt.conf.5.xml:523 msgid "DPkg::NoTriggers" msgstr "DPkg::NoTriggers" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:519 +#: apt.conf.5.xml:524 msgid "" "Add the no triggers flag to all dpkg calls (expect the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -6974,84 +6823,81 @@ msgid "" "Previously these option only append --no-triggers to the configure calls to " "dpkg - now apt will add these flag also to the unpack and remove calls." msgstr "" -"Die keine-Trigger-Markierung zu allen Dpkg-Aufrufen hinzufügen " -"(ausgenommen den ConfigurePending-Aufruf). Siehe &dpkg;, wenn Sie " -"interessiert sind, was dies tatsächlich bedeutet. In Kürze: Dpkg wird die " -"Trigger nicht ausführen, dann ist diese Markierung vorhanden, außer sie " -"wird explizit aufgerufen, um dies in einem gesonderten Aufruf zu tun. " -"Beachten Sie, dass diese Option außerdem in älteren APT-Versionen mit " -"einer geringfügig anderen Bedeutung existiert (nicht dokumentiert): " -"Vorher hing diese Option nur --no-triggers an die Konfigurationsaufrufe " -"für Dpkg an – nun wird APT diese Markierung außerdem an die unpack- und " -"remove-Aufrufe anhängen." +"Die keine-Trigger-Markierung zu allen Dpkg-Aufrufen hinzufügen (ausgenommen " +"den ConfigurePending-Aufruf). Siehe &dpkg;, wenn Sie interessiert sind, was " +"dies tatsächlich bedeutet. In Kürze: Dpkg wird die Trigger nicht ausführen, " +"dann ist diese Markierung vorhanden, außer sie wird explizit aufgerufen, um " +"dies in einem gesonderten Aufruf zu tun. Beachten Sie, dass diese Option " +"außerdem in älteren APT-Versionen mit einer geringfügig anderen Bedeutung " +"existiert (nicht dokumentiert): Vorher hing diese Option nur --no-triggers " +"an die Konfigurationsaufrufe für Dpkg an – nun wird APT diese Markierung " +"außerdem an die unpack- und remove-Aufrufe anhängen." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:526 +#: apt.conf.5.xml:531 msgid "PackageManager::Configure" msgstr "PackageManager::Configure" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:527 +#: apt.conf.5.xml:532 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". \"<literal>all</literal>\" is the default " "value and causes APT to configure all packages explicit. The " "\"<literal>smart</literal>\" way is it to configure only packages which need " "to be configured before another package can be unpacked (Pre-Depends) and " -"let the rest configure by dpkg with a call generated by the next " -"option. \"<literal>no</literal>\" on the other hand will not configure " -"anything and totally relay on dpkg for configuration (which will at the " -"moment fail if a Pre-Depends is encountered). Setting this option to " -"another than the all value will implicit activate also the next option per " -"default as otherwise the system could end in an unconfigured status which " -"could be unbootable!" -msgstr "" -"Gültige Werte sind »<literal>all</literal>«, »<literal>smart</literal>« " -"und »<literal>no</literal>«. »<literal>all</literal>« ist der Vorgabewert " -"und veranlasst APT alle Pakete explizit zu konfigurieren. Die Art von " +"let the rest configure by dpkg with a call generated by the next option. " +"\"<literal>no</literal>\" on the other hand will not configure anything and " +"totally relay on dpkg for configuration (which will at the moment fail if a " +"Pre-Depends is encountered). Setting this option to another than the all " +"value will implicit activate also the next option per default as otherwise " +"the system could end in an unconfigured status which could be unbootable!" +msgstr "" +"Gültige Werte sind »<literal>all</literal>«, »<literal>smart</literal>« und " +"»<literal>no</literal>«. »<literal>all</literal>« ist der Vorgabewert und " +"veranlasst APT alle Pakete explizit zu konfigurieren. Die Art von " "»<literal>smart</literal>« ist es, nur die Pakete zu konfigurieren, die " -"konfiguriert werden müssen, bevor eine anderes Paket entpackt " -"(Pre-Depends) werden kann und den Rest von Dpkg mit einem Aufruf, der " -"von der nächsten Option generiert wurde, konfigurieren zu lassen. Im " -"Gegensatz dazu wird »<literal>no</literal>« nicht konfigurieren und " -"völlig die Konfiguration von Dpkg weitergeben (die in dem Moment " -"fehlschlägt, in dem ein Pre-Depends vorkommt). Diese Option auf etwas " -"anderes als all zu setzen, wird außerdem implizit standardmäßig die nächste " -"Option aktivieren, da das System anderenfalls in einem nicht " -"konfigurierten Status enden könnte, der nicht mehr startbar sein könnte." +"konfiguriert werden müssen, bevor eine anderes Paket entpackt (Pre-Depends) " +"werden kann und den Rest von Dpkg mit einem Aufruf, der von der nächsten " +"Option generiert wurde, konfigurieren zu lassen. Im Gegensatz dazu wird " +"»<literal>no</literal>« nicht konfigurieren und völlig die Konfiguration von " +"Dpkg weitergeben (die in dem Moment fehlschlägt, in dem ein Pre-Depends " +"vorkommt). Diese Option auf etwas anderes als all zu setzen, wird außerdem " +"implizit standardmäßig die nächste Option aktivieren, da das System " +"anderenfalls in einem nicht konfigurierten Status enden könnte, der nicht " +"mehr startbar sein könnte." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:537 +#: apt.conf.5.xml:542 msgid "DPkg::ConfigurePending" msgstr "DPkg::ConfigurePending" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:538 -msgid "" -"If this option is set apt will call <command>dpkg --configure " -"--pending</command> to let dpkg handle all required configurations and " -"triggers. This option is activated automatic per default if the previous " -"option is not set to <literal>all</literal>, but deactivating could be " -"useful if you want to run APT multiple times in a row - e.g. in an " -"installer. In this sceneries you could deactivate this option in all but the " -"last run." -msgstr "" -"Wenn diese Option gesetzt ist, wird APT <command>dpkg --configure " -"--pending</command> aufrufen, um Dpkg alle benötigten Konfigurationen " -"und Trigger handhaben zu lassen. Diese Option ist als Vorgabe automatisch " -"aktiviert, wenn die vorherige Option nicht auf <literal>all</literal> " -"gesetzt ist, aber Deaktivieren könnte nützlich sein, wenn Sie APT mehrmals " -"hintereinander ausführen möchten – z.B. in einem Installationsprogramm. In " -"diesen Szenarien könnten Sie diese Option außer in allen außer der " -"letzten Ausführung deaktivieren." +#: apt.conf.5.xml:543 +msgid "" +"If this option is set apt will call <command>dpkg --configure --pending</" +"command> to let dpkg handle all required configurations and triggers. This " +"option is activated automatic per default if the previous option is not set " +"to <literal>all</literal>, but deactivating could be useful if you want to " +"run APT multiple times in a row - e.g. in an installer. In this sceneries " +"you could deactivate this option in all but the last run." +msgstr "" +"Wenn diese Option gesetzt ist, wird APT <command>dpkg --configure --pending</" +"command> aufrufen, um Dpkg alle benötigten Konfigurationen und Trigger " +"handhaben zu lassen. Diese Option ist als Vorgabe automatisch aktiviert, " +"wenn die vorherige Option nicht auf <literal>all</literal> gesetzt ist, aber " +"Deaktivieren könnte nützlich sein, wenn Sie APT mehrmals hintereinander " +"ausführen möchten – z.B. in einem Installationsprogramm. In diesen Szenarien " +"könnten Sie diese Option außer in allen außer der letzten Ausführung " +"deaktivieren." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:544 +#: apt.conf.5.xml:549 msgid "DPkg::TriggersPending" msgstr "DPkg::TriggersPending" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:545 +#: apt.conf.5.xml:550 msgid "" "Useful for <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal> and dpkg " @@ -7060,44 +6906,43 @@ msgid "" "triggers, not only the triggers needed to configure this package." msgstr "" "Nützlich für <literal>smart</literal>-Konfiguration, da ein Paket mit " -"ausstehenden Triggern nicht als <literal>installed</literal> angesehen " -"wird und Dpkg es als aktuell entpackt betrachtet, was ein Hemmschuh für " -"Pre-Dependencies ist (siehe Debian-Fehler #526774). Beachten Sie, dass dies " -"alle Trigger ausführt, nicht nur die Trigger, die zum Konfigurieren dieses " -"Pakets benötigt werden." +"ausstehenden Triggern nicht als <literal>installed</literal> angesehen wird " +"und Dpkg es als aktuell entpackt betrachtet, was ein Hemmschuh für Pre-" +"Dependencies ist (siehe Debian-Fehler #526774). Beachten Sie, dass dies alle " +"Trigger ausführt, nicht nur die Trigger, die zum Konfigurieren dieses Pakets " +"benötigt werden." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:550 +#: apt.conf.5.xml:555 msgid "PackageManager::UnpackAll" msgstr "PackageManager::UnpackAll" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:551 +#: apt.conf.5.xml:556 msgid "" "As the configuration can be deferred to be done at the end by dpkg it can be " -"tried to order the unpack series only by critical needs, e.g. by " -"Pre-Depends. Default is true and therefore the \"old\" method of ordering in " +"tried to order the unpack series only by critical needs, e.g. by Pre-" +"Depends. Default is true and therefore the \"old\" method of ordering in " "various steps by everything. While both method were present in earlier APT " "versions the <literal>OrderCritical</literal> method was unused, so this " "method is very experimental and needs further improvements before becoming " "really useful." msgstr "" "Da die Konfiguration an das Ende von Dpkg verschoben werden kann, kann " -"versucht werden, nur die Entpackserien von kritischen Notwendigkeiten, " -"z.B. von Pre-Depends, anzuweisen. Vorgabe ist true und daher die »alte« " -"Methode zum Sortieren nach allem in mehreren Schritten. Obwohl in früheren " -"Versionen von APT beide Methoden enthalten waren, wurde die " -"<literal>OrderCritical</literal>-Methode nicht benutzt, so dass diese " -"Methode sehr experimentell ist und weitere Verbesserungen benötigt, bevor " -"sie wirklich nützlich wird." +"versucht werden, nur die Entpackserien von kritischen Notwendigkeiten, z.B. " +"von Pre-Depends, anzuweisen. Vorgabe ist true und daher die »alte« Methode " +"zum Sortieren nach allem in mehreren Schritten. Obwohl in früheren Versionen " +"von APT beide Methoden enthalten waren, wurde die <literal>OrderCritical</" +"literal>-Methode nicht benutzt, so dass diese Methode sehr experimentell ist " +"und weitere Verbesserungen benötigt, bevor sie wirklich nützlich wird." #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:558 +#: apt.conf.5.xml:563 msgid "OrderList::Score::Immediate" msgstr "OrderList::Score::Immediate" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:566 +#: apt.conf.5.xml:571 #, no-wrap msgid "" "OrderList::Score {\n" @@ -7115,7 +6960,7 @@ msgstr "" "};" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:559 +#: apt.conf.5.xml:564 msgid "" "Essential packages (and there dependencies) should be configured immediately " "after unpacking. It will be a good idea to do this quite early in the " @@ -7128,289 +6973,286 @@ msgid "" "default values. <placeholder type=\"literallayout\" id=\"0\"/>" msgstr "" "Essentielle Pakete (und ihre Abhängigkeiten) sollten sofort nach dem " -"Entpacken konfiguriert werden. Es ist eine gute Idee, dies ziemlich früh " -"im Upgrade-Prozess zu tun, da diese Konfigurationsaufrufe aktuell " -"außerdem <literal>DPkg::TriggersPending</literal> benötigen, das eine Reihe " -"von Triggern ausführt (die möglicherweise nicht gebraucht werden). " -"Essentielle Pakete haben als Vorgabe eine hohe Bewertung, aber die " -"immediate-Markierung ist relativ niedrig (ein Paket, das Pre-Depends hat, " -"wird höher bewertet). Diese Option und die anderen in der gleichen Gruppe " -"können benutzt werden, um die Bewertung zu ändern. Das folgende Beispiel " -"zeigt die Einstellungen mit ihren Vorgabewerten. " -"<placeholder type=\"literallayout\" id=\"0\"/>" +"Entpacken konfiguriert werden. Es ist eine gute Idee, dies ziemlich früh im " +"Upgrade-Prozess zu tun, da diese Konfigurationsaufrufe aktuell außerdem " +"<literal>DPkg::TriggersPending</literal> benötigen, das eine Reihe von " +"Triggern ausführt (die möglicherweise nicht gebraucht werden). Essentielle " +"Pakete haben als Vorgabe eine hohe Bewertung, aber die immediate-Markierung " +"ist relativ niedrig (ein Paket, das Pre-Depends hat, wird höher bewertet). " +"Diese Option und die anderen in der gleichen Gruppe können benutzt werden, " +"um die Bewertung zu ändern. Das folgende Beispiel zeigt die Einstellungen " +"mit ihren Vorgabewerten. <placeholder type=\"literallayout\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:579 +#: apt.conf.5.xml:584 msgid "Periodic and Archives options" msgstr "Periodische- und Archivoptionen" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:580 +#: apt.conf.5.xml:585 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by " "<literal>/etc/cron.daily/apt</literal> script. See header of this script for " "the brief documentation of these options." msgstr "" -"<literal>APT::Periodic</literal>- und " -"<literal>APT::Archives</literal>-Gruppen von Optionen konfigurieren das " -"Verhalten periodischer APT-Aktualisierungen, die vom Skript " -"<literal>/etc/cron.daily/apt</literal> durchgeführt werden. Lesen Sie die " -"Kopfzeilen dieses Skripts, um eine kurze Dokumentation dieser Optionen zu " -"erhalten." +"<literal>APT::Periodic</literal>- und <literal>APT::Archives</literal>-" +"Gruppen von Optionen konfigurieren das Verhalten periodischer APT-" +"Aktualisierungen, die vom Skript <literal>/etc/cron.daily/apt</literal> " +"durchgeführt werden. Lesen Sie die Kopfzeilen dieses Skripts, um eine kurze " +"Dokumentation dieser Optionen zu erhalten." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:588 +#: apt.conf.5.xml:593 msgid "Debug options" msgstr "Fehlersuchoptionen" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:590 +#: apt.conf.5.xml:595 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " "utilizing the <literal>apt</literal> libraries, or enable special program " -"modes that are primarily useful for debugging the behavior of " -"<literal>apt</literal>. Most of these options are not interesting to a " -"normal user, but a few may be:" +"modes that are primarily useful for debugging the behavior of <literal>apt</" +"literal>. Most of these options are not interesting to a normal user, but a " +"few may be:" msgstr "" "Einschalten von Optionen im Abschnitt <literal>Debug::</literal> wird " -"veranlassen, dass Fehlersuchinformationen an die Standardfehlerausgabe " -"des Programms gesendet werden, das die <literal>apt</literal>-Bibliotheken " -"benutzt oder besondere Programmmodi einschaltet, die in erster Linie für " -"das Fehlersuchverhalten von <literal>apt</literal> nützlich sind. Die " -"meisten dieser Optionen sind für den normalen Anwender uninteressant, " -"aber ein paar könnten es sein:" +"veranlassen, dass Fehlersuchinformationen an die Standardfehlerausgabe des " +"Programms gesendet werden, das die <literal>apt</literal>-Bibliotheken " +"benutzt oder besondere Programmmodi einschaltet, die in erster Linie für das " +"Fehlersuchverhalten von <literal>apt</literal> nützlich sind. Die meisten " +"dieser Optionen sind für den normalen Anwender uninteressant, aber ein paar " +"könnten es sein:" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:601 +#: apt.conf.5.xml:606 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " -"decisions made by <literal>dist-upgrade, upgrade, install, remove, " -"purge</literal>." +"decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" +"literal>." msgstr "" -"<literal>Debug::pkgProblemResolver</literal> schaltet die Ausgabe über " -"die von <literal>dist-upgrade, upgrade, install, remove, purge</literal> " +"<literal>Debug::pkgProblemResolver</literal> schaltet die Ausgabe über die " +"von <literal>dist-upgrade, upgrade, install, remove, purge</literal> " "getroffenen Entscheidungen ein." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:609 +#: apt.conf.5.xml:614 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " -"used to run some operations (for instance, <literal>apt-get -s " -"install</literal>) as a non-root user." +"used to run some operations (for instance, <literal>apt-get -s install</" +"literal>) as a non-root user." msgstr "" -"<literal>Debug::NoLocking</literal> schaltet jegliches Sperren von " -"Dateien aus. Dies kann benutzt werden, um einige Operationen (zum " -"Beispiel <literal>apt-get -s install</literal>) als nicht root-Anwender " -"auszuführen." +"<literal>Debug::NoLocking</literal> schaltet jegliches Sperren von Dateien " +"aus. Dies kann benutzt werden, um einige Operationen (zum Beispiel " +"<literal>apt-get -s install</literal>) als nicht root-Anwender auszuführen." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:618 +#: apt.conf.5.xml:623 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." msgstr "" -"<literal>Debug::pkgDPkgPM</literal> gibt die aktuelle Befehlszeile " -"jedesmal aus, wenn <literal>apt</literal> &dpkg; aufruft." +"<literal>Debug::pkgDPkgPM</literal> gibt die aktuelle Befehlszeile jedesmal " +"aus, wenn <literal>apt</literal> &dpkg; aufruft." #. TODO: provide a #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:626 +#: apt.conf.5.xml:631 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CDROM IDs." msgstr "" -"<literal>Debug::IdentCdrom</literal> schaltet das Einbeziehen von " -"statfs-Daten in CDROM-IDs aus." +"<literal>Debug::IdentCdrom</literal> schaltet das Einbeziehen von statfs-" +"Daten in CDROM-IDs aus." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:636 +#: apt.conf.5.xml:641 msgid "A full list of debugging options to apt follows." msgstr "Eine vollständige Liste der Fehlersuchoptionen von APT folgt." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:641 +#: apt.conf.5.xml:646 msgid "<literal>Debug::Acquire::cdrom</literal>" msgstr "<literal>Debug::Acquire::cdrom</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:645 -msgid "Print information related to accessing <literal>cdrom://</literal> sources." +#: apt.conf.5.xml:650 +msgid "" +"Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" -"Gibt Informationen aus, die sich auf Zugriffe von " -"<literal>cdrom://</literal>-Quellen beziehen." +"Gibt Informationen aus, die sich auf Zugriffe von <literal>cdrom://</" +"literal>-Quellen beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:652 +#: apt.conf.5.xml:657 msgid "<literal>Debug::Acquire::ftp</literal>" msgstr "<literal>Debug::Acquire::ftp</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:656 +#: apt.conf.5.xml:661 msgid "Print information related to downloading packages using FTP." msgstr "" -"Gibt Informationen aus, die sich auf das Herunterladen von Paketen per " -"FTP beziehen." +"Gibt Informationen aus, die sich auf das Herunterladen von Paketen per FTP " +"beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:663 +#: apt.conf.5.xml:668 msgid "<literal>Debug::Acquire::http</literal>" msgstr "<literal>Debug::Acquire::http</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:667 +#: apt.conf.5.xml:672 msgid "Print information related to downloading packages using HTTP." msgstr "" -"Gibt Informationen aus, die sich auf das Herunterladen von Paketen per " -"HTTP beziehen." +"Gibt Informationen aus, die sich auf das Herunterladen von Paketen per HTTP " +"beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:674 +#: apt.conf.5.xml:679 msgid "<literal>Debug::Acquire::https</literal>" msgstr "<literal>Debug::Acquire::https</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:683 msgid "Print information related to downloading packages using HTTPS." msgstr "" -"Gibt Informationen aus, die sich auf das Herunterladen von Paketen per " -"HTTPS beziehen." +"Gibt Informationen aus, die sich auf das Herunterladen von Paketen per HTTPS " +"beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:685 +#: apt.conf.5.xml:690 msgid "<literal>Debug::Acquire::gpgv</literal>" msgstr "<literal>Debug::Acquire::gpgv</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:689 +#: apt.conf.5.xml:694 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." msgstr "" -"Gibt Informationen aus, die sich auf das Prüfen kryptografischer " -"Signaturen mittels <literal>gpg</literal> beziehen." +"Gibt Informationen aus, die sich auf das Prüfen kryptografischer Signaturen " +"mittels <literal>gpg</literal> beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:696 +#: apt.conf.5.xml:701 msgid "<literal>Debug::aptcdrom</literal>" msgstr "<literal>Debug::aptcdrom</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:700 +#: apt.conf.5.xml:705 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" -"Informationen über den Zugriffsprozess auf Paketsammlungen ausgeben, die " -"auf CD-ROMs gespeichert sind." +"Informationen über den Zugriffsprozess auf Paketsammlungen ausgeben, die auf " +"CD-ROMs gespeichert sind." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:707 +#: apt.conf.5.xml:712 msgid "<literal>Debug::BuildDeps</literal>" msgstr "<literal>Debug::BuildDeps</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:710 +#: apt.conf.5.xml:715 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "Beschreibt den Prozess der Auflösung von Bauabhängigkeiten in &apt-get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:717 +#: apt.conf.5.xml:722 msgid "<literal>Debug::Hashes</literal>" msgstr "<literal>Debug::Hashes</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:720 +#: apt.conf.5.xml:725 msgid "" -"Output each cryptographic hash that is generated by the " -"<literal>apt</literal> libraries." +"Output each cryptographic hash that is generated by the <literal>apt</" +"literal> libraries." msgstr "" -"Jeden kryptografischen Hash ausgeben, der von den " -"<literal>apt</literal>-Bibliotheken generiert wurde." +"Jeden kryptografischen Hash ausgeben, der von den <literal>apt</literal>-" +"Bibliotheken generiert wurde." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:727 +#: apt.conf.5.xml:732 msgid "<literal>Debug::IdentCDROM</literal>" msgstr "<literal>Debug::IdentCDROM</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:730 +#: apt.conf.5.xml:735 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " "a CD-ROM." msgstr "" -"Keine Informationen von <literal>statfs</literal> einschließen, und zwar " -"die Anzahl der benutzten und freien Blöcke auf dem CD-ROM-Dateisystem, " -"wenn eine ID für eine CD-ROM generiert wird." +"Keine Informationen von <literal>statfs</literal> einschließen, und zwar die " +"Anzahl der benutzten und freien Blöcke auf dem CD-ROM-Dateisystem, wenn eine " +"ID für eine CD-ROM generiert wird." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:738 +#: apt.conf.5.xml:743 msgid "<literal>Debug::NoLocking</literal>" msgstr "<literal>Debug::NoLocking</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:741 +#: apt.conf.5.xml:746 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 "" -"Jegliches Sperren von Dateien ausschalten. Dies wird zum Beispiel " -"erlauben, dass zwei Instanzen von " -"<quote><literal>apt-get update</literal></quote> zur gleichen Zeit laufen." +"Jegliches Sperren von Dateien ausschalten. Dies wird zum Beispiel erlauben, " +"dass zwei Instanzen von <quote><literal>apt-get update</literal></quote> zur " +"gleichen Zeit laufen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:749 +#: apt.conf.5.xml:754 msgid "<literal>Debug::pkgAcquire</literal>" msgstr "<literal>Debug::pkgAcquire</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:753 +#: apt.conf.5.xml:758 msgid "Log when items are added to or removed from the global download queue." -msgstr "Protokollieren, wenn Elemente aus der globalen Warteschlange zum " +msgstr "" +"Protokollieren, wenn Elemente aus der globalen Warteschlange zum " "Herunterladen hinzugefügt oder entfernt werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:760 +#: apt.conf.5.xml:765 msgid "<literal>Debug::pkgAcquire::Auth</literal>" msgstr "<literal>Debug::pkgAcquire::Auth</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:763 +#: apt.conf.5.xml:768 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." msgstr "" -"Statusmeldungen und Fehler ausgeben, die sich auf das Prüfen von " -"Prüfsummen und kryptografischen Signaturen von heruntergeladenen Dateien " -"beziehen." +"Statusmeldungen und Fehler ausgeben, die sich auf das Prüfen von Prüfsummen " +"und kryptografischen Signaturen von heruntergeladenen Dateien beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:770 +#: apt.conf.5.xml:775 msgid "<literal>Debug::pkgAcquire::Diffs</literal>" msgstr "<literal>Debug::pkgAcquire::Diffs</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:773 +#: apt.conf.5.xml:778 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." msgstr "" -"Informationen über das Herunterladen und Anwenden von " -"Paketindexlisten-Diffs und Fehler, die die Paketindexlisten-Diffs " -"betreffen, ausgeben." +"Informationen über das Herunterladen und Anwenden von Paketindexlisten-Diffs " +"und Fehler, die die Paketindexlisten-Diffs betreffen, ausgeben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:781 +#: apt.conf.5.xml:786 msgid "<literal>Debug::pkgAcquire::RRed</literal>" msgstr "<literal>Debug::pkgAcquire::RRed</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:785 +#: apt.conf.5.xml:790 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -7420,110 +7262,109 @@ msgstr "" "werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:792 +#: apt.conf.5.xml:797 msgid "<literal>Debug::pkgAcquire::Worker</literal>" msgstr "<literal>Debug::pkgAcquire::Worker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:796 -msgid "Log all interactions with the sub-processes that actually perform downloads." +#: apt.conf.5.xml:801 +msgid "" +"Log all interactions with the sub-processes that actually perform downloads." msgstr "" -"Alle Interaktionen mit Unterprozessen protokollieren, die aktuell " -"Downloads durchführen." +"Alle Interaktionen mit Unterprozessen protokollieren, die aktuell Downloads " +"durchführen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:803 +#: apt.conf.5.xml:808 msgid "<literal>Debug::pkgAutoRemove</literal>" msgstr "<literal>Debug::pkgAutoRemove</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:807 +#: apt.conf.5.xml:812 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." msgstr "" -"Alle Ereignisse protokollieren, die sich auf den " -"automatisch-installiert-Status von Paketen und auf das Entfernen von " -"nicht benutzten Paketen beziehen." +"Alle Ereignisse protokollieren, die sich auf den automatisch-installiert-" +"Status von Paketen und auf das Entfernen von nicht benutzten Paketen " +"beziehen." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:814 +#: apt.conf.5.xml:819 msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>" msgstr "<literal>Debug::pkgDepCache::AutoInstall</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:817 +#: apt.conf.5.xml:822 msgid "" "Generate debug messages describing which packages are being automatically " -"installed to resolve dependencies. This corresponds to the initial " -"auto-install pass performed in, e.g., <literal>apt-get install</literal>, " -"and not to the full <literal>apt</literal> dependency resolver; see " -"<literal>Debug::pkgProblemResolver</literal> for that." +"installed to resolve dependencies. This corresponds to the initial auto-" +"install pass performed in, e.g., <literal>apt-get install</literal>, and not " +"to the full <literal>apt</literal> dependency resolver; see <literal>Debug::" +"pkgProblemResolver</literal> for that." msgstr "" -"Fehlersuchmeldungen generieren, die beschreiben, welche Pakete " -"automatisch installiert werden, um Abhängigkeiten aufzulösen. Dies " -"entspricht dem anfangs durchgeführten auto-install-Durchlauf, z.B. in " -"<literal>apt-get install</literal> und nicht dem vollständigen " -"<literal>apt</literal>-Abhängigkeitsauflöser. Lesen Sie dafür " -"<literal>Debug::pkgProblemResolver</literal>." +"Fehlersuchmeldungen generieren, die beschreiben, welche Pakete automatisch " +"installiert werden, um Abhängigkeiten aufzulösen. Dies entspricht dem " +"anfangs durchgeführten auto-install-Durchlauf, z.B. in <literal>apt-get " +"install</literal> und nicht dem vollständigen <literal>apt</literal>-" +"Abhängigkeitsauflöser. Lesen Sie dafür <literal>Debug::pkgProblemResolver</" +"literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:828 +#: apt.conf.5.xml:833 msgid "<literal>Debug::pkgDepCache::Marker</literal>" msgstr "<literal>Debug::pkgDepCache::Marker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:831 -msgid "" -"Generate debug messages describing which package is marked as " -"keep/install/remove while the ProblemResolver does his work. Each addition " -"or deletion may trigger additional actions; they are shown indented two " -"additional space under the original entry. The format for each line is " -"<literal>MarkKeep</literal>, <literal>MarkDelete</literal> or " -"<literal>MarkInstall</literal> followed by <literal>package-name <a.b.c " -"-> d.e.f | x.y.z> (section)</literal> where <literal>a.b.c</literal> " -"is the current version of the package, <literal>d.e.f</literal> is the " -"version considered for installation and <literal>x.y.z</literal> is a newer " -"version, but not considered for installation (because of a low pin " -"score). The later two can be omitted if there is none or if it is the same " -"version as the installed. <literal>section</literal> is the name of the " -"section the package appears in." -msgstr "" -"Generiert Fehlersuchmeldungen, die beschreiben, welches Paket als " -"keep/install/remove markiert ist, währen der ProblemResolver seine Arbeit " +#: apt.conf.5.xml:836 +msgid "" +"Generate debug messages describing which package is marked as keep/install/" +"remove while the ProblemResolver does his work. Each addition or deletion " +"may trigger additional actions; they are shown indented two additional space " +"under the original entry. The format for each line is <literal>MarkKeep</" +"literal>, <literal>MarkDelete</literal> or <literal>MarkInstall</literal> " +"followed by <literal>package-name <a.b.c -> d.e.f | x.y.z> (section)" +"</literal> where <literal>a.b.c</literal> is the current version of the " +"package, <literal>d.e.f</literal> is the version considered for installation " +"and <literal>x.y.z</literal> is a newer version, but not considered for " +"installation (because of a low pin score). The later two can be omitted if " +"there is none or if it is the same version as the installed. " +"<literal>section</literal> is the name of the section the package appears in." +msgstr "" +"Generiert Fehlersuchmeldungen, die beschreiben, welches Paket als keep/" +"install/remove markiert ist, währen der ProblemResolver seine Arbeit " "verrichtet. Jedes Hinzufügen oder Löschen kann zusätzliche Aktionen " "auslösen. Sie werden nach zwei eingerückten Leerzeichen unter dem " -"Originaleintrag angezeigt. Jede Zeile hat das Format " -"<literal>MarkKeep</literal>, <literal>MarkDelete</literal> oder " -"<literal>MarkInstall</literal> gefolgt von <literal>Paketname <a.b.c " -"-> d.e.f | x.y.z> (Abschnitt)</literal> wobei " -"<literal>a.b.c</literal> die aktuelle Version des Paketes ist, " -"<literal>d.e.f</literal> die Version ist, die zur Installation vorgesehen " -"ist und <literal>x.y.z</literal> eine neuere Version ist, die aber nicht " -"zur Installation vorgesehen ist (aufgrund einer niedrigen " -"Pinning-Bewertung). Die letzten beiden können weggelassen werden, wenn es " -"keine gibt oder wenn sie die gleiche Version haben, wie die, die " -"installiert ist. <literal>section</literal> ist der Name des Abschnitts, in " -"dem das Paket erscheint." - -#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:850 +"Originaleintrag angezeigt. Jede Zeile hat das Format <literal>MarkKeep</" +"literal>, <literal>MarkDelete</literal> oder <literal>MarkInstall</literal> " +"gefolgt von <literal>Paketname <a.b.c -> d.e.f | x.y.z> (Abschnitt)" +"</literal> wobei <literal>a.b.c</literal> die aktuelle Version des Paketes " +"ist, <literal>d.e.f</literal> die Version ist, die zur Installation " +"vorgesehen ist und <literal>x.y.z</literal> eine neuere Version ist, die " +"aber nicht zur Installation vorgesehen ist (aufgrund einer niedrigen Pinning-" +"Bewertung). Die letzten beiden können weggelassen werden, wenn es keine gibt " +"oder wenn sie die gleiche Version haben, wie die, die installiert ist. " +"<literal>section</literal> ist der Name des Abschnitts, in dem das Paket " +"erscheint." + +#. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> +#: apt.conf.5.xml:855 msgid "<literal>Debug::pkgInitConfig</literal>" msgstr "<literal>Debug::pkgInitConfig</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:853 +#: apt.conf.5.xml:858 msgid "Dump the default configuration to standard error on startup." msgstr "" "Die Vorgabekonfiguration beim Start auf der Standardfehlerausgabe ausgeben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:865 msgid "<literal>Debug::pkgDPkgPM</literal>" msgstr "<literal>Debug::pkgDPkgPM</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:863 +#: apt.conf.5.xml:868 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -7533,12 +7374,12 @@ msgstr "" "sind." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:871 +#: apt.conf.5.xml:876 msgid "<literal>Debug::pkgDPkgProgressReporting</literal>" msgstr "<literal>Debug::pkgDPkgProgressReporting</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:874 +#: apt.conf.5.xml:879 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -7547,12 +7388,12 @@ msgstr "" "alle während deren Auswertung gefundenen Fehler ausgeben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:881 +#: apt.conf.5.xml:886 msgid "<literal>Debug::pkgOrderList</literal>" msgstr "<literal>Debug::pkgOrderList</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:885 +#: apt.conf.5.xml:890 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -7562,34 +7403,35 @@ msgstr "" "soll." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:893 +#: apt.conf.5.xml:898 msgid "<literal>Debug::pkgPackageManager</literal>" msgstr "<literal>Debug::pkgPackageManager</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:897 -msgid "Output status messages tracing the steps performed when invoking &dpkg;." +#: apt.conf.5.xml:902 +msgid "" +"Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" "Statusmeldungen ausgeben, die die Schritte nachverfolgen, die beim Aufruf " "von &dpkg; ausgeführt werden." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:904 +#: apt.conf.5.xml:909 msgid "<literal>Debug::pkgPolicy</literal>" msgstr "<literal>Debug::pkgPolicy</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:908 +#: apt.conf.5.xml:913 msgid "Output the priority of each package list on startup." msgstr "Die Priorität jeder Paketliste beim Start ausgeben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:914 +#: apt.conf.5.xml:919 msgid "<literal>Debug::pkgProblemResolver</literal>" msgstr "<literal>Debug::pkgProblemResolver</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:918 +#: apt.conf.5.xml:923 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -7599,38 +7441,38 @@ msgstr "" "aufgetreten ist)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:926 +#: apt.conf.5.xml:931 msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>" msgstr "<literal>Debug::pkgProblemResolver::ShowScores</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:929 +#: apt.conf.5.xml:934 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " "described in <literal>Debug::pkgDepCache::Marker</literal>" msgstr "" -"Eine Liste aller installierten Pakete mit ihren berechneten Bewertungen, " -"die vom pkgProblemResolver benutzt werden, ausgeben. Die Beschreibung des " -"Pakets ist die gleiche, wie in " -"<literal>Debug::pkgDepCache::Marker</literal> beschrieben." +"Eine Liste aller installierten Pakete mit ihren berechneten Bewertungen, die " +"vom pkgProblemResolver benutzt werden, ausgeben. Die Beschreibung des Pakets " +"ist die gleiche, wie in <literal>Debug::pkgDepCache::Marker</literal> " +"beschrieben." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:937 +#: apt.conf.5.xml:942 msgid "<literal>Debug::sourceList</literal>" msgstr "<literal>Debug::sourceList</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:941 +#: apt.conf.5.xml:946 msgid "" -"Print information about the vendors read from " -"<filename>/etc/apt/vendors.list</filename>." +"Print information about the vendors read from <filename>/etc/apt/vendors." +"list</filename>." msgstr "" "Die Informationen über die in <filename>/etc/apt/vendors.list</filename> " "gelesenen Anbieter ausgeben." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:963 +#: apt.conf.5.xml:968 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -7639,13 +7481,13 @@ msgstr "" "möglichen Optionen zeigen." #. type: Content of: <refentry><refsect1><variablelist> -#: apt.conf.5.xml:970 +#: apt.conf.5.xml:975 msgid "&file-aptconf;" msgstr "&file-aptconf;" #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:975 +#: apt.conf.5.xml:980 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." @@ -7653,8 +7495,7 @@ msgstr "&apt-cache;, &apt-config;, &apt-preferences;." #. type: Content of: <refentry><refentryinfo> #: apt_preferences.5.xml:13 msgid "&apt-author.team; &apt-email; &apt-product; <date>04 May 2009</date>" -msgstr "" -"&apt-author.team; &apt-email; &apt-product; <date>04. Mai 2009</date>" +msgstr "&apt-author.team; &apt-email; &apt-product; <date>04. Mai 2009</date>" #. type: Content of: <refentry><refnamediv><refname> #: apt_preferences.5.xml:21 apt_preferences.5.xml:28 @@ -7691,15 +7532,15 @@ msgid "" "priorities that APT assigns to package versions by default, thus giving the " "user control over which one is selected for installation." msgstr "" -"Es könnten mehrere Versionen eines Pakets zur Installation verfügbar " -"sein, wenn die Datei &sources-list; Bezüge zu mehr als einer Distribution " -"enthält (zum Beispiel <literal>stable</literal> und " -"<literal>testing</literal>). APT weist jeder verfügbaren Version eine " -"Priorität zu. Abhängig von Abhängigkeitsbedingungen, wählt " -"<command>apt-get</command> die Version mit der höchsten Priorität zur " -"Installation aus. Die APT-Einstellungsdatei überschreibt die Prioritäten, " -"die APT den Paketversionen standardmäßig zuweist, was dem Anwender die " -"Kontrolle darüber gibt, welche zur Installation ausgewählt wird." +"Es könnten mehrere Versionen eines Pakets zur Installation verfügbar sein, " +"wenn die Datei &sources-list; Bezüge zu mehr als einer Distribution enthält " +"(zum Beispiel <literal>stable</literal> und <literal>testing</literal>). APT " +"weist jeder verfügbaren Version eine Priorität zu. Abhängig von " +"Abhängigkeitsbedingungen, wählt <command>apt-get</command> die Version mit " +"der höchsten Priorität zur Installation aus. Die APT-Einstellungsdatei " +"überschreibt die Prioritäten, die APT den Paketversionen standardmäßig " +"zuweist, was dem Anwender die Kontrolle darüber gibt, welche zur " +"Installation ausgewählt wird." #. type: Content of: <refentry><refsect1><para> #: apt_preferences.5.xml:49 @@ -7713,9 +7554,9 @@ msgstr "" "Es könnten mehrere Instanzen der gleichen Version eines Paketes verfügbar " "sein, wenn die Datei &sources-list; Bezüge zu mehr als einer Distribution " "enthält. In diesem Fall lädt <command>apt-get</command> die Instanz " -"herunter, die in der Datei &sources-list; als erstes aufgelistet ist. " -"Die APT-Einstellungsdatei beeinflusst die Wahl der Instanz nicht, nur die " -"Wahl der Version." +"herunter, die in der Datei &sources-list; als erstes aufgelistet ist. Die " +"APT-Einstellungsdatei beeinflusst die Wahl der Instanz nicht, nur die Wahl " +"der Version." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:56 @@ -7725,12 +7566,8 @@ msgstr "APTs Standardprioritätszuweisungen" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:71 #, no-wrap -msgid "" -"<command>apt-get install -t testing " -"<replaceable>some-package</replaceable></command>\n" -msgstr "" -"<command>apt-get install -t testing " -"<replaceable>irgendein_Paket</replaceable></command>\n" +msgid "<command>apt-get install -t testing <replaceable>some-package</replaceable></command>\n" +msgstr "<command>apt-get install -t testing <replaceable>irgendein_Paket</replaceable></command>\n" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:74 @@ -7748,26 +7585,23 @@ msgid "" "receives a higher priority than other distributions do by default. The " "target release can be set on the <command>apt-get</command> command line or " "in the APT configuration file <filename>/etc/apt/apt.conf</filename>. Note " -"that this has precedence over any general priority you set in the " -"<filename>/etc/apt/preferences</filename> file described later, but not over " -"specifically pinned packages. For example, <placeholder " -"type=\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" " -"id=\"1\"/>" +"that this has precedence over any general priority you set in the <filename>/" +"etc/apt/preferences</filename> file described later, but not over " +"specifically pinned packages. For example, <placeholder type=" +"\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>" msgstr "" "Wenn es keine Einstellungsdatei gibt oder es in der Datei keinen Eintrag " "gibt, der sich auf eine bestimmte Version bezieht, dann ist die dieser " "Version zugewiesene Priorität, die Priorität der Distribution zu der die " -"Version gehört. Es ist möglich eine Distribution auszuzeichnen, »das " -"Ziel-Release«, die eine höhere Priorität erhält, als dies andere " -"Distributionen standardmäßig tun. Das Ziel-Release kann auf der " -"<command>apt-get</command>-Befehlszeile oder in der " -"APT-Konfigurationsdatei <filename>/etc/apt/apt.conf</filename> gesetzt " -"werden. Beachten Sie, dass dies Vorrang vor einer allgemeinen Priorität " -"hat, die Sie, wie später beschrieben, in der Datei " -"<filename>/etc/apt/preferences</filename> setzen, aber nicht vor " -"bestimmten mit Pinning gewichteten Paketen. Beispielsweise <placeholder " -"type=\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" " -"id=\"1\"/>" +"Version gehört. Es ist möglich eine Distribution auszuzeichnen, »das Ziel-" +"Release«, die eine höhere Priorität erhält, als dies andere Distributionen " +"standardmäßig tun. Das Ziel-Release kann auf der <command>apt-get</command>-" +"Befehlszeile oder in der APT-Konfigurationsdatei <filename>/etc/apt/apt." +"conf</filename> gesetzt werden. Beachten Sie, dass dies Vorrang vor einer " +"allgemeinen Priorität hat, die Sie, wie später beschrieben, in der Datei " +"<filename>/etc/apt/preferences</filename> setzen, aber nicht vor bestimmten " +"mit Pinning gewichteten Paketen. Beispielsweise <placeholder type=" +"\"programlisting\" id=\"0\"/> <placeholder type=\"programlisting\" id=\"1\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:83 @@ -7790,8 +7624,8 @@ msgid "" "to the versions that are not installed and do not belong to the target " "release." msgstr "" -"zu den Versionen, die nicht installiert sind und die nicht zum " -"Ziel-Release gehören." +"zu den Versionen, die nicht installiert sind und die nicht zum Ziel-Release " +"gehören." #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:93 @@ -7800,7 +7634,8 @@ msgstr "Priorität 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:94 -msgid "to the versions that are not installed and belong to the target release." +msgid "" +"to the versions that are not installed and belong to the target release." msgstr "" "zu den Versionen, die nicht installiert sind und zum Ziel-Release gehören." @@ -7833,8 +7668,8 @@ msgid "" "determine which version of a package to install." msgstr "" "APT wendet dann die folgenden Regeln an, aufgelistet in der Reihenfolge " -"ihres Vorrangs, um zu bestimmen in welcher Version das Paket zu " -"installieren ist." +"ihres Vorrangs, um zu bestimmen in welcher Version das Paket zu installieren " +"ist." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:106 @@ -7845,12 +7680,12 @@ msgid "" "exceeds 1000; such high priorities can only be set in the preferences file. " "Note also that downgrading a package can be risky.)" msgstr "" -"Führen Sie niemals ein Downgrade durch, außer wenn die Priorität " -"verfügbarer Pakete 1000 übersteigt. »Downgrading« ist das Installieren " -"einer weniger aktuellen Version, an Stelle einer aktuelleren Version. " -"Beachten Sie, dass keine Standardpriorität von APT 1000 übersteigt. So " -"hohe Prioritäten können nur durch die Einstellungsdatei gesetzt werden. " -"Beachten Sie außerdem, dass Downgrading eines Paketes riskant sein kann.)" +"Führen Sie niemals ein Downgrade durch, außer wenn die Priorität verfügbarer " +"Pakete 1000 übersteigt. »Downgrading« ist das Installieren einer weniger " +"aktuellen Version, an Stelle einer aktuelleren Version. Beachten Sie, dass " +"keine Standardpriorität von APT 1000 übersteigt. So hohe Prioritäten können " +"nur durch die Einstellungsdatei gesetzt werden. Beachten Sie außerdem, dass " +"Downgrading eines Paketes riskant sein kann.)" #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:112 @@ -7870,13 +7705,13 @@ msgstr "" #: apt_preferences.5.xml:116 msgid "" "If two or more versions have the same priority and version number but either " -"the packages differ in some of their metadata or the " -"<literal>--reinstall</literal> option is given, install the uninstalled one." +"the packages differ in some of their metadata or the <literal>--reinstall</" +"literal> option is given, install the uninstalled one." msgstr "" "Wenn zwei oder mehr Versionen die gleiche Priorität und Versionsnummer " -"haben, die Pakete sich aber entweder in ihren Metadaten unterscheiden " -"oder die Option <literal>--reinstall</literal> angegeben wurde, wird die " -"nicht installierte installiert." +"haben, die Pakete sich aber entweder in ihren Metadaten unterscheiden oder " +"die Option <literal>--reinstall</literal> angegeben wurde, wird die nicht " +"installierte installiert." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:122 @@ -7884,31 +7719,29 @@ msgid "" "In a typical situation, the installed version of a package (priority 100) " "is not as recent as one of the versions available from the sources listed in " "the &sources-list; file (priority 500 or 990). Then the package will be " -"upgraded when <command>apt-get install " -"<replaceable>some-package</replaceable></command> or <command>apt-get " -"upgrade</command> is executed." +"upgraded when <command>apt-get install <replaceable>some-package</" +"replaceable></command> or <command>apt-get upgrade</command> is executed." msgstr "" -"In einer typischen Situation ist die Version eines Paketes (Priorität " -"100) nicht so aktuell, wie eine der verfügbaren Versionen, die in der " -"Quellliste der Datei &sources-list; steht (Priorität 500 oder 900). Dann " -"wird ein Upgrade des Pakets durchgeführt, wenn <command>apt-get install " -"<replaceable>irgendein_Paket</replaceable></command> oder " -"<command>apt-get upgrade</command> ausgeführt wird." +"In einer typischen Situation ist die Version eines Paketes (Priorität 100) " +"nicht so aktuell, wie eine der verfügbaren Versionen, die in der Quellliste " +"der Datei &sources-list; steht (Priorität 500 oder 900). Dann wird ein " +"Upgrade des Pakets durchgeführt, wenn <command>apt-get install " +"<replaceable>irgendein_Paket</replaceable></command> oder <command>apt-get " +"upgrade</command> ausgeführt wird." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:129 msgid "" "More rarely, the installed version of a package is <emphasis>more</emphasis> " "recent than any of the other available versions. The package will not be " -"downgraded when <command>apt-get install " -"<replaceable>some-package</replaceable></command> or <command>apt-get " -"upgrade</command> is executed." +"downgraded when <command>apt-get install <replaceable>some-package</" +"replaceable></command> or <command>apt-get upgrade</command> is executed." msgstr "" -"Seltener ist die installierte Version eines Pakets " -"<emphasis>neuer</emphasis>, als jede andere der verfügbaren Versionen. " -"Für das Paket wird kein Downgrade durchgeführt, wenn <command>apt-get " -"install <replaceable>irgendein_Paket</replaceable></command> oder " -"<command>apt-get upgrade</command> ausgeführt wird." +"Seltener ist die installierte Version eines Pakets <emphasis>neuer</" +"emphasis>, als jede andere der verfügbaren Versionen. Für das Paket wird " +"kein Downgrade durchgeführt, wenn <command>apt-get install " +"<replaceable>irgendein_Paket</replaceable></command> oder <command>apt-get " +"upgrade</command> ausgeführt wird." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:134 @@ -7923,12 +7756,12 @@ msgid "" msgstr "" "Manchmal ist die installierte Version eines Pakets aktueller, als die " "Version, die zum Ziel-Release gehört, aber nicht so aktuell, wie eine " -"Version, die zu einer anderen Distribution gehört. Für ein derartiges " -"Paket wird tatsächlich ein Upgrade durchgeführt, wenn <command>apt-get " -"install <replaceable>irgendein_Paket</replaceable></command> " -"oder <command>apt-get upgrade</command> ausgeführt wird, weil mindestens " -"<emphasis>eine</emphasis> der verfügbaren Versionen eine höhere Priorität " -"als die installierte Version hat." +"Version, die zu einer anderen Distribution gehört. Für ein derartiges Paket " +"wird tatsächlich ein Upgrade durchgeführt, wenn <command>apt-get install " +"<replaceable>irgendein_Paket</replaceable></command> oder <command>apt-get " +"upgrade</command> ausgeführt wird, weil mindestens <emphasis>eine</emphasis> " +"der verfügbaren Versionen eine höhere Priorität als die installierte Version " +"hat." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:143 @@ -7945,9 +7778,9 @@ msgid "" msgstr "" "Die APT-Einstellungsdatei erlaubt einem Systemverwalter die Zuweisung von " "Prioritäten zu steuern. Die Datei besteht aus einem oder mehreren " -"mehrzeiligen Datensätzen, die durch leere Zeilen getrennt sind. " -"Datensätze können eine von zwei Gestalten haben, eine spezielle Gestalt " -"oder eine allgemeine Gestalt." +"mehrzeiligen Datensätzen, die durch leere Zeilen getrennt sind. Datensätze " +"können eine von zwei Gestalten haben, eine spezielle Gestalt oder eine " +"allgemeine Gestalt." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:151 @@ -7988,10 +7821,9 @@ msgid "" msgstr "" "Die allgemeine Form weist allen Paketversionen in einer gegebenen " "Distribution (d.h. alle Versionen von Paketen, die in einer bestimmten " -"<filename>Release</filename>-Datei gelistet sind) oder allen " -"Paketversionen, die von einer speziellen Internet-Site kommen, die durch " -"ihren voll ausgebildeten Domänennamen identifiziert wird, eine Priorität " -"zu." +"<filename>Release</filename>-Datei gelistet sind) oder allen Paketversionen, " +"die von einer speziellen Internet-Site kommen, die durch ihren voll " +"ausgebildeten Domänennamen identifiziert wird, eine Priorität zu." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:170 @@ -8025,20 +7857,19 @@ msgid "" "a <filename>Release</filename> file is not an 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«." +"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«." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:186 msgid "" "The following record assigns a low priority to all package versions " -"belonging to any distribution whose Archive name is " -"\"<literal>unstable</literal>\"." +"belonging to any distribution whose Archive name is \"<literal>unstable</" +"literal>\"." msgstr "" "Der folgende Datensatz weist allen Paketversionen, die zu Distributionen " "gehören, deren Archivname »<literal>unstable</literal>« ist, eine niedrige " @@ -8060,12 +7891,12 @@ msgstr "" #: apt_preferences.5.xml:195 msgid "" "The following record assigns a high priority to all package versions " -"belonging to any distribution whose Codename is " -"\"<literal>squeeze</literal>\"." +"belonging to any distribution whose Codename is \"<literal>squeeze</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." +"Der folgende Datensatz weist allen Paketversionen, die zu einer Distribution " +"gehören, deren Codename »<literal>squeeze</literal>« ist, eine hohe Priorität " +"zu." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:199 @@ -8086,9 +7917,9 @@ msgid "" "belonging to any release whose Archive name is \"<literal>stable</literal>\" " "and whose release Version number is \"<literal>3.0</literal>\"." msgstr "" -"Der folgende Datensatz weist allen Paketversionen, die zu einer " -"Distribution gehören, deren Archivname »<literal>stable</literal>« und " -"deren Release-Nummer »<literal>3.0</literal>« ist, eine hohe Priorität zu." +"Der folgende Datensatz weist allen Paketversionen, die zu einer Distribution " +"gehören, deren Archivname »<literal>stable</literal>« und deren Release-" +"Nummer »<literal>3.0</literal>« ist, eine hohe Priorität zu." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><programlisting> #: apt_preferences.5.xml:209 @@ -8118,8 +7949,8 @@ msgid "" "causes a version to be installed even if this constitutes a downgrade of the " "package" msgstr "" -"veranlasst, dass eine Version installiert wird, auch wenn dies ein " -"Downgrade des Pakets durchführt" +"veranlasst, dass eine Version installiert wird, auch wenn dies ein Downgrade " +"des Pakets durchführt" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:233 @@ -8209,10 +8040,10 @@ msgid "" "the first such record determines the priority of the package version." msgstr "" "Wenn irgendwelche Datensätze mit speziellem Format zu einer verfügbaren " -"Paketversion passen, dann legt der erste dieser Datensätze die Priorität " -"der Paketversion fest. Schlägt dies fehl und es passen irgendwelche " -"Datensätze mit allgemeinem Format zu einer verfügbaren Paketversion, dann " -"legt der erste dieser Datensätze die Priorität der Paketversion fest." +"Paketversion passen, dann legt der erste dieser Datensätze die Priorität der " +"Paketversion fest. Schlägt dies fehl und es passen irgendwelche Datensätze " +"mit allgemeinem Format zu einer verfügbaren Paketversion, dann legt der " +"erste dieser Datensätze die Priorität der Paketversion fest." #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:268 @@ -8265,12 +8096,11 @@ msgid "" "<literal>perl</literal> is available and the installed version is 5.9*, then " "<literal>perl</literal> will be downgraded." msgstr "" -"Es wird die aktuellste verfügbare Version des Pakets " -"<literal>perl</literal> installiert, so lange die Versionsnummer mit " -"»<literal>5.8</literal>« anfängt. Wenn <emphasis>irgendeine</emphasis> " -"5.8*-Version von <literal>perl</literal>verfügbar ist und die installierte " -"Version 5.9* ist, dann wird von <literal>perl</literal> ein Downgrade " -"durchgeführt." +"Es wird die aktuellste verfügbare Version des Pakets <literal>perl</literal> " +"installiert, so lange die Versionsnummer mit »<literal>5.8</literal>« " +"anfängt. Wenn <emphasis>irgendeine</emphasis> 5.8*-Version von " +"<literal>perl</literal>verfügbar ist und die installierte Version 5.9* ist, " +"dann wird von <literal>perl</literal> ein Downgrade durchgeführt." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:292 @@ -8279,23 +8109,23 @@ msgid "" "available from the local system has priority over other versions, even " "versions belonging to the target release." msgstr "" -"Eine Version irgendeines anderen Pakets als <literal>perl</literal>, die " -"vom lokalen System verfügbar ist, hat eine Priorität über anderen " -"Versionen, sogar wenn diese Versionen zum Ziel-Release gehören." +"Eine Version irgendeines anderen Pakets als <literal>perl</literal>, die vom " +"lokalen System verfügbar ist, hat eine Priorität über anderen Versionen, " +"sogar wenn diese Versionen zum Ziel-Release gehören." #. type: Content of: <refentry><refsect1><refsect2><para><itemizedlist><listitem><simpara> #: apt_preferences.5.xml:296 msgid "" "A version of a package whose origin is not the local system but some other " -"site listed in &sources-list; and which belongs to an " -"<literal>unstable</literal> distribution is only installed if it is selected " -"for installation and no version of the package is already installed." +"site listed in &sources-list; and which belongs to an <literal>unstable</" +"literal> distribution is only installed if it is selected for installation " +"and no version of the package is already installed." msgstr "" -"Eine Version eines Pakets, dessen Ursprung nicht das lokale System ist, " -"aber ein anderer in &sources-list; aufgelisteter Ort und der zu einer " -"<literal>unstable</literal>-Distribution gehört. wird nur installiert, " -"falls es zur Installation ausgewählt wurde und nicht bereits eine Version " -"des Pakets installiert ist." +"Eine Version eines Pakets, dessen Ursprung nicht das lokale System ist, aber " +"ein anderer in &sources-list; aufgelisteter Ort und der zu einer " +"<literal>unstable</literal>-Distribution gehört. wird nur installiert, falls " +"es zur Installation ausgewählt wurde und nicht bereits eine Version des " +"Pakets installiert ist." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:306 @@ -8337,22 +8167,22 @@ msgstr "gibt die Versionsnummer für das genannte Paket an" #: apt_preferences.5.xml:312 msgid "" "The <filename>Packages</filename> file is normally found in the directory " -"<filename>.../dists/<replaceable>dist-name</replaceable>/<replaceable>component</replaceable>/<replaceable>arch</replaceable></filename>: " -"for example, " -"<filename>.../dists/stable/main/binary-i386/Packages</filename>. It " -"consists of a series of multi-line records, one for each package available " -"in that directory. Only two lines in each record are relevant for setting " -"APT priorities: <placeholder type=\"variablelist\" id=\"0\"/>" +"<filename>.../dists/<replaceable>dist-name</replaceable>/" +"<replaceable>component</replaceable>/<replaceable>arch</replaceable></" +"filename>: for example, <filename>.../dists/stable/main/binary-i386/" +"Packages</filename>. It consists of a series of multi-line records, one for " +"each package available in that directory. Only two lines in each record are " +"relevant for setting APT priorities: <placeholder type=\"variablelist\" id=" +"\"0\"/>" msgstr "" "Die <filename>Packages</filename>-Datei wird normalerweise im Verzeichnis " -"<filename>.../dists/<replaceable>Distributions-Name" -"</replaceable>/<replaceable>Komponente</replaceable>/<replaceable>" -"Architektur</replaceable></filename> gefunden, zum Beispiel " -"<filename>.../dists/stable/main/binary-i386/Packages</filename>. Sie " -"besteht aus einer Serie mehrzeiliger Datensätze, einem für jedes verfügbare " -"Paket in diesem Verzeichnis. In jedem Datensatz sind nur zwei Zeilen zum " -"Setzen der APT-Prioritäten relevant: " -"<placeholder type=\"variablelist\" id=\"0\"/>" +"<filename>.../dists/<replaceable>Distributions-Name</replaceable>/" +"<replaceable>Komponente</replaceable>/<replaceable>Architektur</" +"replaceable></filename> gefunden, zum Beispiel <filename>.../dists/stable/" +"main/binary-i386/Packages</filename>. Sie besteht aus einer Serie " +"mehrzeiliger Datensätze, einem für jedes verfügbare Paket in diesem " +"Verzeichnis. In jedem Datensatz sind nur zwei Zeilen zum Setzen der APT-" +"Prioritäten relevant: <placeholder type=\"variablelist\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><term> #: apt_preferences.5.xml:341 @@ -8369,12 +8199,12 @@ msgid "" "archive. Specifying this value in the APT preferences file would require " "the line:" msgstr "" -"benennt das Archiv, zu dem alle Pakete im Verzeichnisbaum gehören. Die " -"Zeile »Archive: stable« oder »Suite: stable« gibt zum Beispiel an, dass " -"alle Pakete im Verzeichnisbaum unterhalb des der " -"<filename>Release</filename>-Datei übergeordneten Verzeichnisses sich in " -"einem <literal>stable</literal>-Archiv befinden. Diesen Wert in der " -"APT-Einstellungsdatei anzugeben würde die folgende Zeile benötigen:" +"benennt das Archiv, zu dem alle Pakete im Verzeichnisbaum gehören. Die Zeile " +"»Archive: stable« oder »Suite: stable« gibt zum Beispiel an, dass alle Pakete " +"im Verzeichnisbaum unterhalb des der <filename>Release</filename>-Datei " +"übergeordneten Verzeichnisses sich in einem <literal>stable</literal>-Archiv " +"befinden. 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:352 @@ -8392,17 +8222,16 @@ msgstr "die <literal>Codename:</literal>-Zeile" 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:" +"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:" msgstr "" "benennt den Codenamen, zu dem alle Pakete im Verzeichnisbaum gehören. Die " "Zeile »Codename: squeeze« 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>squeeze</" +"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:368 @@ -8415,10 +8244,9 @@ msgstr "Pin: release n=squeeze\n" msgid "" "names the release version. For example, the packages in the tree might " "belong to Debian GNU/Linux release version 3.0. Note that there is normally " -"no version number for the <literal>testing</literal> and " -"<literal>unstable</literal> distributions because they have not been " -"released yet. Specifying this in the APT preferences file would require one " -"of the following lines." +"no version number for the <literal>testing</literal> and <literal>unstable</" +"literal> distributions because they have not been released yet. Specifying " +"this in the APT preferences file would require one of the following lines." msgstr "" "benennt die Release-Version. Die Pakete im Baum könnten zum Beispiel zur " "Debian GNU/Linux-Release-Version 3.0 gehören. Beachten Sie, dass es " @@ -8452,14 +8280,13 @@ msgid "" "\"Component: main\" specifies that all the packages in the directory tree " "are from the <literal>main</literal> component, which entails that they are " "licensed under terms listed in the Debian Free Software Guidelines. " -"Specifying this component in the APT preferences file would require the " -"line:" +"Specifying this component in the APT preferences file would require the line:" msgstr "" "benennt die Lizenzierungskomponente, die mit den Paketen im Verzeichnisbaum " -"der <filename>Release</filename>-Datei verbunden ist. Die Zeile " -"»Component: main« gibt zum Beispiel an, dass alle Pakete im Verzeichnisbaum " -"von der <literal>main</literal>-Komponente stammen, was zur Folge hat, dass " -"sie unter den Bedingungen der Debian-Richtlinien für Freie Software stehen. " +"der <filename>Release</filename>-Datei verbunden ist. Die Zeile »Component: " +"main« gibt zum Beispiel an, dass alle Pakete im Verzeichnisbaum von der " +"<literal>main</literal>-Komponente stammen, was zur Folge hat, dass sie " +"unter den Bedingungen der Debian-Richtlinien für Freie Software stehen. " "Diese Komponente in der APT-Einstellungsdatei anzugeben würde die folgende " "Zeilen benötigen:" @@ -8478,14 +8305,13 @@ msgstr "die <literal>Origin:</literal>-Zeile" #: apt_preferences.5.xml:410 msgid "" "names the originator of the packages in the directory tree of the " -"<filename>Release</filename> file. Most commonly, this is " -"<literal>Debian</literal>. Specifying this origin in the APT preferences " -"file would require the line:" +"<filename>Release</filename> file. Most commonly, this is <literal>Debian</" +"literal>. Specifying this origin in the APT preferences file would require " +"the line:" msgstr "" -"benennt den Urheber des Pakets im Verzeichnisbaum der " -"<filename>Release</filename>-Datei. Zumeist ist dies " -"<literal>Debian</literal>. Diesen Ursprung in der APT-Einstellungsdatei " -"anzugeben würde die folgende Zeile benötigen:" +"benennt den Urheber des Pakets im Verzeichnisbaum der <filename>Release</" +"filename>-Datei. Zumeist ist dies <literal>Debian</literal>. Diesen Ursprung " +"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:416 @@ -8502,14 +8328,14 @@ msgstr "die <literal>Label:</literal>-Zeile" #: apt_preferences.5.xml:423 msgid "" "names the label of the packages in the directory tree of the " -"<filename>Release</filename> file. Most commonly, this is " -"<literal>Debian</literal>. Specifying this label in the APT preferences " -"file would require the line:" +"<filename>Release</filename> file. Most commonly, this is <literal>Debian</" +"literal>. Specifying this label in the APT preferences file would require " +"the line:" msgstr "" "benennt die Beschriftung des Pakets im Verzeichnisbaum der " -"<filename>Release</filename>-Datei. Zumeist ist dies " -"<literal>Debian</literal>. Diese Beschriftung in der APT-Einstellungsdatei " -"anzugeben würde die folgende Zeile benötigen:" +"<filename>Release</filename>-Datei. Zumeist ist dies <literal>Debian</" +"literal>. Diese Beschriftung 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:429 @@ -8522,23 +8348,22 @@ msgstr "Pin: release l=Debian\n" 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\"/>" +"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\"/>" 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>. Es 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/woody/Release</filename>. Es 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:436 @@ -8547,25 +8372,24 @@ msgid "" "files retrieved from locations listed in the &sources-list; file are stored " "in the directory <filename>/var/lib/apt/lists</filename>, or in the file " "named by the variable <literal>Dir::State::Lists</literal> in the " -"<filename>apt.conf</filename> file. For example, the file " -"<filename>debian.lcs.mit.edu_debian_dists_unstable_contrib_binary-i386_Release</filename> " +"<filename>apt.conf</filename> file. For example, the file <filename>debian." +"lcs.mit.edu_debian_dists_unstable_contrib_binary-i386_Release</filename> " "contains the <filename>Release</filename> file retrieved from the site " "<literal>debian.lcs.mit.edu</literal> for <literal>binary-i386</literal> " "architecture files from the <literal>contrib</literal> component of the " "<literal>unstable</literal> distribution." msgstr "" -"Alle <filename>Packages</filename>- und " -"<filename>Release</filename>-Dateien, die von Orten heruntergeladen " -"werden, die in der Datei &sources-list; aufgelistet sind, werden im " -"Verzeichnis <filename>/var/lib/apt/lists</filename> oder in der von der " -"Variablen <literal>Dir::State::Lists</literal> in der Datei " -"<filename>apt.conf</filename> benannten Datei gespeichert. Die Datei " -"<filename>debian.lcs.mit.edu_debian_dists_unstable_contrib_binary-i386_Release</filename> " -"enthält zum Beispiel die <filename>Release</filename>-Datei, die von der " -"Site <literal>debian.lcs.mit.edu</literal> für die " -"<literal>binary-i386</literal>-Architekturdateien von der " -"<literal>contrib</literal>-Komponente der " -"<literal>unstable</literal>-Distribution heruntergeladen wurde." +"Alle <filename>Packages</filename>- und <filename>Release</filename>-" +"Dateien, die von Orten heruntergeladen werden, die in der Datei &sources-" +"list; aufgelistet sind, werden im Verzeichnis <filename>/var/lib/apt/lists</" +"filename> oder in der von der Variablen <literal>Dir::State::Lists</literal> " +"in der Datei <filename>apt.conf</filename> benannten Datei gespeichert. Die " +"Datei <filename>debian.lcs.mit.edu_debian_dists_unstable_contrib_binary-" +"i386_Release</filename> enthält zum Beispiel die <filename>Release</" +"filename>-Datei, die von der Site <literal>debian.lcs.mit.edu</literal> für " +"die <literal>binary-i386</literal>-Architekturdateien von der " +"<literal>contrib</literal>-Komponente der <literal>unstable</literal>-" +"Distribution heruntergeladen wurde." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:449 @@ -8588,14 +8412,14 @@ msgstr "" 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>." +"specified on a line beginning with <literal>Pin-Priority: release ...</" +"literal>." msgstr "" -"Die <literal>Pin-Priority:</literal>-Zeile in jedem " -"APT-Einstellungsdatensatz ist optional. Wenn diese weggelassen wird, weist " -"APT ein Priorität zu, die um 1 kleiner ist, als der letzte Wert, der in " -"einer Zeile angegeben wurde, die mit <literal>Pin-Priority: release " -"...</literal> anfängt." +"Die <literal>Pin-Priority:</literal>-Zeile in jedem APT-" +"Einstellungsdatensatz ist optional. Wenn diese weggelassen wird, weist APT " +"ein Priorität zu, die um 1 kleiner ist, als der letzte Wert, der in einer " +"Zeile angegeben wurde, die mit <literal>Pin-Priority: release ...</literal> " +"anfängt." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:464 @@ -8636,14 +8460,14 @@ msgid "" "distributions. <placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" "Die folgende APT-Einstellungsdatei wird APT veranlassen, allen " -"Paketversionen eine höhere Priorität als die Vorgabe (500) zu geben, die " -"zu einer <literal>stable</literal>-Distribution gehören und eine " -"ungeheuer niedrige Priorität Paketversionen, die zu anderen " -"<literal>Debian</literal>-Distribution gehören. <placeholder " -"type=\"programlisting\" id=\"0\"/>" +"Paketversionen eine höhere Priorität als die Vorgabe (500) zu geben, die zu " +"einer <literal>stable</literal>-Distribution gehören und eine ungeheuer " +"niedrige Priorität Paketversionen, die zu anderen <literal>Debian</literal>-" +"Distribution gehören. <placeholder type=\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> -#: apt_preferences.5.xml:489 apt_preferences.5.xml:535 apt_preferences.5.xml:593 +#: apt_preferences.5.xml:489 apt_preferences.5.xml:535 +#: apt_preferences.5.xml:593 #, no-wrap msgid "" "apt-get install <replaceable>package-name</replaceable>\n" @@ -8663,9 +8487,9 @@ msgid "" "id=\"0\"/>" msgstr "" "Mit einer geeigneten &sources-list;-Datei und der obigen Einstellungsdatei " -"wird jeder der folgenden Befehle APT veranlassen, ein Upgrade auf die " -"neuste(n) <literal>stable</literal>-Version(en) durchzuführen. " -"<placeholder type=\"programlisting\" id=\"0\"/>" +"wird jeder der folgenden Befehle APT veranlassen, ein Upgrade auf die neuste" +"(n) <literal>stable</literal>-Version(en) durchzuführen. <placeholder type=" +"\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:501 @@ -8681,11 +8505,11 @@ msgid "" "will not be upgraded again unless this command is given again. <placeholder " "type=\"programlisting\" id=\"0\"/>" msgstr "" -"Der folgende Befehl wird APT veranlassen, ein Upgrade des angegebenen " -"Pakets auf die neuste Version der <literal>testing</literal>-Distribution " +"Der folgende Befehl wird APT veranlassen, ein Upgrade des angegebenen Pakets " +"auf die neuste Version der <literal>testing</literal>-Distribution " "durchzuführen. Von dem Paket wird kein weiteres Upgrade durchgeführt, außer " -"wenn dieser Befehl wieder angegeben wird. <placeholder " -"type=\"programlisting\" id=\"0\"/>" +"wenn dieser Befehl wieder angegeben wird. <placeholder type=\"programlisting" +"\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:507 @@ -8727,15 +8551,15 @@ msgid "" "to package versions from the <literal>testing</literal> distribution, a " "lower priority to package versions from the <literal>unstable</literal> " "distribution, and a prohibitively low priority to package versions from " -"other <literal>Debian</literal> distributions. <placeholder " -"type=\"programlisting\" id=\"0\"/>" +"other <literal>Debian</literal> distributions. <placeholder type=" +"\"programlisting\" id=\"0\"/>" msgstr "" -"Die folgende APT-Einstellungsdatei wird APT veranlassen, Paketversionen " -"der <literal>testing</literal>-Distribution eine hohe Priorität, " -"Paketversionen der <literal>unstable</literal>-Distribution eine niedrigere " -"Priorität und eine ungeheuer niedrige Priorität zu Paketversionen von anderen " -"<literal>Debian</literal>-Distributionen zuzuweisen. <placeholder " -"type=\"programlisting\" id=\"0\"/>" +"Die folgende APT-Einstellungsdatei wird APT veranlassen, Paketversionen der " +"<literal>testing</literal>-Distribution eine hohe Priorität, Paketversionen " +"der <literal>unstable</literal>-Distribution eine niedrigere Priorität und " +"eine ungeheuer niedrige Priorität zu Paketversionen von anderen " +"<literal>Debian</literal>-Distributionen zuzuweisen. <placeholder type=" +"\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:530 @@ -8746,9 +8570,9 @@ msgid "" "id=\"0\"/>" msgstr "" "Mit einer geeigneten &sources-list;-Datei und der obigen Einstellungsdatei " -"wird jeder der folgenden Befehle APT veranlassen, ein Upgrade auf die " -"neuste(n) <literal>testing</literal>-Version(en) durchzuführen. " -"<placeholder type=\"programlisting\" id=\"0\"/>" +"wird jeder der folgenden Befehle APT veranlassen, ein Upgrade auf die neuste" +"(n) <literal>testing</literal>-Version(en) durchzuführen. <placeholder type=" +"\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:550 @@ -8763,18 +8587,18 @@ msgid "" "latest version from the <literal>unstable</literal> distribution. " "Thereafter, <command>apt-get upgrade</command> will upgrade the package to " "the most recent <literal>testing</literal> version if that is more recent " -"than the installed version, otherwise, to the most recent " -"<literal>unstable</literal> version if that is more recent than the " -"installed version. <placeholder type=\"programlisting\" id=\"0\"/>" +"than the installed version, otherwise, to the most recent <literal>unstable</" +"literal> version if that is more recent than the installed version. " +"<placeholder type=\"programlisting\" id=\"0\"/>" msgstr "" -"Der folgende Befehl wird APT veranlassen, ein Upgrade des angegebenen " -"Pakets auf die neuste Version der <literal>unstable</literal>-Distribution " +"Der folgende Befehl wird APT veranlassen, ein Upgrade des angegebenen Pakets " +"auf die neuste Version der <literal>unstable</literal>-Distribution " "durchzuführen. Danach wird <command>apt-get upgrade</command> ein Upgrade " "des Pakets auf die aktuellste <literal>testing</literal>-Version " "durchführen, falls diese aktueller als die installierte Version ist, " "andernfalls auf die aktuellste <literal>unstable</literal>-Version, wenn " -"diese aktueller als die installierte Version ist. " -" <placeholder type=\"programlisting\" id=\"0\"/>" +"diese aktueller als die installierte Version ist. <placeholder type=" +"\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:557 @@ -8785,10 +8609,8 @@ msgstr "Die Entwicklung eines Codename-Releases verfolgen" #: apt_preferences.5.xml:571 #, 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" +"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" @@ -8803,8 +8625,7 @@ 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 Squeeze- oder Sid-Distribution\n" "Package: *\n" "Pin: release n=squeeze\n" "Pin-Priority: 900\n" @@ -8849,13 +8670,13 @@ msgstr "" 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\"/>" +"the release codenamed with <literal>squeeze</literal>. <placeholder type=" +"\"programlisting\" id=\"0\"/>" 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\"/>" +"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\"/>" #. type: Content of: <refentry><refsect1><refsect2><para><programlisting> #: apt_preferences.5.xml:608 @@ -8874,14 +8695,14 @@ msgid "" "version if that is more recent than the installed version. <placeholder " "type=\"programlisting\" id=\"0\"/>" msgstr "" -"Der folgende Befehl wird APT veranlassen, ein Upgrade des angegebenen " -"Pakets auf die letzte Version der <literal>sid</literal>-Distribution " +"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 " "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=\"programlisting\" id=\"0\"/>" +"aktueller als die installierte Version ist. <placeholder type=" +"\"programlisting\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><variablelist> #: apt_preferences.5.xml:617 @@ -8914,8 +8735,8 @@ msgstr "" "Die Paketquellenliste wird benutzt, um Archive des Paketverteilungssystems, " "das auf dem System benutzt wird, zu finden. Momentan dokumentiert diese " "Handbuchseite nur das vom Debian-GNU/Linux-System benutzte " -"Paketierungssystem. Die Steuerungsdatei befindet sich in " -"<filename>/etc/apt/sources.list</filename>." +"Paketierungssystem. Die Steuerungsdatei befindet sich in <filename>/etc/apt/" +"sources.list</filename>." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:39 @@ -8956,12 +8777,12 @@ msgid "" "Otherwise they will be silently ignored." msgstr "" "Das Verzeichnis <filename>/etc/apt/sources.list.d</filename> stellt eine " -"Möglichkeit bereit, sources.list-Einträge in separaten Dateien " -"hinzuzufügen. Das Format ist das gleiche wie für die normale " -"<filename>sources.list</filename>-Datei. Dateinamen müssen mit " -"<filename>.list</filename> enden und können nur Buchstaben (a-z und A-Z), " -"Ziffern (0-9), Unterstriche (_), Bindestriche (-) und Punkte (.) enthalten. " -"Ansonsten werden sie stillschweigend ignoriert." +"Möglichkeit bereit, sources.list-Einträge in separaten Dateien hinzuzufügen. " +"Das Format ist das gleiche wie für die normale <filename>sources.list</" +"filename>-Datei. Dateinamen müssen mit <filename>.list</filename> enden und " +"können nur Buchstaben (a-z und A-Z), Ziffern (0-9), Unterstriche (_), " +"Bindestriche (-) und Punkte (.) enthalten. Ansonsten werden sie " +"stillschweigend ignoriert." #. type: Content of: <refentry><refsect1><title> #: sources.list.5.xml:60 @@ -8973,26 +8794,24 @@ msgstr "Die Typen deb und deb-src" 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." -msgstr "" -"Der <literal>deb</literal>-Typ beschreibt ein typisches zweistufiges " -"Debian-Archiv, <filename>Distribution/Komponente</filename>. " -"<literal>Distribution</literal> ist typischerweise entweder " -"<literal>stable</literal>, <literal>unstable</literal> oder " -"<literal>testing</literal>, während Komponente entweder " -"<literal>main</literal>, <literal>contrib</literal>, " +"<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." +msgstr "" +"Der <literal>deb</literal>-Typ beschreibt ein typisches zweistufiges Debian-" +"Archiv, <filename>Distribution/Komponente</filename>. <literal>Distribution</" +"literal> ist typischerweise entweder <literal>stable</literal>, " +"<literal>unstable</literal> oder <literal>testing</literal>, während " +"Komponente entweder <literal>main</literal>, <literal>contrib</literal>, " "<literal>non-free</literal> oder <literal>non-us</literal> ist. Der " -"<literal>deb-src</literal>-Typ beschreibt einen Quellcode einer " -"Debian-Distribution in der gleichen Form wie den " -"<literal>deb</literal>-Typ. Eine <literal>deb-src</literal>-Zeile wird " -"benötigt, um Quellindizes herunterzuladen." +"<literal>deb-src</literal>-Typ beschreibt einen Quellcode einer Debian-" +"Distribution in der gleichen Form wie den <literal>deb</literal>-Typ. Eine " +"<literal>deb-src</literal>-Zeile wird benötigt, um Quellindizes " +"herunterzuladen." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:73 @@ -9017,19 +8836,18 @@ msgid "" "<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." -msgstr "" -"Die URI für den <literal>deb</literal>-Typ muss die Basis der " -"Debian-Distribution angeben, wo APT die Informationen findet, die es " -"benötigt. <literal>Distribution</literal> kann einen genauen Pfad angeben. " -"In diesem Fall müssen die Komponenten weggelassen werden und " -"<literal>Distribution</literal> muss mit einem Schrägstrich (/) enden. Dies " -"ist nützlich, wenn nur ein bestimmter Unterabschnitt des von der URI " -"angegebenen Archivs von Interesse ist. Wenn <literal>Distribution</literal> " -"keinen genauen Pfad angibt, muss mindestens eine " -"<literal>Komponente</literal> angegeben sein." +"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." +msgstr "" +"Die URI für den <literal>deb</literal>-Typ muss die Basis der Debian-" +"Distribution angeben, wo APT die Informationen findet, die es benötigt. " +"<literal>Distribution</literal> kann einen genauen Pfad angeben. In diesem " +"Fall müssen die Komponenten weggelassen werden und <literal>Distribution</" +"literal> muss mit einem Schrägstrich (/) enden. Dies ist nützlich, wenn nur " +"ein bestimmter Unterabschnitt des von der URI angegebenen Archivs von " +"Interesse ist. Wenn <literal>Distribution</literal> keinen genauen Pfad " +"angibt, muss mindestens eine <literal>Komponente</literal> angegeben sein." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:87 @@ -9041,13 +8859,13 @@ msgid "" "of interest when specifying an exact path, <literal>APT</literal> will " "automatically generate a URI with the current architecture otherwise." msgstr "" -"<literal> distribution</literal> könnte außerdem eine Variable, " -"<literal>$(ARCH)</literal>, enthalten, die zur Debian-Architektur (i386, " -"m68k, powerpc, ...) expandiert wird, die auf dem System benutzt wird. Dies " -"erlaubt es, architekturabhängige <filename>sources.list</filename>-Dateien " -"zu benutzen. Im Allgemeinen ist dies nur von Interesse, wenn ein genauer " -"Pfad angegeben wird, andernfalls wird <literal>APT</literal> automatisch " -"eine URI mit der aktuellen Architektur generieren." +"<literal> distribution</literal> könnte außerdem eine Variable, <literal>" +"$(ARCH)</literal>, enthalten, die zur Debian-Architektur (i386, m68k, " +"powerpc, ...) expandiert wird, die auf dem System benutzt wird. Dies erlaubt " +"es, architekturabhängige <filename>sources.list</filename>-Dateien zu " +"benutzen. Im Allgemeinen ist dies nur von Interesse, wenn ein genauer Pfad " +"angegeben wird, andernfalls wird <literal>APT</literal> automatisch eine URI " +"mit der aktuellen Architektur generieren." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:95 @@ -9070,11 +8888,11 @@ msgstr "" "Zusammenstellung generiert hat und es wird mehrere Bezüge zum gleichen " "Internet-Host zusammenfassen, zum Beispiel zu einer einzigen Verbindung, so " "dass es nicht ineffizient FTP-Verbindungen herstellt, sie schließt, sonst " -"etwas tut und dann erneut eine Verbindung zum gleichen Host herstellt. " -"Diese Funktion ist nützlich für den Zugriff auf ausgelastete FTP-Sites " -"mit Begrenzungen der Anzahl gleichzeitiger anonymer Anwender. APT " -"parallelisiert außerdem Verbindungen zu verschiedenen Hosts, um effektiver " -"mit Orten niedriger Bandbreite hauszuhalten." +"etwas tut und dann erneut eine Verbindung zum gleichen Host herstellt. Diese " +"Funktion ist nützlich für den Zugriff auf ausgelastete FTP-Sites mit " +"Begrenzungen der Anzahl gleichzeitiger anonymer Anwender. APT parallelisiert " +"außerdem Verbindungen zu verschiedenen Hosts, um effektiver mit Orten " +"niedriger Bandbreite hauszuhalten." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:107 @@ -9085,10 +8903,10 @@ msgid "" "followed by distant Internet hosts, for example)." msgstr "" "Es ist wichtig, die Quellen in der Reihenfolge ihrer Wichtigkeit " -"aufzulisten, die bevorzugte Quelle zuerst. Typischerweise resultiert dies " -"in einer Sortierung nach Geschwindigkeit, vom schnellsten zum langsamsten " -"(CD-ROM, gefolgt von Rechnern im lokalen Netzwerk, gefolgt von " -"Internet-Rechnern, zum Beispiel)." +"aufzulisten, die bevorzugte Quelle zuerst. Typischerweise resultiert dies in " +"einer Sortierung nach Geschwindigkeit, vom schnellsten zum langsamsten (CD-" +"ROM, gefolgt von Rechnern im lokalen Netzwerk, gefolgt von Internet-" +"Rechnern, zum Beispiel)." #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:112 @@ -9131,9 +8949,8 @@ msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:134 msgid "" -"The cdrom scheme allows APT to use a local CDROM drive with media " -"swapping. Use the &apt-cdrom; program to create cdrom entries in the source " -"list." +"The cdrom scheme allows APT to use a local CDROM drive with media swapping. " +"Use the &apt-cdrom; program to create cdrom entries in the source list." msgstr "" "Das cdrom-Schema erlaubt APT ein lokales CD-ROM-Laufwerk mit Medienwechsel " "zu benutzen. Benutzen Sie das Programm &apt-cdrom;, um CD-ROM-Einträge in " @@ -9143,39 +8960,38 @@ msgstr "" #: sources.list.5.xml:141 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." +"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." msgstr "" "Das http-Schema gibt einen HTTP-Server für das Archiv an. Wenn eine " -"Umgebungsvariable <envar>http_proxy</envar> mit dem Format " -"http://Server:Port/ gesetzt ist, wird der in <envar>http_proxy</envar> " -"angegebene Proxy-Server benutzt. Anwender eines HTTP/1.1-authentifizierten " -"Proxys können eine Zeichenkette mit dem Format " -"http://Anwender:Passwort@Server:Port/ benutzt. Beachten Sie, dass dies eine " -"unsichere Authentifizierungsmethode ist." +"Umgebungsvariable <envar>http_proxy</envar> mit dem Format http://Server:" +"Port/ gesetzt ist, wird der in <envar>http_proxy</envar> angegebene Proxy-" +"Server benutzt. Anwender eines HTTP/1.1-authentifizierten Proxys können eine " +"Zeichenkette mit dem Format http://Anwender:Passwort@Server:Port/ benutzt. " +"Beachten Sie, dass dies eine unsichere Authentifizierungsmethode ist." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #: sources.list.5.xml:152 msgid "" "The ftp scheme specifies an FTP server for the archive. APT's FTP behavior " -"is highly configurable; for more information see the &apt-conf; manual " -"page. Please note that a ftp proxy can be specified by using the " -"<envar>ftp_proxy</envar> environment variable. It is possible to specify a " -"http proxy (http proxy servers often understand ftp urls) using this method " -"and ONLY this method. ftp proxies using http specified in the configuration " -"file will be ignored." +"is highly configurable; for more information see the &apt-conf; manual page. " +"Please note that a ftp proxy can be specified by using the <envar>ftp_proxy</" +"envar> environment variable. It is possible to specify a http proxy (http " +"proxy servers often understand ftp urls) using this method and ONLY this " +"method. ftp proxies using http specified in the configuration file will be " +"ignored." msgstr "" "Das ftp-Schema gibt einen FTP-Server für das Archiv an. Das FTP-Verhalten " "von APT ist in hohem Maße konfigurierbar. Um weitere Informationen zu " "erhalten, lesen Sie die &apt-conf;-Handbuchseite. Bitte beachten Sie, dass " -"ein FTP-Proxy durch Benutzung der " -"<envar>ftp_proxy</envar>-Umgebungsvariablen angegeben werden kann. Es ist " -"mit dieser Methode und NUR dieser Methode möglich, einen HTTP-Proxy " -"anzugeben (HTTP-Proxy-Server verstehen oft auch FTP-URLs). FTP-Proxys, die " -"gemäß Angabe in der Konfigurationsdatei HTTP benutzen, werden ignoriert." +"ein FTP-Proxy durch Benutzung der <envar>ftp_proxy</envar>-" +"Umgebungsvariablen angegeben werden kann. Es ist mit dieser Methode und NUR " +"dieser Methode möglich, einen HTTP-Proxy anzugeben (HTTP-Proxy-Server " +"verstehen oft auch FTP-URLs). FTP-Proxys, die gemäß Angabe in der " +"Konfigurationsdatei HTTP benutzen, werden ignoriert." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: sources.list.5.xml:161 @@ -9191,8 +9007,8 @@ msgid "" msgstr "" "Das copy-Schema ist identisch mit dem file-Schema, außer dass Pakete in das " "Zwischenspeicherverzeichnis kopiert werden, anstatt direkt von ihrem " -"Herkunftsort benutzt zu werden. Dies ist für Leute nützlich, die eine " -"ZIP-Platte benutzen, um Dateien mit APT umherzukopieren." +"Herkunftsort benutzt zu werden. Dies ist für Leute nützlich, die eine ZIP-" +"Platte benutzen, um Dateien mit APT umherzukopieren." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> #: sources.list.5.xml:168 @@ -9226,8 +9042,8 @@ msgid "" "The currently recognized URI types are cdrom, file, http, ftp, copy, ssh, " "rsh. <placeholder type=\"variablelist\" id=\"0\"/>" msgstr "" -"Die aktuell erkannten URI-Typen sind cdrom, file, http, ftp, copy, ssh, " -"rsh. <placeholder type=\"variablelist\" id=\"0\"/>" +"Die aktuell erkannten URI-Typen sind cdrom, file, http, ftp, copy, ssh, rsh. " +"<placeholder type=\"variablelist\" id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:182 @@ -9235,8 +9051,8 @@ msgid "" "Uses the archive stored locally (or NFS mounted) at /home/jason/debian for " "stable/main, stable/contrib, and stable/non-free." msgstr "" -"Benutzt die lokal gespeicherten (oder per NFS eingehängten) Archive in " -"/home/jason/debian für stable/main, stable/contrib und stable/non-free." +"Benutzt die lokal gespeicherten (oder per NFS eingehängten) Archive in /home/" +"jason/debian für stable/main, stable/contrib und stable/non-free." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:184 @@ -9288,9 +9104,8 @@ msgid "" "Uses FTP to access the archive at ftp.debian.org, under the debian " "directory, and uses only the stable/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." +"Benutzt FTP, um auf das Archiv auf archive.debian.org unter dem debian-" +"Verzeichnis zuzugreifen und nur den stable/contrib-Bereich zu benutzen." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:198 @@ -9303,15 +9118,14 @@ msgstr "deb ftp://ftp.debian.org/debian stable contrib" 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." +"well as the one in the previous example in <filename>sources.list</" +"filename>. a single FTP session will be used for both resource lines." msgstr "" -"Benutzt FTP, um auf das Archiv auf ftp.debian.org unter dem " -"debian-Verzeichnis zuzugreifen und nur den unstable/contrib-Bereich zu " -"benutzen. Falls diese Zeile zusammen mit der aus dem vorherigen Beispiel in " -"der Datei <filename>sources.list</filename> auftaucht, wird eine einzelne " -"FTP-Sitzung für beide Quellzeilen benutzt." +"Benutzt FTP, um auf das Archiv auf ftp.debian.org unter dem debian-" +"Verzeichnis zuzugreifen und nur den unstable/contrib-Bereich zu benutzen. " +"Falls diese Zeile zusammen mit der aus dem vorherigen Beispiel in der Datei " +"<filename>sources.list</filename> auftaucht, wird eine einzelne FTP-Sitzung " +"für beide Quellzeilen benutzt." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:204 @@ -9325,18 +9139,14 @@ msgid "" "Uses HTTP to access the archive at nonus.debian.org, under the debian-non-US " "directory." msgstr "" -"Benutzt HTTP, um auf das Archiv auf nonus.debian.org unter dem " -"debian-non-US-Verzeichnis zuzugreifen." +"Benutzt HTTP, um auf das Archiv auf nonus.debian.org unter dem debian-non-US-" +"Verzeichnis zuzugreifen." #. type: Content of: <refentry><refsect1><literallayout> #: sources.list.5.xml:208 #, no-wrap -msgid "" -"deb http://nonus.debian.org/debian-non-US stable/non-US main contrib " -"non-free" -msgstr "" -"deb http://nonus.debian.org/debian-non-US stable/non-US main contrib " -"non-free" +msgid "deb http://nonus.debian.org/debian-non-US stable/non-US main contrib non-free" +msgstr "deb http://nonus.debian.org/debian-non-US stable/non-US main contrib non-free" #. type: Content of: <refentry><refsect1><para><literallayout> #: sources.list.5.xml:217 @@ -9348,21 +9158,20 @@ msgstr "deb http://ftp.de.debian.org/debian-non-US unstable/binary-$(ARCH)/" #: sources.list.5.xml:210 msgid "" "Uses HTTP to access the archive at nonus.debian.org, under the debian-non-US " -"directory, and uses only files found under " -"<filename>unstable/binary-i386</filename> on i386 machines, " -"<filename>unstable/binary-m68k</filename> on m68k, and so forth for other " -"supported architectures. [Note this example only illustrates how to use the " -"substitution variable; non-us is no longer structured like this] " -"<placeholder type=\"literallayout\" id=\"0\"/>" -msgstr "" -"Benutzt HTTP, um auf das Archiv auf nonus.debian.org unter dem " -"debian-non-US-Verzeichnis zuzugreifen und benutzt nur Dateien, die unter " +"directory, and uses only files found under <filename>unstable/binary-i386</" +"filename> on i386 machines, <filename>unstable/binary-m68k</filename> on " +"m68k, and so forth for other supported architectures. [Note this example " +"only illustrates how to use the substitution variable; non-us is no longer " +"structured like this] <placeholder type=\"literallayout\" id=\"0\"/>" +msgstr "" +"Benutzt HTTP, um auf das Archiv auf nonus.debian.org unter dem debian-non-US-" +"Verzeichnis zuzugreifen und benutzt nur Dateien, die unter " "<filename>unstable/binary-i386</filename> auf i386-Maschinen, " "<filename>unstable/binary-m68k</filename> auf m68k und so weiter für andere " "unterstützte Architekturen, gefunden werden. [Beachten Sie, dass dieses " "Beispiel nur anschaulich macht, wie die Platzhaltervariable benutzt wird. " -"non-us ist nicht länger so strukturiert] <placeholder " -"type=\"literallayout\" id=\"0\"/>" +"non-us ist nicht länger so strukturiert] <placeholder type=\"literallayout\" " +"id=\"0\"/>" #. type: Content of: <refentry><refsect1><para> #: sources.list.5.xml:222 diff --git a/doc/po/fr.po b/doc/po/fr.po index b95576e34..7c3ea85d4 100644 --- a/doc/po/fr.po +++ b/doc/po/fr.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"POT-Creation-Date: 2009-09-26 11:35+0300\n" +"POT-Creation-Date: 2009-12-01 19:13+0100\n" "PO-Revision-Date: 2009-09-26 19:25+0200\n" "Last-Translator: Christian Perrier <bubulle@debian.org>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" @@ -1023,8 +1023,8 @@ msgstr "" "\">\n" #. type: Plain text -#: apt.ent:350, no-wrap -#| msgid "Storage area for state information for each package resource specified in &sources-list; Configuration Item: <literal>Dir::State::Lists</literal>." +#: apt.ent:350 +#, no-wrap msgid "" "<!ENTITY file-statelists \"\n" " <varlistentry><term><filename>&statedir;/lists/</filename></term>\n" @@ -1040,8 +1040,8 @@ msgstr "" " </varlistentry>\n" #. type: Plain text -#: apt.ent:355, no-wrap -#| msgid "Storage area for state information in transit. Configuration Item: <literal>Dir::State::Lists</literal> (implicit partial)." +#: apt.ent:355 +#, no-wrap msgid "" " <varlistentry><term><filename>&statedir;/lists/partial/</filename></term>\n" " <listitem><para>Storage area for state information in transit.\n" @@ -1055,7 +1055,7 @@ msgstr "" " </varlistentry>\n" "\">\n" -#. The last update date +#. The last update date #. type: Content of: <refentry><refentryinfo> #: apt-cache.8.xml:13 apt-config.8.xml:13 apt-extracttemplates.1.xml:13 #: apt-ftparchive.1.xml:13 apt-sortpkgs.1.xml:13 sources.list.5.xml:13 @@ -1538,12 +1538,6 @@ msgstr "pkgnames <replaceable>[ préfixe ]</replaceable>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:229 -#| 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 " @@ -1551,19 +1545,23 @@ msgid "" "extremely quickly. This command is best used with the <option>--generate</" "option> option." msgstr "" -"Cette commande affiche le nom de chaque paquet connu par APT. Un préfixe pour " -"filtrer la liste des noms peut être donné en paramètre. La sortie est " +"Cette commande affiche le nom de chaque paquet connu par APT. Un préfixe " +"pour filtrer la liste des noms peut être donné en paramètre. La sortie est " "adaptée à une utilisation au sein d'une fonction complète de shell ; elle " "est produite très rapidement. On utilise au mieux cette commande avec " "l'option <option>--generate</option>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:234 +#, fuzzy msgid "" -"Note that a package which APT knows of is not nessasarily available to " +"Note that a package which APT knows of is not necessarily available to " "download, installable or installed, e.g. virtual packages are also listed in " "the generated list." -msgstr "Veuillez noter qu'un paquet connu par APT n'est pas forcément disponible, installable ou installé. Par exemple, les paquets virtuels sont également affichés dans la liste." +msgstr "" +"Veuillez noter qu'un paquet connu par APT n'est pas forcément disponible, " +"installable ou installé. Par exemple, les paquets virtuels sont également " +"affichés dans la liste." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:239 @@ -1675,7 +1673,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:281 apt-config.8.xml:93 apt-extracttemplates.1.xml:56 #: apt-ftparchive.1.xml:492 apt-get.8.xml:319 apt-mark.8.xml:89 -#: apt-sortpkgs.1.xml:54 apt.conf.5.xml:436 apt.conf.5.xml:458 +#: apt-sortpkgs.1.xml:54 apt.conf.5.xml:441 apt.conf.5.xml:463 msgid "options" msgstr "options" @@ -1921,7 +1919,7 @@ msgstr "&apt-commonoptions;" #. type: Content of: <refentry><refsect1><title> #: apt-cache.8.xml:361 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 -#: apt.conf.5.xml:968 apt_preferences.5.xml:615 +#: apt.conf.5.xml:973 apt_preferences.5.xml:615 msgid "Files" msgstr "Fichiers" @@ -1934,7 +1932,7 @@ msgstr "&file-sourceslist; &file-statelists;" #: apt-cache.8.xml:368 apt-cdrom.8.xml:155 apt-config.8.xml:103 #: apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569 #: apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181 -#: apt-sortpkgs.1.xml:69 apt.conf.5.xml:974 apt_preferences.5.xml:622 +#: apt-sortpkgs.1.xml:69 apt.conf.5.xml:979 apt_preferences.5.xml:622 #: sources.list.5.xml:221 msgid "See Also" msgstr "Voir aussi" @@ -2446,25 +2444,6 @@ msgstr "Outil de création de fichiers d'index" #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-ftparchive.1.xml:36 -#| 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> " @@ -2487,10 +2466,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>option de configuration</replaceable>=<replaceable>chaîne</replaceable></" -"option></arg> <arg><option>-c=<replaceable>fichier</replaceable></option></" -"arg> <group choice=\"req\"> <arg>packages<arg choice=\"plain\" rep=\"repeat" -"\"><replaceable>chemin</replaceable></arg><arg><replaceable>override</" +"arg> <arg><option>-o <replaceable>option de configuration</" +"replaceable>=<replaceable>chaîne</replaceable></option></arg> <arg><option>-" +"c=<replaceable>fichier</replaceable></option></arg> <group choice=\"req\"> " +"<arg>packages<arg choice=\"plain\" rep=\"repeat\"><replaceable>chemin</" +"replaceable></arg><arg><replaceable>override</" "replaceable><arg><replaceable>préfixe-de-chemin</replaceable></arg></arg></" "arg> <arg>sources<arg choice=\"plain\" rep=\"repeat\"><replaceable>chemin</" "replaceable></arg><arg><replaceable>override</" @@ -2566,7 +2546,8 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-ftparchive.1.xml:82 apt-ftparchive.1.xml:106 -msgid "The option <option>--db</option> can be used to specify a binary caching DB." +msgid "" +"The option <option>--db</option> can be used to specify a binary caching DB." msgstr "" "On peut se servir de l'option <option>--db</option> pour demander un cache " "binaire." @@ -2721,8 +2702,10 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt-ftparchive.1.xml:155 -msgid "The generate configuration has 4 separate sections, each described below." -msgstr "Ce fichier de configuration possède quatre sections, décrites ci-dessous." +msgid "" +"The generate configuration has 4 separate sections, each described below." +msgstr "" +"Ce fichier de configuration possède quatre sections, décrites ci-dessous." #. type: Content of: <refentry><refsect1><refsect2><title> #: apt-ftparchive.1.xml:157 @@ -3536,7 +3519,7 @@ msgstr "" "configuration : <literal>APT::FTPArchive::ReadOnlyDB</literal>." #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:552 apt.conf.5.xml:962 apt_preferences.5.xml:462 +#: apt-ftparchive.1.xml:552 apt.conf.5.xml:967 apt_preferences.5.xml:462 #: sources.list.5.xml:181 msgid "Examples" msgstr "Exemples" @@ -3565,7 +3548,7 @@ msgstr "" "<command>apt-ftparchive</command> retourne zéro si tout se passe bien, le " "nombre 100 en cas d'erreur." -#. The last update date +#. The last update date #. type: Content of: <refentry><refentryinfo> #: apt-get.8.xml:13 msgid "" @@ -3589,37 +3572,6 @@ msgstr "" #. type: Content of: <refentry><refsynopsisdiv><cmdsynopsis> #: apt-get.8.xml:36 -#| 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> " @@ -3962,32 +3914,23 @@ msgstr "source" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:251 -#| 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." +#, 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 while respect the " "default release, set with the option <literal>APT::Default-Release</" -"literal>, the <option>-t</option> option or per package with with the " +"literal>, the <option>-t</option> option or per package with the " "<literal>pkg/release</literal> syntax, if possible." msgstr "" "Avec la commande <literal>source</literal>, <command>apt-get</command> " "récupère des paquets sources. APT examine les paquets disponibles pour " "choisir le paquet source à récupérer. Il trouve ensuite et récupère dans le " -"répertoire courant leur version la plus récente par rapport à la version cible par défaut établie avec l'option <literal>APT::Default-Release</" -"literal>, l'option <option>-t</option> ou par paquet avec la syntaxe <literal>paquet/version</literal>, si possible." +"répertoire courant leur version la plus récente par rapport à la version " +"cible par défaut établie avec l'option <literal>APT::Default-Release</" +"literal>, l'option <option>-t</option> ou par paquet avec la syntaxe " +"<literal>paquet/version</literal>, si possible." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:259 @@ -4286,14 +4229,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:386 #, fuzzy -#| msgid "" -#| "Simulation run as user will deactivate locking (<literal>Debug::" -#| "NoLocking</literal>) automatical. Also a notice will be displayed " -#| "indicating that this is only a simulation, if the option <literal>APT::" -#| "Get::Show-User-Simulation-Note</literal> is set (Default: true) Neigther " -#| "NoLocking nor the notice will be triggered if run as root (root should " -#| "know what he is doing without further warnings by <literal>apt-get</" -#| "literal>)." msgid "" "Simulation run as user will deactivate locking (<literal>Debug::NoLocking</" "literal>) automatic. Also a notice will be displayed indicating that this " @@ -4920,7 +4855,8 @@ msgstr "<filename>/etc/apt/trusted.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:141 msgid "Keyring of local trusted keys, new keys will be added here." -msgstr "Trousseau de clés locales fiables : les nouvelles clés y seront ajoutées." +msgstr "" +"Trousseau de clés locales fiables : les nouvelles clés y seront ajoutées." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:144 @@ -4944,8 +4880,10 @@ msgstr "Trousseau des clés fiables de l'archive Debian." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-key.8.xml:152 -msgid "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" -msgstr "<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" +msgid "" +"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" +msgstr "" +"<filename>/usr/share/keyrings/debian-archive-removed-keys.gpg</filename>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-key.8.xml:153 @@ -4957,13 +4895,10 @@ msgstr "Trousseau des clés fiables supprimées de l'archive Debian." msgid "&apt-get;, &apt-secure;" msgstr "&apt-get;, &apt-secure;" -#. The last update date +#. 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>" @@ -4984,11 +4919,6 @@ msgstr "marquer/démarquer un paquet comme ayant été installé automatiquement #. 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" @@ -5014,12 +4944,6 @@ msgstr "" #. 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 " @@ -5072,10 +4996,6 @@ msgstr "" #. 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 manually installed " "packages with each package on a new line." @@ -5087,14 +5007,13 @@ msgstr "" #. 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>" +msgid "" +"<option>-f=<filename><replaceable>FILENAME</replaceable></filename></option>" msgstr "<option>-f=<filename>FICHIER</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>" @@ -5103,11 +5022,6 @@ msgstr "<option>--file=<filename>FICHIER</filename></option>" #. 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 " @@ -5152,7 +5066,6 @@ msgstr "Afficher la version du programme." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-mark.8.xml:124 #, fuzzy -#| msgid "<filename>/etc/apt/preferences</filename>" msgid "<filename>/var/lib/apt/extended_states</filename>" msgstr "<filename>/etc/apt/preferences</filename>" @@ -5167,7 +5080,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt-mark.8.xml:134 #, fuzzy -#| msgid "&apt-cache; &apt-conf;" msgid "&apt-get;,&aptitude;,&apt-conf;" msgstr "&apt-cache; &apt-conf;" @@ -5556,15 +5468,10 @@ msgstr "" "<command>apt-sortpkgs</command> retourne zéro si tout se passe bien ou 100 " "en cas d'erreur." -#. The last update date +#. 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 " @@ -5633,14 +5540,19 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:56 +#, 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:" +"semicolon and the quotes are required. The value must be on one line, and " +"there is no kind of string concatenation. It must not include inside " +"quotes. The behavior of the backslash \"\\\" and escaped characters inside " +"a value is undefined and it should not be used. An option name may include " +"alphanumerical characters and the \"/-:._+\" characters. A new scope can be " +"opened with curly braces, like:" msgstr "" "Syntaxiquement, le langage de configuration est conçu sur le même modèle que " "les langages utilisés par des outils ISC tels que bind et dhcp. Une ligne " @@ -5653,7 +5565,7 @@ msgstr "" "comme suit :" #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:66 +#: apt.conf.5.xml:70 #, no-wrap msgid "" "APT {\n" @@ -5671,7 +5583,7 @@ msgstr "" "};\n" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:74 +#: apt.conf.5.xml:78 msgid "" "with newlines placed to make it more readable. Lists can be created by " "opening a scope and including a single string enclosed in quotes followed by " @@ -5682,13 +5594,13 @@ msgstr "" "guillemets suivie d'un point virgule pour chaque élément de la liste." #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:79 +#: apt.conf.5.xml:83 #, no-wrap msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" msgstr "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:82 +#: apt.conf.5.xml:86 msgid "" "In general the sample configuration file in <filename>&docdir;examples/apt." "conf</filename> &configureindex; is a good guide for how it should look." @@ -5698,7 +5610,7 @@ msgstr "" "configuration." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:86 +#: apt.conf.5.xml:90 msgid "" "The names of the configuration items are not case-sensitive. So in the " "previous example you could use <literal>dpkg::pre-install-pkgs</literal>." @@ -5708,7 +5620,7 @@ msgstr "" "<literal>dpkg::pre-install-pkgs</literal>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:89 +#: apt.conf.5.xml:93 msgid "" "Names for the configuration items are optional if a list is defined as it " "can be see in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. " @@ -5718,17 +5630,11 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:94 +#: apt.conf.5.xml:98 #, 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> and <literal>#clear</" +msgid "" +"Two specials are allowed, <literal>#include</literal> (which is deprecated " +"and not supported by alternative implementations) 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. " @@ -5743,7 +5649,7 @@ msgstr "" "ses descendants sont supprimés." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:101 +#: apt.conf.5.xml:106 msgid "" "The #clear command is the only way to delete a list or a complete scope. " "Reopening a scope or the ::-style described below will <emphasis>not</" @@ -5753,14 +5659,8 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:106 +#: apt.conf.5.xml:111 #, 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 " @@ -5777,7 +5677,7 @@ msgstr "" "liste." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:113 +#: apt.conf.5.xml:118 msgid "" "Note that you can use :: only for appending one item per line to a list and " "that you should not use it in combination with the scope syntax. (The scope " @@ -5794,12 +5694,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:125 +#: apt.conf.5.xml:130 msgid "The APT Group" msgstr "Le groupe APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:126 +#: apt.conf.5.xml:131 msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." @@ -5808,12 +5708,12 @@ msgstr "" "également des options communes à tous les outils." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:130 +#: apt.conf.5.xml:135 msgid "Architecture" msgstr "Architecture" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:131 +#: apt.conf.5.xml:136 msgid "" "System Architecture; sets the architecture to use when fetching files and " "parsing package lists. The internal default is the architecture apt was " @@ -5824,12 +5724,12 @@ msgstr "" "valeur interne par défaut est l'architecture pour laquelle APT a été compilé." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:136 +#: apt.conf.5.xml:141 msgid "Default-Release" msgstr "Default-Release" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:137 +#: apt.conf.5.xml:142 msgid "" "Default release to install packages from if more than one version available. " "Contains release name, codename or release version. Examples: 'stable', " @@ -5842,12 +5742,12 @@ msgstr "" "« 4.0 », « 5.0* ». Voir aussi &apt-preferences;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:141 +#: apt.conf.5.xml:146 msgid "Ignore-Hold" msgstr "Ignore-Hold" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:142 +#: apt.conf.5.xml:147 msgid "" "Ignore Held packages; This global option causes the problem resolver to " "ignore held packages in its decision making." @@ -5857,12 +5757,12 @@ msgstr "" "décision." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:146 +#: apt.conf.5.xml:151 msgid "Clean-Installed" msgstr "Clean-Installed" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:147 +#: apt.conf.5.xml:152 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -5876,12 +5776,12 @@ msgstr "" "les réinstaller." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:153 +#: apt.conf.5.xml:158 msgid "Immediate-Configure" msgstr "Immediate-Configure" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:154 +#: apt.conf.5.xml:159 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 " @@ -5897,12 +5797,12 @@ msgstr "" "vos risques et périls." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:161 +#: apt.conf.5.xml:166 msgid "Force-LoopBreak" msgstr "Force-LoopBreak" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:162 +#: apt.conf.5.xml:167 msgid "" "Never Enable this option unless you -really- know what you are doing. It " "permits APT to temporarily remove an essential package to break a Conflicts/" @@ -5920,12 +5820,12 @@ msgstr "" "ces paquets dépendent." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:170 +#: apt.conf.5.xml:175 msgid "Cache-Limit" msgstr "Cache-Limit" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:171 +#: apt.conf.5.xml:176 msgid "" "APT uses a fixed size memory mapped cache file to store the 'available' " "information. This sets the size of that cache (in bytes)." @@ -5935,24 +5835,24 @@ msgstr "" "mémoire allouée pour le chargement de ce cache." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:175 +#: apt.conf.5.xml:180 msgid "Build-Essential" msgstr "Build-Essential" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:176 +#: apt.conf.5.xml:181 msgid "Defines which package(s) are considered essential build dependencies." msgstr "" "Cette option définit les paquets qui sont considérés comme faisant partie " "des dépendances essentielles pour la construction de paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:179 +#: apt.conf.5.xml:184 msgid "Get" msgstr "Get" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:180 +#: apt.conf.5.xml:185 msgid "" "The Get subsection controls the &apt-get; tool, please see its documentation " "for more information about the options here." @@ -5962,12 +5862,12 @@ msgstr "" "question." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:184 +#: apt.conf.5.xml:189 msgid "Cache" msgstr "Cache" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:185 +#: apt.conf.5.xml:190 msgid "" "The Cache subsection controls the &apt-cache; tool, please see its " "documentation for more information about the options here." @@ -5977,12 +5877,12 @@ msgstr "" "options en question." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:189 +#: apt.conf.5.xml:194 msgid "CDROM" msgstr "CDROM" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:190 +#: apt.conf.5.xml:195 msgid "" "The CDROM subsection controls the &apt-cdrom; tool, please see its " "documentation for more information about the options here." @@ -5992,17 +5892,17 @@ msgstr "" "options en question." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:196 +#: apt.conf.5.xml:201 msgid "The Acquire Group" msgstr "Le groupe Acquire" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:201 +#: apt.conf.5.xml:206 msgid "PDiffs" msgstr "PDiffs" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:202 +#: apt.conf.5.xml:207 msgid "" "Try to download deltas called <literal>PDiffs</literal> for Packages or " "Sources files instead of downloading whole ones. True by default." @@ -6012,12 +5912,12 @@ msgstr "" "télécharger entièrement. Par défaut à « true »." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:207 +#: apt.conf.5.xml:212 msgid "Queue-Mode" msgstr "Queue-Mode" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:208 +#: apt.conf.5.xml:213 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -6033,12 +5933,12 @@ msgstr "" "initiée." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:215 +#: apt.conf.5.xml:220 msgid "Retries" msgstr "Retries" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:216 +#: apt.conf.5.xml:221 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." @@ -6048,12 +5948,12 @@ msgstr "" "échoué." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:220 +#: apt.conf.5.xml:225 msgid "Source-Symlinks" msgstr "Source-Symlinks" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:221 +#: apt.conf.5.xml:226 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." @@ -6063,20 +5963,13 @@ msgstr "" "archives de sources au lieu de les copier. Par défaut à « true »." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:225 sources.list.5.xml:139 +#: apt.conf.5.xml:230 sources.list.5.xml:139 msgid "http" msgstr "http" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:226 +#: apt.conf.5.xml:231 #, 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 " @@ -6095,7 +5988,7 @@ msgstr "" "les options de mandataire HTTP." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:234 +#: apt.conf.5.xml:239 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy to not use its cached " @@ -6120,7 +6013,7 @@ msgstr "" "en compte aucune de ces options." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:244 apt.conf.5.xml:301 +#: apt.conf.5.xml:249 apt.conf.5.xml:306 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method, this applies to all things including connection timeout and data " @@ -6130,7 +6023,7 @@ msgstr "" "(timeout) utilisé par la méthode. Cela vaut pour tout, connexion et données." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:247 +#: apt.conf.5.xml:252 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) " @@ -6150,7 +6043,7 @@ msgstr "" "option ne respectent pas la RFC 2068." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:255 +#: apt.conf.5.xml:260 msgid "" "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" "literal> which accepts integer values in kilobyte. The default value is 0 " @@ -6160,12 +6053,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:261 +#: apt.conf.5.xml:266 msgid "https" msgstr "https" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:262 +#: apt.conf.5.xml:267 msgid "" "HTTPS URIs. Cache-control and proxy options are the same as for " "<literal>http</literal> method. <literal>Pipeline-Depth</literal> option is " @@ -6176,7 +6069,7 @@ msgstr "" "<literal>Pipeline-Depth</literal> n'est pas encore supportée." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:266 +#: apt.conf.5.xml:271 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is " @@ -6208,25 +6101,13 @@ msgstr "" "ou 'SSLv3'." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:284 sources.list.5.xml:150 +#: apt.conf.5.xml:289 sources.list.5.xml:150 msgid "ftp" msgstr "ftp" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:285 +#: apt.conf.5.xml:290 #, 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 " @@ -6261,7 +6142,7 @@ msgstr "" "respectif de l'URI." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:304 +#: apt.conf.5.xml:309 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on, it works in nearly every environment. However " @@ -6278,7 +6159,7 @@ msgstr "" "modèle de fichier de configuration)." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:311 +#: apt.conf.5.xml:316 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to a http url - see the discussion of the http " @@ -6293,7 +6174,7 @@ msgstr "" "de cette méthode." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:316 +#: apt.conf.5.xml:321 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -6309,18 +6190,18 @@ msgstr "" "des serveurs FTP ne suivent pas la RFC 2428." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:323 sources.list.5.xml:132 +#: apt.conf.5.xml:328 sources.list.5.xml:132 msgid "cdrom" msgstr "cdrom" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:329 -#, no-wrap -msgid "\"/cdrom/\"::Mount \"foo\";" +#: apt.conf.5.xml:334 +#, fuzzy, no-wrap +msgid "/cdrom/::Mount \"foo\";" msgstr "\"/cdrom/\"::Mount \"foo\";" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:324 +#: apt.conf.5.xml:329 msgid "" "CDROM URIs; the only setting for CDROM URIs is the mount point, " "<literal>cdrom::Mount</literal> which must be the mount point for the CDROM " @@ -6342,12 +6223,12 @@ msgstr "" "spécifiées en utilisant <literal>UMount</literal>." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:334 +#: apt.conf.5.xml:339 msgid "gpgv" msgstr "gpgv" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:335 +#: apt.conf.5.xml:340 msgid "" "GPGV URIs; the only option for GPGV URIs is the option to pass additional " "parameters to gpgv. <literal>gpgv::Options</literal> Additional options " @@ -6358,18 +6239,18 @@ msgstr "" "supplémentaires passées à gpgv." #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:340 +#: apt.conf.5.xml:345 msgid "CompressionTypes" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:346 +#: apt.conf.5.xml:351 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:341 +#: apt.conf.5.xml:346 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -6381,19 +6262,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:351 +#: apt.conf.5.xml:356 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:354 +#: apt.conf.5.xml:359 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:347 +#: apt.conf.5.xml:352 msgid "" "Also the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -6410,13 +6291,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:358 +#: apt.conf.5.xml:363 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:356 +#: apt.conf.5.xml:361 msgid "" "Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</" "replaceable></literal> will be checked: If this setting exists the method " @@ -6431,7 +6312,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:363 +#: apt.conf.5.xml:368 msgid "" "While it is possible to add an empty compression type to the order list, but " "APT in its current version doesn't understand it correctly and will display " @@ -6441,7 +6322,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:197 +#: apt.conf.5.xml:202 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages and the URI handlers. <placeholder type=\"variablelist\" id=\"0\"/>" @@ -6451,12 +6332,12 @@ msgstr "" "id=\"0\"/>" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:372 +#: apt.conf.5.xml:377 msgid "Directories" msgstr "Les répertoires" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:374 +#: apt.conf.5.xml:379 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -6476,7 +6357,7 @@ msgstr "" "filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:381 +#: apt.conf.5.xml:386 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -6499,7 +6380,7 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:390 +#: apt.conf.5.xml:395 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -6514,7 +6395,7 @@ msgstr "" "fichier de configuration indiqué par la variable <envar>APT_CONFIG</envar>)." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:396 +#: apt.conf.5.xml:401 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -6525,15 +6406,8 @@ msgstr "" "configuration est chargé." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:400 +#: apt.conf.5.xml:405 #, 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 " @@ -6550,7 +6424,7 @@ msgstr "" "l'emplacement des programmes correspondants." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:408 +#: apt.conf.5.xml:413 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -6572,12 +6446,12 @@ msgstr "" "staging/var/lib/dpkg/status</filename>." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:421 +#: apt.conf.5.xml:426 msgid "APT in DSelect" msgstr "APT et DSelect" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:423 +#: apt.conf.5.xml:428 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behaviour. These are in the <literal>DSelect</literal> " @@ -6588,12 +6462,12 @@ msgstr "" "<literal>DSelect</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:427 +#: apt.conf.5.xml:432 msgid "Clean" msgstr "Clean" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:428 +#: apt.conf.5.xml:433 msgid "" "Cache Clean mode; this value may be one of always, prompt, auto, pre-auto " "and never. always and prompt will remove all packages from the cache after " @@ -6611,7 +6485,7 @@ msgstr "" "supprime avant de récupérer de nouveaux paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:437 +#: apt.conf.5.xml:442 msgid "" "The contents of this variable is passed to &apt-get; as command line options " "when it is run for the install phase." @@ -6620,12 +6494,12 @@ msgstr "" "&apt-get; lors de la phase d'installation." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:441 +#: apt.conf.5.xml:446 msgid "Updateoptions" msgstr "UpdateOptions" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:442 +#: apt.conf.5.xml:447 msgid "" "The contents of this variable is passed to &apt-get; as command line options " "when it is run for the update phase." @@ -6634,12 +6508,12 @@ msgstr "" "&apt-get; lors de la phase de mise à jour." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:446 +#: apt.conf.5.xml:451 msgid "PromptAfterUpdate" msgstr "PromptAfterUpdate" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:447 +#: apt.conf.5.xml:452 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -6649,12 +6523,12 @@ msgstr "" "d'erreur que l'on propose à l'utilisateur d'intervenir." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:453 +#: apt.conf.5.xml:458 msgid "How APT calls dpkg" msgstr "Méthode d'appel de &dpkg; par APT" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:454 +#: apt.conf.5.xml:459 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -6663,7 +6537,7 @@ msgstr "" "&dpkg; : elles figurent dans la section <literal>DPkg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:459 +#: apt.conf.5.xml:464 msgid "" "This is a list of options to pass to dpkg. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -6674,17 +6548,17 @@ msgstr "" "est passé comme un seul paramètre à &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:464 +#: apt.conf.5.xml:469 msgid "Pre-Invoke" msgstr "Pre-Invoke" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:464 +#: apt.conf.5.xml:469 msgid "Post-Invoke" msgstr "Post-Invoke" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:465 +#: apt.conf.5.xml:470 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -6697,12 +6571,12 @@ msgstr "" "<filename>/bin/sh</filename> : APT s'arrête dès que l'une d'elles échoue." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:471 +#: apt.conf.5.xml:476 msgid "Pre-Install-Pkgs" msgstr "Pre-Install-Pkgs" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:472 +#: apt.conf.5.xml:477 msgid "" "This is a list of shell commands to run before invoking dpkg. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -6718,7 +6592,7 @@ msgstr "" "qu'il va installer, à raison d'un par ligne." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:478 +#: apt.conf.5.xml:483 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -6734,12 +6608,12 @@ msgstr "" "literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:485 +#: apt.conf.5.xml:490 msgid "Run-Directory" msgstr "Run-Directory" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:486 +#: apt.conf.5.xml:491 msgid "" "APT chdirs to this directory before invoking dpkg, the default is <filename>/" "</filename>." @@ -6748,12 +6622,12 @@ msgstr "" "le répertoire <filename>/</filename>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:495 msgid "Build-options" msgstr "Build-options" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:491 +#: apt.conf.5.xml:496 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages, the " "default is to disable signing and produce all binaries." @@ -6763,12 +6637,12 @@ msgstr "" "créés." #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:496 +#: apt.conf.5.xml:501 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:497 +#: apt.conf.5.xml:502 msgid "" "APT can call dpkg in a way so it can make aggressive use of triggers over " "multiply calls of dpkg. Without further options dpkg will use triggers only " @@ -6783,7 +6657,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:512 +#: apt.conf.5.xml:517 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -6793,7 +6667,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:506 +#: apt.conf.5.xml:511 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -6807,12 +6681,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:518 +#: apt.conf.5.xml:523 msgid "DPkg::NoTriggers" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:519 +#: apt.conf.5.xml:524 msgid "" "Add the no triggers flag to all dpkg calls (expect the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -6824,14 +6698,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:526 +#: apt.conf.5.xml:531 #, fuzzy -#| msgid "Packages::Compress" msgid "PackageManager::Configure" msgstr "Packages::Compress" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:527 +#: apt.conf.5.xml:532 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". \"<literal>all</literal>\" is the default " @@ -6847,12 +6720,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:537 +#: apt.conf.5.xml:542 msgid "DPkg::ConfigurePending" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:538 +#: apt.conf.5.xml:543 msgid "" "If this option is set apt will call <command>dpkg --configure --pending</" "command> to let dpkg handle all required configurations and triggers. This " @@ -6863,12 +6736,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:544 +#: apt.conf.5.xml:549 msgid "DPkg::TriggersPending" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:545 +#: apt.conf.5.xml:550 msgid "" "Useful for <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal> and dpkg " @@ -6878,12 +6751,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:550 +#: apt.conf.5.xml:555 msgid "PackageManager::UnpackAll" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:551 +#: apt.conf.5.xml:556 msgid "" "As the configuration can be deferred to be done at the end by dpkg it can be " "tried to order the unpack series only by critical needs, e.g. by Pre-" @@ -6895,12 +6768,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:558 +#: apt.conf.5.xml:563 msgid "OrderList::Score::Immediate" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:566 +#: apt.conf.5.xml:571 #, no-wrap msgid "" "OrderList::Score {\n" @@ -6912,7 +6785,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:559 +#: apt.conf.5.xml:564 msgid "" "Essential packages (and there dependencies) should be configured immediately " "after unpacking. It will be a good idea to do this quite early in the " @@ -6926,12 +6799,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:579 +#: apt.conf.5.xml:584 msgid "Periodic and Archives options" msgstr "Options « Periodic » et « Archive »" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:580 +#: apt.conf.5.xml:585 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by " @@ -6943,12 +6816,12 @@ msgstr "" "script <literal>/etc/cron.daily/apt</literal>, lancé quotidiennement." #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:588 +#: apt.conf.5.xml:593 msgid "Debug options" msgstr "Les options de débogage" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:590 +#: apt.conf.5.xml:595 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -6966,7 +6839,7 @@ msgstr "" "peuvent tout de même être utiles :" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:601 +#: apt.conf.5.xml:606 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -6977,7 +6850,7 @@ msgstr "" "upgrade, upgrade, install, remove et purge</literal>." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:609 +#: apt.conf.5.xml:614 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -6989,7 +6862,7 @@ msgstr "" "superutilisateur." #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:618 +#: apt.conf.5.xml:623 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -6999,9 +6872,9 @@ msgstr "" #. TODO: provide a #. motivating example, except I haven't a clue why you'd want -#. to do this. +#. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:626 +#: apt.conf.5.xml:631 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CDROM IDs." @@ -7010,59 +6883,62 @@ msgstr "" "type statfs dans les identifiants de CD." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:636 +#: apt.conf.5.xml:641 msgid "A full list of debugging options to apt follows." msgstr "Liste complète des options de débogage de APT :" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:641 +#: apt.conf.5.xml:646 msgid "<literal>Debug::Acquire::cdrom</literal>" msgstr "<literal>Debug::Acquire::cdrom</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:645 -msgid "Print information related to accessing <literal>cdrom://</literal> sources." +#: apt.conf.5.xml:650 +msgid "" +"Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" "Affiche les informations concernant les sources de type <literal>cdrom://</" "literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:652 +#: apt.conf.5.xml:657 msgid "<literal>Debug::Acquire::ftp</literal>" msgstr "<literal>Debug::Acquire::ftp</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:656 +#: apt.conf.5.xml:661 msgid "Print information related to downloading packages using FTP." -msgstr "Affiche les informations concernant le téléchargement de paquets par FTP." +msgstr "" +"Affiche les informations concernant le téléchargement de paquets par FTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:663 +#: apt.conf.5.xml:668 msgid "<literal>Debug::Acquire::http</literal>" msgstr "<literal>Debug::Acquire::http</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:667 +#: apt.conf.5.xml:672 msgid "Print information related to downloading packages using HTTP." -msgstr "Affiche les informations concernant le téléchargement de paquets par HTTP." +msgstr "" +"Affiche les informations concernant le téléchargement de paquets par HTTP." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:674 +#: apt.conf.5.xml:679 msgid "<literal>Debug::Acquire::https</literal>" msgstr "<literal>Debug::Acquire::https</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:683 msgid "Print information related to downloading packages using HTTPS." msgstr "Print information related to downloading packages using HTTPS." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:685 +#: apt.conf.5.xml:690 msgid "<literal>Debug::Acquire::gpgv</literal>" msgstr "<literal>Debug::Acquire::gpgv</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:689 +#: apt.conf.5.xml:694 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -7071,12 +6947,12 @@ msgstr "" "cryptographiques avec <literal>gpg</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:696 +#: apt.conf.5.xml:701 msgid "<literal>Debug::aptcdrom</literal>" msgstr "<literal>Debug::aptcdrom</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:700 +#: apt.conf.5.xml:705 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." @@ -7085,24 +6961,24 @@ msgstr "" "stockées sur CD." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:707 +#: apt.conf.5.xml:712 msgid "<literal>Debug::BuildDeps</literal>" msgstr "<literal>Debug::BuildDeps</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:710 +#: apt.conf.5.xml:715 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" "Décrit le processus de résolution des dépendances pour la construction de " "paquets source ( « build-dependencies » ) par &apt-get;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:717 +#: apt.conf.5.xml:722 msgid "<literal>Debug::Hashes</literal>" msgstr "<literal>Debug::Hashes</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:720 +#: apt.conf.5.xml:725 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." @@ -7111,12 +6987,12 @@ msgstr "" "librairies d'<literal>apt</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:727 +#: apt.conf.5.xml:732 msgid "<literal>Debug::IdentCDROM</literal>" msgstr "<literal>Debug::IdentCDROM</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:730 +#: apt.conf.5.xml:735 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -7127,12 +7003,12 @@ msgstr "" "utilisés sur le système de fichier du CD." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:738 +#: apt.conf.5.xml:743 msgid "<literal>Debug::NoLocking</literal>" msgstr "<literal>Debug::NoLocking</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:741 +#: apt.conf.5.xml:746 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." @@ -7142,24 +7018,24 @@ msgstr "" "temps." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:749 +#: apt.conf.5.xml:754 msgid "<literal>Debug::pkgAcquire</literal>" msgstr "<literal>Debug::pkgAcquire</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:753 +#: apt.conf.5.xml:758 msgid "Log when items are added to or removed from the global download queue." msgstr "" "Trace les ajouts et suppressions d'éléments de la queue globale de " "téléchargement." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:760 +#: apt.conf.5.xml:765 msgid "<literal>Debug::pkgAcquire::Auth</literal>" msgstr "<literal>Debug::pkgAcquire::Auth</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:763 +#: apt.conf.5.xml:768 msgid "" "Output status messages and errors related to verifying checksums and " "cryptographic signatures of downloaded files." @@ -7169,12 +7045,12 @@ msgstr "" "éventuelles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:770 +#: apt.conf.5.xml:775 msgid "<literal>Debug::pkgAcquire::Diffs</literal>" msgstr "<literal>Debug::pkgAcquire::Diffs</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:773 +#: apt.conf.5.xml:778 msgid "" "Output information about downloading and applying package index list diffs, " "and errors relating to package index list diffs." @@ -7184,12 +7060,12 @@ msgstr "" "éventuelles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:781 +#: apt.conf.5.xml:786 msgid "<literal>Debug::pkgAcquire::RRed</literal>" msgstr "<literal>Debug::pkgAcquire::RRed</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:785 +#: apt.conf.5.xml:790 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." @@ -7199,24 +7075,25 @@ msgstr "" "place des fichiers complets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:792 +#: apt.conf.5.xml:797 msgid "<literal>Debug::pkgAcquire::Worker</literal>" msgstr "<literal>Debug::pkgAcquire::Worker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:796 -msgid "Log all interactions with the sub-processes that actually perform downloads." +#: apt.conf.5.xml:801 +msgid "" +"Log all interactions with the sub-processes that actually perform downloads." msgstr "" "Affiche toutes les interactions avec les processus enfants qui se chargent " "effectivement des téléchargements." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:803 +#: apt.conf.5.xml:808 msgid "<literal>Debug::pkgAutoRemove</literal>" msgstr "<literal>Debug::pkgAutoRemove</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:807 +#: apt.conf.5.xml:812 msgid "" "Log events related to the automatically-installed status of packages and to " "the removal of unused packages." @@ -7225,12 +7102,12 @@ msgstr "" "automatiquement, et la suppression des paquets inutiles." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:814 +#: apt.conf.5.xml:819 msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>" msgstr "<literal>Debug::pkgDepCache::AutoInstall</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:817 +#: apt.conf.5.xml:822 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -7245,12 +7122,12 @@ msgstr "" "de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce dernier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:828 +#: apt.conf.5.xml:833 msgid "<literal>Debug::pkgDepCache::Marker</literal>" msgstr "<literal>Debug::pkgDepCache::Marker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:836 msgid "" "Generate debug messages describing which package is marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -7285,24 +7162,24 @@ msgstr "" "de APT ; voir <literal>Debug::pkgProblemResolver</literal> pour ce dernier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:850 +#: apt.conf.5.xml:855 msgid "<literal>Debug::pkgInitConfig</literal>" msgstr "<literal>Debug::pkgInitConfig</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:853 +#: apt.conf.5.xml:858 msgid "Dump the default configuration to standard error on startup." msgstr "" "Affiche, au lancement, l'ensemble de la configuration sur la sortie d'erreur " "standard." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:865 msgid "<literal>Debug::pkgDPkgPM</literal>" msgstr "<literal>Debug::pkgDPkgPM</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:863 +#: apt.conf.5.xml:868 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." @@ -7311,12 +7188,12 @@ msgstr "" "paramètres sont séparés par des espaces." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:871 +#: apt.conf.5.xml:876 msgid "<literal>Debug::pkgDPkgProgressReporting</literal>" msgstr "<literal>Debug::pkgDPkgProgressReporting</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:874 +#: apt.conf.5.xml:879 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." @@ -7326,12 +7203,12 @@ msgstr "" "fichier." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:881 +#: apt.conf.5.xml:886 msgid "<literal>Debug::pkgOrderList</literal>" msgstr "<literal>Debug::pkgOrderList</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:885 +#: apt.conf.5.xml:890 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." @@ -7340,32 +7217,33 @@ msgstr "" "<literal>apt</literal> passe les paquets à &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:893 +#: apt.conf.5.xml:898 msgid "<literal>Debug::pkgPackageManager</literal>" msgstr "<literal>Debug::pkgPackageManager</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:897 -msgid "Output status messages tracing the steps performed when invoking &dpkg;." +#: apt.conf.5.xml:902 +msgid "" +"Output status messages tracing the steps performed when invoking &dpkg;." msgstr "Affiche le détail des opérations liées à l'invocation de &dpkg;." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:904 +#: apt.conf.5.xml:909 msgid "<literal>Debug::pkgPolicy</literal>" msgstr "<literal>Debug::pkgPolicy</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:908 +#: apt.conf.5.xml:913 msgid "Output the priority of each package list on startup." msgstr "Affiche, au lancement, la priorité de chaque liste de paquets." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:914 +#: apt.conf.5.xml:919 msgid "<literal>Debug::pkgProblemResolver</literal>" msgstr "<literal>Debug::pkgProblemResolver</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:918 +#: apt.conf.5.xml:923 msgid "" "Trace the execution of the dependency resolver (this applies only to what " "happens when a complex dependency problem is encountered)." @@ -7374,12 +7252,12 @@ msgstr "" "concerne que les cas où un problème de dépendances complexe se présente)." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:926 +#: apt.conf.5.xml:931 msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>" msgstr "<literal>Debug::pkgProblemResolver::ShowScores</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:929 +#: apt.conf.5.xml:934 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -7390,12 +7268,12 @@ msgstr "" "est décrite dans <literal>Debug::pkgDepCache::Marker</literal>." #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:937 +#: apt.conf.5.xml:942 msgid "<literal>Debug::sourceList</literal>" msgstr "<literal>Debug::sourceList</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:941 +#: apt.conf.5.xml:946 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -7404,7 +7282,7 @@ msgstr "" "list</filename>." #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:963 +#: apt.conf.5.xml:968 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -7413,19 +7291,18 @@ msgstr "" "exemples pour toutes les options existantes." #. type: Content of: <refentry><refsect1><variablelist> -#: apt.conf.5.xml:970 +#: apt.conf.5.xml:975 #, fuzzy -#| msgid "&apt-conf;" msgid "&file-aptconf;" msgstr "&apt-conf;" -#. ? reading apt.conf +#. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:975 +#: apt.conf.5.xml:980 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." -#. The last update date +#. The last update date #. type: Content of: <refentry><refentryinfo> #: apt_preferences.5.xml:13 msgid "&apt-author.team; &apt-email; &apt-product; <date>04 May 2009</date>" @@ -7444,10 +7321,6 @@ msgstr "Fichier de contrôle des préférences pour APT" #. 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 " @@ -7567,7 +7440,8 @@ msgstr "une priorité égale à 990" #. type: Content of: <refentry><refsect1><refsect2><para><variablelist><varlistentry><listitem><simpara> #: apt_preferences.5.xml:94 -msgid "to the versions that are not installed and belong to the target release." +msgid "" +"to the versions that are not installed and belong to the target release." msgstr "" "est affectée aux versions qui ne sont pas installées et qui appartiennent à " "la distribution par défaut." @@ -8052,7 +7926,8 @@ msgstr "" #. type: Content of: <refentry><refsect1><refsect2><title> #: apt_preferences.5.xml:306 msgid "Determination of Package Version and Distribution Properties" -msgstr "Détermination de la version des paquets et des propriétés des distributions" +msgstr "" +"Détermination de la version des paquets et des propriétés des distributions" #. type: Content of: <refentry><refsect1><refsect2><para> #: apt_preferences.5.xml:308 @@ -8623,7 +8498,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist> #: apt_preferences.5.xml:617 #, fuzzy -#| msgid "apt_preferences" msgid "&file-preferences;" msgstr "apt_preferences" diff --git a/doc/po/ja.po b/doc/po/ja.po index ca5ccef2b..53684a0cd 100644 --- a/doc/po/ja.po +++ b/doc/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-09-26 11:35+0300\n" +"POT-Creation-Date: 2009-12-01 19:13+0100\n" "PO-Revision-Date: 2009-07-30 22:55+0900\n" "Last-Translator: KURASAWA Nozomu <nabetaro@caldron.jp>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -580,15 +580,6 @@ msgstr "" #. type: Plain text #: apt.ent:168 #, 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" msgid "" "<!-- Boiler plate docinfo section -->\n" "<!ENTITY apt-docinfo \"\n" @@ -640,13 +631,6 @@ msgstr "" #. type: Plain text #: apt.ent:185 #, fuzzy, no-wrap -#| msgid "" -#| "<!ENTITY apt-author.jgunthorpe \"\n" -#| " <author>\n" -#| " <firstname>Jason</firstname>\n" -#| " <surname>Gunthorpe</surname>\n" -#| " </author>\n" -#| "\">\n" msgid "" "<!ENTITY apt-author.jgunthorpe \"\n" " <author>\n" @@ -666,13 +650,6 @@ msgstr "" #. type: Plain text #: apt.ent:193 #, fuzzy, no-wrap -#| msgid "" -#| "<!ENTITY apt-author.moconnor \"\n" -#| " <author>\n" -#| " <firstname>Mike</firstname>\n" -#| " <surname>O'Connor</surname>\n" -#| " </author>\n" -#| "\">\n" msgid "" "<!ENTITY apt-author.moconnor \"\n" " <author>\n" @@ -692,12 +669,6 @@ msgstr "" #. type: Plain text #: apt.ent:200 #, fuzzy, no-wrap -#| msgid "" -#| "<!ENTITY apt-author.team \"\n" -#| " <author>\n" -#| " <othername>APT team</othername>\n" -#| " </author>\n" -#| "\">\n" msgid "" "<!ENTITY apt-author.team \"\n" " <author>\n" @@ -962,7 +933,6 @@ msgstr "" #. type: Plain text #: apt.ent:315 #, fuzzy, no-wrap -#| msgid "Storage area for package files in transit. Configuration Item: <literal>Dir::Cache::Archives</literal> (implicit partial)." msgid "" " <varlistentry><term><filename>&cachedir;/archives/partial/</filename></term>\n" " <listitem><para>Storage area for package files in transit.\n" @@ -975,7 +945,6 @@ msgstr "取得中パッケージファイル格納エリア。設定項目 - <li #. type: Plain text #: apt.ent:325 #, 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>." msgid "" "<!ENTITY file-preferences \"\n" " <varlistentry><term><filename>/etc/apt/preferences</filename></term>\n" @@ -1025,7 +994,6 @@ msgstr "" #. type: Plain text #: apt.ent:350 #, fuzzy, no-wrap -#| msgid "Storage area for state information for each package resource specified in &sources-list; Configuration Item: <literal>Dir::State::Lists</literal>." msgid "" "<!ENTITY file-statelists \"\n" " <varlistentry><term><filename>&statedir;/lists/</filename></term>\n" @@ -1039,7 +1007,6 @@ msgstr "&sources-list; に指定した、パッケージリソースごとの状 #. type: Plain text #: apt.ent:355 #, fuzzy, no-wrap -#| msgid "Storage area for state information in transit. Configuration Item: <literal>Dir::State::Lists</literal> (implicit partial)." msgid "" " <varlistentry><term><filename>&statedir;/lists/partial/</filename></term>\n" " <listitem><para>Storage area for state information in transit.\n" @@ -1558,12 +1525,6 @@ msgstr "pkgnames <replaceable>[ prefix ]</replaceable>" #. 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 " @@ -1579,7 +1540,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-cache.8.xml:234 msgid "" -"Note that a package which APT knows of is not nessasarily available to " +"Note that a package which APT knows of is not necessarily available to " "download, installable or installed, e.g. virtual packages are also listed in " "the generated list." msgstr "" @@ -1693,7 +1654,7 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-cache.8.xml:281 apt-config.8.xml:93 apt-extracttemplates.1.xml:56 #: apt-ftparchive.1.xml:492 apt-get.8.xml:319 apt-mark.8.xml:89 -#: apt-sortpkgs.1.xml:54 apt.conf.5.xml:436 apt.conf.5.xml:458 +#: apt-sortpkgs.1.xml:54 apt.conf.5.xml:441 apt.conf.5.xml:463 msgid "options" msgstr "オプション" @@ -1943,7 +1904,7 @@ msgstr "&apt-commonoptions;" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> #: apt-cache.8.xml:361 apt-get.8.xml:559 apt-key.8.xml:138 apt-mark.8.xml:122 -#: apt.conf.5.xml:968 apt_preferences.5.xml:615 +#: apt.conf.5.xml:973 apt_preferences.5.xml:615 msgid "Files" msgstr "ファイル" @@ -1957,7 +1918,7 @@ msgstr "" #: apt-cache.8.xml:368 apt-cdrom.8.xml:155 apt-config.8.xml:103 #: apt-extracttemplates.1.xml:74 apt-ftparchive.1.xml:563 apt-get.8.xml:569 #: apt-key.8.xml:162 apt-mark.8.xml:133 apt-secure.8.xml:181 -#: apt-sortpkgs.1.xml:69 apt.conf.5.xml:974 apt_preferences.5.xml:622 +#: apt-sortpkgs.1.xml:69 apt.conf.5.xml:979 apt_preferences.5.xml:622 #: sources.list.5.xml:221 msgid "See Also" msgstr "関連項目" @@ -2502,25 +2463,6 @@ msgstr "インデックスファイル生成ユーティリティ" #. 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> " @@ -3665,7 +3607,7 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> -#: apt-ftparchive.1.xml:552 apt.conf.5.xml:962 apt_preferences.5.xml:462 +#: apt-ftparchive.1.xml:552 apt.conf.5.xml:967 apt_preferences.5.xml:462 #: sources.list.5.xml:181 msgid "Examples" msgstr "サンプル" @@ -3722,37 +3664,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> " @@ -4089,25 +4000,13 @@ msgstr "source" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #: apt-get.8.xml:251 #, 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 " "package to fetch. It will then find and download into the current directory " "the newest available version of that source package while respect the " "default release, set with the option <literal>APT::Default-Release</" -"literal>, the <option>-t</option> option or per package with with the " +"literal>, the <option>-t</option> option or per package with the " "<literal>pkg/release</literal> syntax, if possible." msgstr "" "<literal>source</literal> は、ソースパッケージを取得するのに <command>apt-" @@ -5098,9 +4997,6 @@ msgstr "&apt-get;, &apt-secure;" #. 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>" @@ -5124,11 +5020,6 @@ msgstr "パッケージが自動的にインストールされたかどうかの #. 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" @@ -5156,12 +5047,6 @@ msgstr "" #. 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 " @@ -5217,10 +5102,6 @@ msgstr "" #. 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 manually installed " "packages with each package on a new line." @@ -5231,7 +5112,6 @@ msgstr "" #. 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>" @@ -5239,7 +5119,6 @@ msgstr "<option>-f=<filename>FILENAME</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>" @@ -5249,11 +5128,6 @@ msgstr "<option>--file=<filename>FILENAME</filename></option>" #. 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 " @@ -5300,7 +5174,6 @@ msgstr "プログラムのバージョン情報を表示します" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> #: apt-mark.8.xml:124 #, fuzzy -#| msgid "<filename>/etc/apt/preferences</filename>" msgid "<filename>/var/lib/apt/extended_states</filename>" msgstr "<filename>/etc/apt/preferences</filename>" @@ -5316,7 +5189,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><para> #: apt-mark.8.xml:134 #, fuzzy -#| msgid "&apt-cache; &apt-conf;" msgid "&apt-get;,&aptitude;,&apt-conf;" msgstr "&apt-cache; &apt-conf;" @@ -5737,11 +5609,6 @@ msgstr "" #. 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 " @@ -5810,14 +5677,19 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> #: apt.conf.5.xml:56 +#, 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:" +"semicolon and the quotes are required. The value must be on one line, and " +"there is no kind of string concatenation. It must not include inside " +"quotes. The behavior of the backslash \"\\\" and escaped characters inside " +"a value is undefined and it should not be used. An option name may include " +"alphanumerical characters and the \"/-:._+\" characters. A new scope can be " +"opened with curly braces, like:" msgstr "" "設定言語の文法は、bind や dhcp のような ISC ツールをモデルにしています。" "<literal>//</literal> で始まる行はコメントとして扱われます (無視)。同様に C/C" @@ -5829,7 +5701,7 @@ msgstr "" # type: Content of: <refentry><refsect1><informalexample><programlisting> #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:66 +#: apt.conf.5.xml:70 #, no-wrap msgid "" "APT {\n" @@ -5848,7 +5720,7 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:74 +#: apt.conf.5.xml:78 msgid "" "with newlines placed to make it more readable. Lists can be created by " "opening a scope and including a single string enclosed in quotes followed by " @@ -5860,14 +5732,14 @@ msgstr "" # type: Content of: <refentry><refsect1><informalexample><programlisting> #. type: Content of: <refentry><refsect1><informalexample><programlisting> -#: apt.conf.5.xml:79 +#: apt.conf.5.xml:83 #, no-wrap msgid "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" msgstr "DPkg::Pre-Install-Pkgs {\"/usr/sbin/dpkg-preconfigure --apt\";};\n" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:82 +#: apt.conf.5.xml:86 msgid "" "In general the sample configuration file in <filename>&docdir;examples/apt." "conf</filename> &configureindex; is a good guide for how it should look." @@ -5876,7 +5748,7 @@ msgstr "" "定ファイルのサンプルです。どのように設定するか参考になるでしょう。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:86 +#: apt.conf.5.xml:90 msgid "" "The names of the configuration items are not case-sensitive. So in the " "previous example you could use <literal>dpkg::pre-install-pkgs</literal>." @@ -5885,7 +5757,7 @@ msgstr "" "<literal>dpkg::pre-install-pkgs</literal> とできます。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:89 +#: apt.conf.5.xml:93 msgid "" "Names for the configuration items are optional if a list is defined as it " "can be see in the <literal>DPkg::Pre-Install-Pkgs</literal> example above. " @@ -5896,17 +5768,11 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:94 +#: apt.conf.5.xml:98 #, 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> and <literal>#clear</" +msgid "" +"Two specials are allowed, <literal>#include</literal> (which is deprecated " +"and not supported by alternative implementations) 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. " @@ -5920,7 +5786,7 @@ msgstr "" "指定した要素と、それ以下の要素を削除します。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:101 +#: apt.conf.5.xml:106 msgid "" "The #clear command is the only way to delete a list or a complete scope. " "Reopening a scope or the ::-style described below will <emphasis>not</" @@ -5931,14 +5797,8 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:106 +#: apt.conf.5.xml:111 #, 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 " @@ -5953,7 +5813,7 @@ msgstr "" "ることで、リストを追加することができます。" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:113 +#: apt.conf.5.xml:118 msgid "" "Note that you can use :: only for appending one item per line to a list and " "that you should not use it in combination with the scope syntax. (The scope " @@ -5971,13 +5831,13 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:125 +#: apt.conf.5.xml:130 msgid "The APT Group" msgstr "APT グループ" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:126 +#: apt.conf.5.xml:131 msgid "" "This group of options controls general APT behavior as well as holding the " "options for all of the tools." @@ -5987,13 +5847,13 @@ msgstr "" # type: <tag></tag> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:130 +#: apt.conf.5.xml:135 msgid "Architecture" msgstr "Architecture" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:131 +#: apt.conf.5.xml:136 msgid "" "System Architecture; sets the architecture to use when fetching files and " "parsing package lists. The internal default is the architecture apt was " @@ -6005,12 +5865,12 @@ msgstr "" # type: Content of: <refentry><refsect1><refsect2><para><programlisting> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:136 +#: apt.conf.5.xml:141 msgid "Default-Release" msgstr "Default-Release" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:137 +#: apt.conf.5.xml:142 msgid "" "Default release to install packages from if more than one version available. " "Contains release name, codename or release version. Examples: 'stable', " @@ -6023,13 +5883,13 @@ msgstr "" "す。 &apt-preferences; も参照してください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:141 +#: apt.conf.5.xml:146 msgid "Ignore-Hold" msgstr "Ignore-Hold" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:142 +#: apt.conf.5.xml:147 msgid "" "Ignore Held packages; This global option causes the problem resolver to " "ignore held packages in its decision making." @@ -6039,13 +5899,13 @@ msgstr "" # type: <tag></tag> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:146 +#: apt.conf.5.xml:151 msgid "Clean-Installed" msgstr "Clean-Installed" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:147 +#: apt.conf.5.xml:152 msgid "" "Defaults to on. When turned on the autoclean feature will remove any " "packages which can no longer be downloaded from the cache. If turned off " @@ -6060,13 +5920,13 @@ msgstr "" # type: Content of: <refentry><refnamediv><refname> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:153 +#: apt.conf.5.xml:158 msgid "Immediate-Configure" msgstr "Immediate-Configure" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:154 +#: apt.conf.5.xml:159 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 " @@ -6081,13 +5941,13 @@ msgstr "" "ください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:161 +#: apt.conf.5.xml:166 msgid "Force-LoopBreak" msgstr "Force-LoopBreak" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:162 +#: apt.conf.5.xml:167 msgid "" "Never Enable this option unless you -really- know what you are doing. It " "permits APT to temporarily remove an essential package to break a Conflicts/" @@ -6105,13 +5965,13 @@ msgstr "" "不可欠パッケージで動作します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:170 +#: apt.conf.5.xml:175 msgid "Cache-Limit" msgstr "Cache-Limit" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:171 +#: apt.conf.5.xml:176 msgid "" "APT uses a fixed size memory mapped cache file to store the 'available' " "information. This sets the size of that cache (in bytes)." @@ -6120,24 +5980,24 @@ msgstr "" "ファイルを使用します。このオプションは、そのキャッシュサイズを指定します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:175 +#: apt.conf.5.xml:180 msgid "Build-Essential" msgstr "Build-Essential" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:176 +#: apt.conf.5.xml:181 msgid "Defines which package(s) are considered essential build dependencies." msgstr "構築依存関係で不可欠なパッケージを定義します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:179 +#: apt.conf.5.xml:184 msgid "Get" msgstr "Get" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:180 +#: apt.conf.5.xml:185 msgid "" "The Get subsection controls the &apt-get; tool, please see its documentation " "for more information about the options here." @@ -6146,13 +6006,13 @@ msgstr "" "&apt-get; の文書を参照してください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:184 +#: apt.conf.5.xml:189 msgid "Cache" msgstr "Cache" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:185 +#: apt.conf.5.xml:190 msgid "" "The Cache subsection controls the &apt-cache; tool, please see its " "documentation for more information about the options here." @@ -6161,13 +6021,13 @@ msgstr "" "は &apt-cache; の文書を参照してください。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:189 +#: apt.conf.5.xml:194 msgid "CDROM" msgstr "CDROM" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:190 +#: apt.conf.5.xml:195 msgid "" "The CDROM subsection controls the &apt-cdrom; tool, please see its " "documentation for more information about the options here." @@ -6177,17 +6037,17 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:196 +#: apt.conf.5.xml:201 msgid "The Acquire Group" msgstr "Acquire グループ" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:201 +#: apt.conf.5.xml:206 msgid "PDiffs" msgstr "PDiffs" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:202 +#: apt.conf.5.xml:207 msgid "" "Try to download deltas called <literal>PDiffs</literal> for Packages or " "Sources files instead of downloading whole ones. True by default." @@ -6197,13 +6057,13 @@ msgstr "" "ルトでは True です。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:207 +#: apt.conf.5.xml:212 msgid "Queue-Mode" msgstr "Queue-Mode" # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:208 +#: apt.conf.5.xml:213 msgid "" "Queuing mode; <literal>Queue-Mode</literal> can be one of <literal>host</" "literal> or <literal>access</literal> which determines how APT parallelizes " @@ -6218,13 +6078,13 @@ msgstr "" # type: Content of: <refentry><refsect1><refsect2><title> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:215 +#: apt.conf.5.xml:220 msgid "Retries" msgstr "Retries" # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:216 +#: apt.conf.5.xml:221 msgid "" "Number of retries to perform. If this is non-zero APT will retry failed " "files the given number of times." @@ -6233,13 +6093,13 @@ msgstr "" "えられた回数だけリトライを行います。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:220 +#: apt.conf.5.xml:225 msgid "Source-Symlinks" msgstr "Source-Symlinks" # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:221 +#: apt.conf.5.xml:226 msgid "" "Use symlinks for source archives. If set to true then source archives will " "be symlinked when possible instead of copying. True is the default." @@ -6250,21 +6110,14 @@ msgstr "" # type: <tag></tag> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:225 sources.list.5.xml:139 +#: apt.conf.5.xml:230 sources.list.5.xml:139 msgid "http" 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:226 +#: apt.conf.5.xml:231 #, 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 " @@ -6282,7 +6135,7 @@ 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:234 +#: apt.conf.5.xml:239 msgid "" "Three settings are provided for cache control with HTTP/1.1 compliant proxy " "caches. <literal>No-Cache</literal> tells the proxy to not use its cached " @@ -6307,7 +6160,7 @@ 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:244 apt.conf.5.xml:301 +#: apt.conf.5.xml:249 apt.conf.5.xml:306 msgid "" "The option <literal>timeout</literal> sets the timeout timer used by the " "method, this applies to all things including connection timeout and data " @@ -6319,7 +6172,7 @@ 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:247 +#: apt.conf.5.xml:252 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) " @@ -6338,7 +6191,7 @@ msgstr "" "ます。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:255 +#: apt.conf.5.xml:260 msgid "" "The used bandwidth can be limited with <literal>Acquire::http::Dl-Limit</" "literal> which accepts integer values in kilobyte. The default value is 0 " @@ -6349,12 +6202,12 @@ msgstr "" # type: <tag></tag> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:261 +#: apt.conf.5.xml:266 msgid "https" msgstr "https" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:262 +#: apt.conf.5.xml:267 msgid "" "HTTPS URIs. Cache-control and proxy options are the same as for " "<literal>http</literal> method. <literal>Pipeline-Depth</literal> option is " @@ -6365,7 +6218,7 @@ msgstr "" "していません。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:266 +#: apt.conf.5.xml:271 msgid "" "<literal>CaInfo</literal> suboption specifies place of file that holds info " "about trusted certificates. <literal><host>::CaInfo</literal> is " @@ -6387,26 +6240,14 @@ msgstr "" # type: <tag></tag> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:284 sources.list.5.xml:150 +#: apt.conf.5.xml:289 sources.list.5.xml:150 msgid "ftp" 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:285 +#: apt.conf.5.xml:290 #, 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 " @@ -6436,7 +6277,7 @@ 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:304 +#: apt.conf.5.xml:309 msgid "" "Several settings are provided to control passive mode. Generally it is safe " "to leave passive mode on, it works in nearly every environment. However " @@ -6452,7 +6293,7 @@ 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:311 +#: apt.conf.5.xml:316 msgid "" "It is possible to proxy FTP over HTTP by setting the <envar>ftp_proxy</" "envar> environment variable to a http url - see the discussion of the http " @@ -6466,7 +6307,7 @@ 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:316 +#: apt.conf.5.xml:321 msgid "" "The setting <literal>ForceExtended</literal> controls the use of RFC2428 " "<literal>EPSV</literal> and <literal>EPRT</literal> commands. The default is " @@ -6483,19 +6324,19 @@ msgstr "" # type: Content of: <refentry><refnamediv><refname> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:323 sources.list.5.xml:132 +#: apt.conf.5.xml:328 sources.list.5.xml:132 msgid "cdrom" msgstr "cdrom" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:329 -#, no-wrap -msgid "\"/cdrom/\"::Mount \"foo\";" +#: apt.conf.5.xml:334 +#, fuzzy, no-wrap +msgid "/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> -#: apt.conf.5.xml:324 +#: apt.conf.5.xml:329 msgid "" "CDROM URIs; the only setting for CDROM URIs is the mount point, " "<literal>cdrom::Mount</literal> which must be the mount point for the CDROM " @@ -6516,13 +6357,13 @@ msgstr "" "す。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:334 +#: apt.conf.5.xml:339 msgid "gpgv" msgstr "gpgv" # type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:335 +#: apt.conf.5.xml:340 msgid "" "GPGV URIs; the only option for GPGV URIs is the option to pass additional " "parameters to gpgv. <literal>gpgv::Options</literal> Additional options " @@ -6533,18 +6374,18 @@ msgstr "" "す。" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><term> -#: apt.conf.5.xml:340 +#: apt.conf.5.xml:345 msgid "CompressionTypes" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:346 +#: apt.conf.5.xml:351 #, no-wrap msgid "Acquire::CompressionTypes::<replaceable>FileExtension</replaceable> \"<replaceable>Methodname</replaceable>\";" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:341 +#: apt.conf.5.xml:346 msgid "" "List of compression types which are understood by the acquire methods. " "Files like <filename>Packages</filename> can be available in various " @@ -6556,19 +6397,19 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:351 +#: apt.conf.5.xml:356 #, no-wrap msgid "Acquire::CompressionTypes::Order:: \"gz\";" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><synopsis> -#: apt.conf.5.xml:354 +#: apt.conf.5.xml:359 #, no-wrap msgid "Acquire::CompressionTypes::Order { \"lzma\"; \"gz\"; };" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:347 +#: apt.conf.5.xml:352 msgid "" "Also the <literal>Order</literal> subgroup can be used to define in which " "order the acquire system will try to download the compressed files. The " @@ -6585,13 +6426,13 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:358 +#: apt.conf.5.xml:363 #, no-wrap msgid "Dir::Bin::bzip2 \"/bin/bzip2\";" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:356 +#: apt.conf.5.xml:361 msgid "" "Note that at run time the <literal>Dir::Bin::<replaceable>Methodname</" "replaceable></literal> will be checked: If this setting exists the method " @@ -6606,7 +6447,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:363 +#: apt.conf.5.xml:368 msgid "" "While it is possible to add an empty compression type to the order list, but " "APT in its current version doesn't understand it correctly and will display " @@ -6617,7 +6458,7 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:197 +#: apt.conf.5.xml:202 msgid "" "The <literal>Acquire</literal> group of options controls the download of " "packages and the URI handlers. <placeholder type=\"variablelist\" id=\"0\"/>" @@ -6628,13 +6469,13 @@ msgstr "" # type: Content of: <refentry><refsect1><refsect2><title> #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:372 +#: apt.conf.5.xml:377 msgid "Directories" msgstr "ディレクトリ" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:374 +#: apt.conf.5.xml:379 msgid "" "The <literal>Dir::State</literal> section has directories that pertain to " "local state information. <literal>lists</literal> is the directory to place " @@ -6654,7 +6495,7 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:381 +#: apt.conf.5.xml:386 msgid "" "<literal>Dir::Cache</literal> contains locations pertaining to local cache " "information, such as the two package caches <literal>srcpkgcache</literal> " @@ -6676,7 +6517,7 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:390 +#: apt.conf.5.xml:395 msgid "" "<literal>Dir::Etc</literal> contains the location of configuration files, " "<literal>sourcelist</literal> gives the location of the sourcelist and " @@ -6691,7 +6532,7 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:396 +#: apt.conf.5.xml:401 msgid "" "The <literal>Dir::Parts</literal> setting reads in all the config fragments " "in lexical order from the directory specified. After this is done then the " @@ -6703,15 +6544,8 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:400 +#: apt.conf.5.xml:405 #, 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 " @@ -6728,7 +6562,7 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:408 +#: apt.conf.5.xml:413 msgid "" "The configuration item <literal>RootDir</literal> has a special meaning. If " "set, all paths in <literal>Dir::</literal> will be relative to " @@ -6749,13 +6583,13 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:421 +#: apt.conf.5.xml:426 msgid "APT in DSelect" msgstr "DSelect での APT" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:423 +#: apt.conf.5.xml:428 msgid "" "When APT is used as a &dselect; method several configuration directives " "control the default behaviour. These are in the <literal>DSelect</literal> " @@ -6765,13 +6599,13 @@ msgstr "" "設定項目で、デフォルトの動作を制御します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:427 +#: apt.conf.5.xml:432 msgid "Clean" msgstr "Clean" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:428 +#: apt.conf.5.xml:433 msgid "" "Cache Clean mode; this value may be one of always, prompt, auto, pre-auto " "and never. always and prompt will remove all packages from the cache after " @@ -6788,7 +6622,7 @@ msgstr "" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:437 +#: apt.conf.5.xml:442 msgid "" "The contents of this variable is passed to &apt-get; as command line options " "when it is run for the install phase." @@ -6798,13 +6632,13 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:441 +#: apt.conf.5.xml:446 msgid "Updateoptions" msgstr "Updateoptions" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:442 +#: apt.conf.5.xml:447 msgid "" "The contents of this variable is passed to &apt-get; as command line options " "when it is run for the update phase." @@ -6813,13 +6647,13 @@ msgstr "" "されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:446 +#: apt.conf.5.xml:451 msgid "PromptAfterUpdate" msgstr "PromptAfterUpdate" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:447 +#: apt.conf.5.xml:452 msgid "" "If true the [U]pdate operation in &dselect; will always prompt to continue. " "The default is to prompt only on error." @@ -6829,13 +6663,13 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:453 +#: apt.conf.5.xml:458 msgid "How APT calls dpkg" msgstr "APT が dpkg を呼ぶ方法" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:454 +#: apt.conf.5.xml:459 msgid "" "Several configuration directives control how APT invokes &dpkg;. These are " "in the <literal>DPkg</literal> section." @@ -6845,7 +6679,7 @@ msgstr "" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:459 +#: apt.conf.5.xml:464 msgid "" "This is a list of options to pass to dpkg. The options must be specified " "using the list notation and each list item is passed as a single argument to " @@ -6855,18 +6689,18 @@ msgstr "" "ければなりません。また、各リストは単一の引数として &dpkg; に渡されます。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:464 +#: apt.conf.5.xml:469 msgid "Pre-Invoke" msgstr "Pre-Invoke" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:464 +#: apt.conf.5.xml:469 msgid "Post-Invoke" msgstr "Post-Invoke" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:465 +#: apt.conf.5.xml:470 msgid "" "This is a list of shell commands to run before/after invoking &dpkg;. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -6880,13 +6714,13 @@ msgstr "" # type: <tag></tag> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:471 +#: apt.conf.5.xml:476 msgid "Pre-Install-Pkgs" msgstr "Pre-Install-Pkgs" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:472 +#: apt.conf.5.xml:477 msgid "" "This is a list of shell commands to run before invoking dpkg. Like " "<literal>options</literal> this must be specified in list notation. The " @@ -6902,7 +6736,7 @@ msgstr "" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:478 +#: apt.conf.5.xml:483 msgid "" "Version 2 of this protocol dumps more information, including the protocol " "version, the APT configuration space and the packages, files and versions " @@ -6918,13 +6752,13 @@ msgstr "" # type: Content of: <refentry><refsect1><refsect2><title> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:485 +#: apt.conf.5.xml:490 msgid "Run-Directory" msgstr "Run-Directory" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:486 +#: apt.conf.5.xml:491 msgid "" "APT chdirs to this directory before invoking dpkg, the default is <filename>/" "</filename>." @@ -6934,13 +6768,13 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:490 +#: apt.conf.5.xml:495 msgid "Build-options" msgstr "Build-options" # type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:491 +#: apt.conf.5.xml:496 msgid "" "These options are passed to &dpkg-buildpackage; when compiling packages, the " "default is to disable signing and produce all binaries." @@ -6949,12 +6783,12 @@ msgstr "" "ます。デフォルトでは署名を無効にし、全バイナリを生成します。" #. type: Content of: <refentry><refsect1><refsect2><title> -#: apt.conf.5.xml:496 +#: apt.conf.5.xml:501 msgid "dpkg trigger usage (and related options)" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:497 +#: apt.conf.5.xml:502 msgid "" "APT can call dpkg in a way so it can make aggressive use of triggers over " "multiply calls of dpkg. Without further options dpkg will use triggers only " @@ -6969,7 +6803,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para><literallayout> -#: apt.conf.5.xml:512 +#: apt.conf.5.xml:517 #, no-wrap msgid "" "DPkg::NoTriggers \"true\";\n" @@ -6979,7 +6813,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><para> -#: apt.conf.5.xml:506 +#: apt.conf.5.xml:511 msgid "" "Note that it is not guaranteed that APT will support these options or that " "these options will not cause (big) trouble in the future. If you have " @@ -6993,12 +6827,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:518 +#: apt.conf.5.xml:523 msgid "DPkg::NoTriggers" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:519 +#: apt.conf.5.xml:524 msgid "" "Add the no triggers flag to all dpkg calls (expect the ConfigurePending " "call). See &dpkg; if you are interested in what this actually means. In " @@ -7011,14 +6845,13 @@ msgstr "" # type: <tag></tag> #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:526 +#: apt.conf.5.xml:531 #, fuzzy -#| msgid "Packages::Compress" msgid "PackageManager::Configure" msgstr "Packages::Compress" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:527 +#: apt.conf.5.xml:532 msgid "" "Valid values are \"<literal>all</literal>\", \"<literal>smart</literal>\" " "and \"<literal>no</literal>\". \"<literal>all</literal>\" is the default " @@ -7035,13 +6868,13 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:537 +#: apt.conf.5.xml:542 #, fuzzy msgid "DPkg::ConfigurePending" msgstr "ユーザの設定" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:538 +#: apt.conf.5.xml:543 msgid "" "If this option is set apt will call <command>dpkg --configure --pending</" "command> to let dpkg handle all required configurations and triggers. This " @@ -7052,12 +6885,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:544 +#: apt.conf.5.xml:549 msgid "DPkg::TriggersPending" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:545 +#: apt.conf.5.xml:550 msgid "" "Useful for <literal>smart</literal> configuration as a package which has " "pending triggers is not considered as <literal>installed</literal> and dpkg " @@ -7067,12 +6900,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:550 +#: apt.conf.5.xml:555 msgid "PackageManager::UnpackAll" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:551 +#: apt.conf.5.xml:556 msgid "" "As the configuration can be deferred to be done at the end by dpkg it can be " "tried to order the unpack series only by critical needs, e.g. by Pre-" @@ -7084,12 +6917,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><term> -#: apt.conf.5.xml:558 +#: apt.conf.5.xml:563 msgid "OrderList::Score::Immediate" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para><literallayout> -#: apt.conf.5.xml:566 +#: apt.conf.5.xml:571 #, no-wrap msgid "" "OrderList::Score {\n" @@ -7101,7 +6934,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><refsect2><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:559 +#: apt.conf.5.xml:564 msgid "" "Essential packages (and there dependencies) should be configured immediately " "after unpacking. It will be a good idea to do this quite early in the " @@ -7115,12 +6948,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:579 +#: apt.conf.5.xml:584 msgid "Periodic and Archives options" msgstr "Periodic オプションと Archives オプション" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:580 +#: apt.conf.5.xml:585 msgid "" "<literal>APT::Periodic</literal> and <literal>APT::Archives</literal> groups " "of options configure behavior of apt periodic updates, which is done by " @@ -7134,12 +6967,12 @@ msgstr "" # type: Content of: <refentry><refsect1><title> #. type: Content of: <refentry><refsect1><title> -#: apt.conf.5.xml:588 +#: apt.conf.5.xml:593 msgid "Debug options" msgstr "デバッグオプション" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:590 +#: apt.conf.5.xml:595 msgid "" "Enabling options in the <literal>Debug::</literal> section will cause " "debugging information to be sent to the standard error stream of the program " @@ -7150,7 +6983,7 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:601 +#: apt.conf.5.xml:606 msgid "" "<literal>Debug::pkgProblemResolver</literal> enables output about the " "decisions made by <literal>dist-upgrade, upgrade, install, remove, purge</" @@ -7161,7 +6994,7 @@ msgstr "" "にします。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:609 +#: apt.conf.5.xml:614 msgid "" "<literal>Debug::NoLocking</literal> disables all file locking. This can be " "used to run some operations (for instance, <literal>apt-get -s install</" @@ -7172,7 +7005,7 @@ msgstr "" "literal>) を行う場合に使用します。" #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:618 +#: apt.conf.5.xml:623 msgid "" "<literal>Debug::pkgDPkgPM</literal> prints out the actual command line each " "time that <literal>apt</literal> invokes &dpkg;." @@ -7182,66 +7015,66 @@ msgstr "" #. motivating example, except I haven't a clue why you'd want #. to do this. #. type: Content of: <refentry><refsect1><para><itemizedlist><listitem><para> -#: apt.conf.5.xml:626 +#: apt.conf.5.xml:631 msgid "" "<literal>Debug::IdentCdrom</literal> disables the inclusion of statfs data " "in CDROM IDs." msgstr "" #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:636 +#: apt.conf.5.xml:641 msgid "A full list of debugging options to apt follows." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:641 +#: apt.conf.5.xml:646 msgid "<literal>Debug::Acquire::cdrom</literal>" msgstr "<literal>Debug::Acquire::cdrom</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:645 +#: apt.conf.5.xml:650 msgid "" "Print information related to accessing <literal>cdrom://</literal> sources." msgstr "" "<literal>cdrom://</literal> ソースへのアクセスに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:652 +#: apt.conf.5.xml:657 msgid "<literal>Debug::Acquire::ftp</literal>" msgstr "<literal>Debug::Acquire::ftp</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:656 +#: apt.conf.5.xml:661 msgid "Print information related to downloading packages using FTP." msgstr "FTP を用いたパッケージのダウンロードに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:663 +#: apt.conf.5.xml:668 msgid "<literal>Debug::Acquire::http</literal>" msgstr "<literal>Debug::Acquire::http</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:667 +#: apt.conf.5.xml:672 msgid "Print information related to downloading packages using HTTP." msgstr "HTTP を用いたパッケージのダウンロードに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:674 +#: apt.conf.5.xml:679 msgid "<literal>Debug::Acquire::https</literal>" msgstr "<literal>Debug::Acquire::https</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:678 +#: apt.conf.5.xml:683 msgid "Print information related to downloading packages using HTTPS." msgstr "HTTPS を用いたパッケージのダウンロードに関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:685 +#: apt.conf.5.xml:690 msgid "<literal>Debug::Acquire::gpgv</literal>" msgstr "<literal>Debug::Acquire::gpgv</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:689 +#: apt.conf.5.xml:694 msgid "" "Print information related to verifying cryptographic signatures using " "<literal>gpg</literal>." @@ -7249,46 +7082,46 @@ msgstr "" "<literal>gpg</literal> を用いた暗号署名の検証に関する情報を出力します。" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:696 +#: apt.conf.5.xml:701 msgid "<literal>Debug::aptcdrom</literal>" msgstr "<literal>Debug::aptcdrom</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:700 +#: apt.conf.5.xml:705 msgid "" "Output information about the process of accessing collections of packages " "stored on CD-ROMs." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:707 +#: apt.conf.5.xml:712 msgid "<literal>Debug::BuildDeps</literal>" msgstr "<literal>Debug::BuildDeps</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:710 +#: apt.conf.5.xml:715 msgid "Describes the process of resolving build-dependencies in &apt-get;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:717 +#: apt.conf.5.xml:722 msgid "<literal>Debug::Hashes</literal>" msgstr "<literal>Debug::Hashes</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:720 +#: apt.conf.5.xml:725 msgid "" "Output each cryptographic hash that is generated by the <literal>apt</" "literal> libraries." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:727 +#: apt.conf.5.xml:732 msgid "<literal>Debug::IdentCDROM</literal>" msgstr "<literal>Debug::IdentCDROM</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:730 +#: apt.conf.5.xml:735 msgid "" "Do not include information from <literal>statfs</literal>, namely the number " "of used and free blocks on the CD-ROM filesystem, when generating an ID for " @@ -7296,93 +7129,93 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:738 +#: apt.conf.5.xml:743 msgid "<literal>Debug::NoLocking</literal>" msgstr "<literal>Debug::NoLocking</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:741 +#: apt.conf.5.xml:746 msgid "" "Disable all file locking. For instance, this will allow two instances of " "<quote><literal>apt-get update</literal></quote> to run at the same time." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:749 +#: apt.conf.5.xml:754 msgid "<literal>Debug::pkgAcquire</literal>" msgstr "<literal>Debug::pkgAcquire</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:753 +#: apt.conf.5.xml:758 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:760 +#: apt.conf.5.xml:765 msgid "<literal>Debug::pkgAcquire::Auth</literal>" msgstr "<literal>Debug::pkgAcquire::Auth</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:763 +#: apt.conf.5.xml:768 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:770 +#: apt.conf.5.xml:775 msgid "<literal>Debug::pkgAcquire::Diffs</literal>" msgstr "<literal>Debug::pkgAcquire::Diffs</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:773 +#: apt.conf.5.xml:778 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:781 +#: apt.conf.5.xml:786 msgid "<literal>Debug::pkgAcquire::RRed</literal>" msgstr "<literal>Debug::pkgAcquire::RRed</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:785 +#: apt.conf.5.xml:790 msgid "" "Output information related to patching apt package lists when downloading " "index diffs instead of full indices." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:792 +#: apt.conf.5.xml:797 msgid "<literal>Debug::pkgAcquire::Worker</literal>" msgstr "<literal>Debug::pkgAcquire::Worker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:796 +#: apt.conf.5.xml:801 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:803 +#: apt.conf.5.xml:808 msgid "<literal>Debug::pkgAutoRemove</literal>" msgstr "<literal>Debug::pkgAutoRemove</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:807 +#: apt.conf.5.xml:812 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:814 +#: apt.conf.5.xml:819 msgid "<literal>Debug::pkgDepCache::AutoInstall</literal>" msgstr "<literal>Debug::pkgDepCache::AutoInstall</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:817 +#: apt.conf.5.xml:822 msgid "" "Generate debug messages describing which packages are being automatically " "installed to resolve dependencies. This corresponds to the initial auto-" @@ -7392,12 +7225,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:828 +#: apt.conf.5.xml:833 msgid "<literal>Debug::pkgDepCache::Marker</literal>" msgstr "<literal>Debug::pkgDepCache::Marker</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:831 +#: apt.conf.5.xml:836 msgid "" "Generate debug messages describing which package is marked as keep/install/" "remove while the ProblemResolver does his work. Each addition or deletion " @@ -7414,91 +7247,91 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:850 +#: apt.conf.5.xml:855 msgid "<literal>Debug::pkgInitConfig</literal>" msgstr "<literal>Debug::pkgInitConfig</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:853 +#: apt.conf.5.xml:858 msgid "Dump the default configuration to standard error on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:860 +#: apt.conf.5.xml:865 msgid "<literal>Debug::pkgDPkgPM</literal>" msgstr "<literal>Debug::pkgDPkgPM</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:863 +#: apt.conf.5.xml:868 msgid "" "When invoking &dpkg;, output the precise command line with which it is being " "invoked, with arguments separated by a single space character." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:871 +#: apt.conf.5.xml:876 msgid "<literal>Debug::pkgDPkgProgressReporting</literal>" msgstr "<literal>Debug::pkgDPkgProgressReporting</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:874 +#: apt.conf.5.xml:879 msgid "" "Output all the data received from &dpkg; on the status file descriptor and " "any errors encountered while parsing it." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:881 +#: apt.conf.5.xml:886 msgid "<literal>Debug::pkgOrderList</literal>" msgstr "<literal>Debug::pkgOrderList</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:885 +#: apt.conf.5.xml:890 msgid "" "Generate a trace of the algorithm that decides the order in which " "<literal>apt</literal> should pass packages to &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:893 +#: apt.conf.5.xml:898 msgid "<literal>Debug::pkgPackageManager</literal>" msgstr "<literal>Debug::pkgPackageManager</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:897 +#: apt.conf.5.xml:902 msgid "" "Output status messages tracing the steps performed when invoking &dpkg;." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:904 +#: apt.conf.5.xml:909 msgid "<literal>Debug::pkgPolicy</literal>" msgstr "<literal>Debug::pkgPolicy</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:908 +#: apt.conf.5.xml:913 msgid "Output the priority of each package list on startup." msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:914 +#: apt.conf.5.xml:919 msgid "<literal>Debug::pkgProblemResolver</literal>" msgstr "<literal>Debug::pkgProblemResolver</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:918 +#: apt.conf.5.xml:923 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:926 +#: apt.conf.5.xml:931 msgid "<literal>Debug::pkgProblemResolver::ShowScores</literal>" msgstr "<literal>Debug::pkgProblemResolver::ShowScores</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:929 +#: apt.conf.5.xml:934 msgid "" "Display a list of all installed packages with their calculated score used by " "the pkgProblemResolver. The description of the package is the same as " @@ -7506,12 +7339,12 @@ msgid "" msgstr "" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><term> -#: apt.conf.5.xml:937 +#: apt.conf.5.xml:942 msgid "<literal>Debug::sourceList</literal>" msgstr "<literal>Debug::sourceList</literal>" #. type: Content of: <refentry><refsect1><variablelist><varlistentry><listitem><para> -#: apt.conf.5.xml:941 +#: apt.conf.5.xml:946 msgid "" "Print information about the vendors read from <filename>/etc/apt/vendors." "list</filename>." @@ -7519,7 +7352,7 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:963 +#: apt.conf.5.xml:968 msgid "" "&configureindex; is a configuration file showing example values for all " "possible options." @@ -7529,16 +7362,15 @@ msgstr "" # type: Content of: <refentry><refsect1><para> #. type: Content of: <refentry><refsect1><variablelist> -#: apt.conf.5.xml:970 +#: apt.conf.5.xml:975 #, fuzzy -#| msgid "&apt-conf;" msgid "&file-aptconf;" msgstr "&apt-conf;" # type: Content of: <refentry><refsect1><para> #. ? reading apt.conf #. type: Content of: <refentry><refsect1><para> -#: apt.conf.5.xml:975 +#: apt.conf.5.xml:980 msgid "&apt-cache;, &apt-config;, &apt-preferences;." msgstr "&apt-cache;, &apt-config;, &apt-preferences;." @@ -7564,10 +7396,6 @@ msgstr "APT 設定制御ファイル" #. 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 " @@ -8802,7 +8630,6 @@ msgstr "" #. type: Content of: <refentry><refsect1><variablelist> #: apt_preferences.5.xml:617 #, fuzzy -#| msgid "apt_preferences" msgid "&file-preferences;" msgstr "apt_preferences" -- cgit v1.2.3 From ba00ddd633a9c7f1f04962a3b563fb7c98d7cf2e Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Tue, 1 Dec 2009 21:31:37 +0100 Subject: Simplified CHinese translation update --- debian/changelog | 2 + po/zh_CN.po | 465 ++++++++++++++++++++++++++++--------------------------- 2 files changed, 235 insertions(+), 232 deletions(-) diff --git a/debian/changelog b/debian/changelog index ce1f94078..6ffa8c33a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -17,6 +17,8 @@ apt (0.7.25) UNRELEASED; urgency=low Closes: #552606 * Italian translation update by Milo Casagrande Closes: #555797 + * Simplified Chinese translation update by Aron Xu + Closes: #558737 [ Michael Vogt ] * apt-pkg/packagemanager.cc: diff --git a/po/zh_CN.po b/po/zh_CN.po index e53f71554..753bba073 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,14 +3,15 @@ # Deng Xiyue <manphiz-guest@users.alioth.debian.org>, 2007, 2008. # Tchaikov <tchaikov@sjtu.org>, 2005, 2007. # Carlos Z.F. Liu <carlosliu@users.sourceforge.net>, 2004, 2006. +# Aron Xu <happyaron.xu@gmail.com>, 2009. # msgid "" msgstr "" "Project-Id-Version: apt\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-09-27 17:32+0200\n" -"PO-Revision-Date: 2009-06-01 15:54+0800\n" -"Last-Translator: Deng Xiyue <manphiz-guest@users.alioth.debian.org>\n" +"PO-Revision-Date: 2009-12-02 01:00+0800\n" +"Last-Translator: Aron Xu <happyaron.xu@gmail.com>\n" "Language-Team: Debian Chinese [GB] <debian-chinese-gb@lists.debian.org>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -50,7 +51,7 @@ msgstr " 混合虚拟软件包:" #: cmdline/apt-cache.cc:289 msgid " Missing: " -msgstr " 缺漏的:" +msgstr " 缺失:" #: cmdline/apt-cache.cc:291 msgid "Total distinct versions: " @@ -95,7 +96,7 @@ msgstr "总占用空间:" #: cmdline/apt-cache.cc:469 cmdline/apt-cache.cc:1221 #, c-format msgid "Package file %s is out of sync." -msgstr "软件包文件 %s 尚未同步(sync)。" +msgstr "软件包文件 %s 尚未同步。" #: cmdline/apt-cache.cc:1297 msgid "You must give exactly one pattern" @@ -103,7 +104,7 @@ msgstr "您必须明确地给出一个表达式" #: cmdline/apt-cache.cc:1451 msgid "No packages found" -msgstr "没有发现吻合的软件包" +msgstr "没有发现匹配的软件包" #: cmdline/apt-cache.cc:1528 msgid "Package files:" @@ -111,12 +112,12 @@ msgstr "软件包文件:" #: cmdline/apt-cache.cc:1535 cmdline/apt-cache.cc:1622 msgid "Cache is out of sync, can't x-ref a package file" -msgstr "缓存尚未同步(sync),无法交差引证(x-ref)一个软件包文件" +msgstr "缓存尚未同步,无法交差引证(x-ref)一个软件包文件" #. Show any packages have explicit pins #: cmdline/apt-cache.cc:1549 msgid "Pinned packages:" -msgstr "被锁定(pinned)的软件包:" +msgstr "被锁定的软件包:" #: cmdline/apt-cache.cc:1561 cmdline/apt-cache.cc:1602 msgid "(not found)" @@ -134,11 +135,11 @@ msgstr "(无)" #. Candidate Version #: cmdline/apt-cache.cc:1589 msgid " Candidate: " -msgstr " 候选的软件包:" +msgstr " 候选软件包:" #: cmdline/apt-cache.cc:1599 msgid " Package pin: " -msgstr " 软件包锁(Pin):" +msgstr " 软件包锁:" #. Show the priority tables #: cmdline/apt-cache.cc:1608 @@ -155,7 +156,7 @@ msgstr " %4i %s\n" #: cmdline/apt-get.cc:2651 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" +msgstr "%s %s,用于 %s 构架,编译于 %s %s\n" #: cmdline/apt-cache.cc:1725 msgid "" @@ -196,25 +197,25 @@ msgid "" "See the apt-cache(8) and apt.conf(5) manual pages for more information.\n" msgstr "" "用法: apt-cache [选项] 命令\n" -" apt-cache [选项] add 文件甲 [文件乙 ...]\n" -" apt-cache [选项] showpkg 软件包甲 [软件包乙 ...]\n" -" apt-cache [选项] showsrc 软件包甲 [软件包乙 ...]\n" +"    apt-cache [选项] add 文件1 [文件2 ...]\n" +"    apt-cache [选项] showpkg 软件包1 [软件包2 ...]\n" +"    apt-cache [选项] showsrc 软件包1 [软件包2 ...]\n" "\n" "apt-cache 是一个底层的工具,我们用它来操纵 APT 的二进制\n" "缓存文件,也用来在那些文件中查询相关信息\n" "\n" "命令:\n" -" add - 往源缓存加入一个软件包文件\n" -" gencaches - 一并生成软件包和源代码包的缓存\n" +" add - 向源缓存加入一个软件包文件\n" +" gencaches - 同时生成软件包和源代码包的缓存\n" " showpkg - 显示某个软件包的全面信息\n" " showsrc - 显示源文件的各项记录\n" -" stats - 显示一些基本的统计信息\n" +" stats - 显示基本的统计信息\n" " dump - 简要显示整个缓存文件的内容\n" " dumpavail - 把所有有效的包文件列表打印到标准输出\n" " unmet - 显示所有未满足的依赖关系\n" " search - 根据正则表达式搜索软件包列表\n" " show - 以便于阅读的格式介绍该软件包\n" -" depends - 原原本本地显示该软件包的依赖信息\n" +" depends - 显示该软件包的依赖关系信息\n" " rdepends - 显示所有依赖于该软件包的软件包名字\n" " pkgnames - 列出所有软件包的名字\n" " dotty - 生成可用 GraphViz 处理的软件包关系图\n" @@ -232,17 +233,16 @@ msgstr "" "若要了解更多信息,您还可以查阅 apt-cache(8) 和 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 "请给这张光盘起个名字,比如说“Debian 2.1r1 Disk 1”" +msgstr "请给这张盘片起个名字,比如“Debian 5.0.3 Disk 1”" #: cmdline/apt-cdrom.cc:92 msgid "Please insert a Disc in the drive and press enter" -msgstr "请把光盘碟片插入驱动器再按回车键" +msgstr "请把盘片插入驱动器再按回车键" #: cmdline/apt-cdrom.cc:114 msgid "Repeat this process for the rest of the CDs in your set." -msgstr "请对您的光盘套件中的其它光盘重复相同的操作。" +msgstr "请对您的盘片套件中的其它盘片重复相同的操作。" #: cmdline/apt-config.cc:41 msgid "Arguments not in pairs" @@ -265,7 +265,7 @@ msgid "" msgstr "" "用法:apt-config [选项] 命令\n" "\n" -"apt-config 是一个用于读取 APT 配置文件的简单工具\n" +"apt-config 是一个用于读取APT 配置文件的简单工具\n" "\n" "命令:\n" " shell - Shell 模式\n" @@ -312,11 +312,11 @@ msgstr "无法写入 %s" #: cmdline/apt-extracttemplates.cc:310 msgid "Cannot get debconf version. Is debconf installed?" -msgstr "无法获得 debconf 的版本。您安装了 debconf 吗?" +msgstr "无法获得 debconf 的版本。您安装了 debconf 吗?" #: ftparchive/apt-ftparchive.cc:164 ftparchive/apt-ftparchive.cc:338 msgid "Package extension list is too long" -msgstr "软件包的扩展列表超长" +msgstr "软件包的扩展列表太长" #: ftparchive/apt-ftparchive.cc:166 ftparchive/apt-ftparchive.cc:180 #: ftparchive/apt-ftparchive.cc:203 ftparchive/apt-ftparchive.cc:253 @@ -327,16 +327,16 @@ msgstr "处理目录 %s 时出错" #: ftparchive/apt-ftparchive.cc:251 msgid "Source extension list is too long" -msgstr "源扩展列表超长" +msgstr "源扩展列表太长" #: ftparchive/apt-ftparchive.cc:368 msgid "Error writing header to contents file" -msgstr "将 header 写到 contents 文件时出错" +msgstr "将头写入到目录文件时出错" #: ftparchive/apt-ftparchive.cc:398 #, c-format msgid "Error processing contents %s" -msgstr "处理 Contents %s 时出错" +msgstr "处理目录 %s 时出错" #: ftparchive/apt-ftparchive.cc:553 msgid "" @@ -430,38 +430,38 @@ msgstr "软件包文件组“%s”中缺少一些文件" #: ftparchive/cachedb.cc:43 #, c-format msgid "DB was corrupted, file renamed to %s.old" -msgstr "缓存数据库被损坏了,该数据库文件的文件名已改成 %s.old" +msgstr "数据库被损坏,该数据库文件的文件名已改成 %s.old" #: ftparchive/cachedb.cc:61 #, c-format msgid "DB is old, attempting to upgrade %s" -msgstr "DB 已过时,现试图进行升级 %s" +msgstr "数据库已过期,现尝试进行升级 %s" #: ftparchive/cachedb.cc:72 msgid "" "DB format is invalid. If you upgraded from a older version of apt, please " "remove and re-create the database." msgstr "" -"DB 格式是无效的。如果你是从一个老版本的 apt 升级而来,请删除数据库并重建它。" +"数据库格式无效。如果您是从一个老版本的 apt 升级而来,请删除数据库并重建它。" #: ftparchive/cachedb.cc:77 #, c-format msgid "Unable to open DB file %s: %s" -msgstr "无法打开 DB 文件 %s:%s" +msgstr "无法打开数据库文件 %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 "无法读取 %s 的状态" +msgstr "无法获得 %s 的状态" #: ftparchive/cachedb.cc:238 msgid "Archive has no control record" -msgstr "存档没有包含控制字段" +msgstr "归档文件没有包含控制字段" #: ftparchive/cachedb.cc:444 msgid "Unable to get a cursor" -msgstr "无法获得游标(cursor)" +msgstr "无法获得游标" #: ftparchive/writer.cc:76 #, c-format @@ -471,7 +471,7 @@ msgstr "警告:无法读取目录 %s\n" #: ftparchive/writer.cc:81 #, c-format msgid "W: Unable to stat %s\n" -msgstr "警告:无法对 %s 进行统计\n" +msgstr "警告:无法获得 %s 的状态\n" #: ftparchive/writer.cc:132 msgid "E: " @@ -488,7 +488,7 @@ msgstr "错误:处理文件时出错 " #: ftparchive/writer.cc:158 ftparchive/writer.cc:188 #, c-format msgid "Failed to resolve %s" -msgstr "无法解析路径 %s" +msgstr "无法解析 %s" #: ftparchive/writer.cc:170 msgid "Tree walking failed" @@ -512,7 +512,7 @@ msgstr "无法读取符号链接 %s" #: ftparchive/writer.cc:266 #, c-format msgid "Failed to unlink %s" -msgstr "无法 unlink %s" +msgstr "无法使用 unlink 删除 %s" #: ftparchive/writer.cc:273 #, c-format @@ -526,7 +526,7 @@ msgstr " 达到了 DeLink 的上限 %sB。\n" #: ftparchive/writer.cc:387 msgid "Archive had no package field" -msgstr "存档没有包含软件包(package)字段" +msgstr "归档文件没有包含 package 字段" #: ftparchive/writer.cc:395 ftparchive/writer.cc:610 #, c-format @@ -555,7 +555,7 @@ msgstr "内部错误,无法定位包内文件 %s" #: ftparchive/contents.cc:358 ftparchive/contents.cc:389 msgid "realloc - Failed to allocate memory" -msgstr "realloc - 无法再分配内存" +msgstr "realloc - 分配内存失败" #: ftparchive/override.cc:34 ftparchive/override.cc:142 #, c-format @@ -611,11 +611,11 @@ msgstr "压缩子进程" #: ftparchive/multicompress.cc:235 #, c-format msgid "Internal error, failed to create %s" -msgstr "内部错误,无法建立 %s" +msgstr "内部错误,无法创建 %s" #: ftparchive/multicompress.cc:286 msgid "Failed to create subprocess IPC" -msgstr "无法建立子进程的 IPC 管道" +msgstr "无法创建子进程的 IPC 管道" #: ftparchive/multicompress.cc:321 msgid "Failed to exec compressor " @@ -631,12 +631,12 @@ msgstr "无法对子进程或文件进行读写" #: ftparchive/multicompress.cc:455 msgid "Failed to read while computing MD5" -msgstr "在计算 MD5 校验和时,无法读取数据" +msgstr "在计算 MD5 校验和时无法读取数据" #: ftparchive/multicompress.cc:472 #, c-format msgid "Problem unlinking %s" -msgstr "在 unlink %s 时出错" +msgstr "在使用 unlink 删除 %s 时出错" #: ftparchive/multicompress.cc:487 apt-inst/extract.cc:185 #, c-format @@ -654,12 +654,12 @@ msgstr "编译正则表达式时出错 - %s" #: cmdline/apt-get.cc:244 msgid "The following packages have unmet dependencies:" -msgstr "下列的软件包有不能满足的依赖关系:" +msgstr "下列软件包有未满足的依赖关系:" #: cmdline/apt-get.cc:334 #, c-format msgid "but %s is installed" -msgstr "但是 %s 已经安装了" +msgstr "但是 %s 已经安装" #: cmdline/apt-get.cc:336 #, c-format @@ -668,11 +668,11 @@ msgstr "但是 %s 正要被安装" #: cmdline/apt-get.cc:343 msgid "but it is not installable" -msgstr "但却无法安装它" +msgstr "但无法安装它" #: cmdline/apt-get.cc:345 msgid "but it is a virtual package" -msgstr "但是它只是个虚拟软件包" +msgstr "但是它是虚拟软件包" #: cmdline/apt-get.cc:348 msgid "but it is not installed" @@ -696,11 +696,11 @@ msgstr "下列软件包将被【卸载】:" #: cmdline/apt-get.cc:430 msgid "The following packages have been kept back:" -msgstr "下列的软件包的版本将保持不变:" +msgstr "下列软件包的版本将保持不变:" #: cmdline/apt-get.cc:451 msgid "The following packages will be upgraded:" -msgstr "下列的软件包将被升级:" +msgstr "下列软件包将被升级:" #: cmdline/apt-get.cc:472 msgid "The following packages will be DOWNGRADED:" @@ -720,18 +720,18 @@ msgid "" "WARNING: The following essential packages will be removed.\n" "This should NOT be done unless you know exactly what you are doing!" msgstr "" -"【警告】:下列的基础软件包将被卸载。\n" +"【警告】:下列基础软件包将被卸载。\n" "请勿尝试,除非您确实知道您在做什么!" #: cmdline/apt-get.cc:584 #, c-format msgid "%lu upgraded, %lu newly installed, " -msgstr "共升级了 %lu 个软件包,新安装了 %lu 个软件包," +msgstr "升级了 %lu 个软件包,新安装了 %lu 个软件包," #: cmdline/apt-get.cc:588 #, c-format msgid "%lu reinstalled, " -msgstr "共重新安装了 %lu 个软件包," +msgstr "重新安装了 %lu 个软件包," #: cmdline/apt-get.cc:590 #, c-format @@ -741,7 +741,7 @@ msgstr "降级了 %lu 个软件包," #: cmdline/apt-get.cc:592 #, c-format msgid "%lu to remove and %lu not upgraded.\n" -msgstr "要卸载 %lu 个软件包,有 %lu 个软件未被升级。\n" +msgstr "要卸载 %lu 个软件包,有 %lu 个软件包未被升级。\n" #: cmdline/apt-get.cc:596 #, c-format @@ -770,7 +770,7 @@ msgstr " 完成" #: cmdline/apt-get.cc:684 msgid "You might want to run `apt-get -f install' to correct these." -msgstr "您也许需要运行“apt-get -f install”来纠正上面的错误。" +msgstr "您也许需要运行“apt-get -f install”来修正上面的错误。" #: cmdline/apt-get.cc:687 msgid "Unmet dependencies. Try using -f." @@ -778,7 +778,7 @@ msgstr "不能满足依赖关系。不妨试一下 -f 选项。" #: cmdline/apt-get.cc:712 msgid "WARNING: The following packages cannot be authenticated!" -msgstr "【警告】:下列的软件包不能通过验证!" +msgstr "【警告】:下列软件包不能通过验证!" #: cmdline/apt-get.cc:716 msgid "Authentication warning overridden.\n" @@ -786,7 +786,7 @@ msgstr "忽略了认证警告。\n" #: cmdline/apt-get.cc:723 msgid "Install these packages without verification [y/N]? " -msgstr "不经验证就安装这些软件包么?[y/N] " +msgstr "不经验证就安装这些软件包吗?[y/N] " #: cmdline/apt-get.cc:725 msgid "Some packages could not be authenticated" @@ -810,16 +810,16 @@ msgstr "内部错误,Ordering 未能完成" #: cmdline/apt-get.cc:811 cmdline/apt-get.cc:2062 cmdline/apt-get.cc:2095 msgid "Unable to lock the download directory" -msgstr "无法对下载目录加锁" +msgstr "无法锁定下载目录" #: cmdline/apt-get.cc:821 cmdline/apt-get.cc:2143 cmdline/apt-get.cc:2392 #: apt-pkg/cachefile.cc:65 msgid "The list of sources could not be read." -msgstr "无法读取安装源列表。" +msgstr "无法读取源列表。" #: cmdline/apt-get.cc:836 msgid "How odd.. The sizes didn't match, email apt@packages.debian.org" -msgstr "怪了……文件大小不符,发信给 apt@packages.debian.org 吧" +msgstr "怪了……文件大小不符,请发信给 apt@packages.debian.org 吧" #: cmdline/apt-get.cc:841 #, c-format @@ -844,20 +844,20 @@ msgstr "解压缩后将会空出 %sB 的空间。\n" #: cmdline/apt-get.cc:866 cmdline/apt-get.cc:2238 #, c-format msgid "Couldn't determine free space in %s" -msgstr "无法获知您在 %s 上的空余空间" +msgstr "无法获知您在 %s 上的可用空间" #: cmdline/apt-get.cc:876 #, c-format msgid "You don't have enough free space in %s." -msgstr "您在 %s 中没有足够的空余空间。" +msgstr "您在 %s 上没有足够的可用空间。" #: cmdline/apt-get.cc:892 cmdline/apt-get.cc:912 msgid "Trivial Only specified but this is not a trivial operation." -msgstr "虽然您指定了 Trivial Only,但这不是个日常(trivial)操作。" +msgstr "虽然您指定了仅执行常规操作,但这不是个常规操作。" #: cmdline/apt-get.cc:894 msgid "Yes, do as I say!" -msgstr "Yes, do as I say!" +msgstr "是,按我说的做!" #: cmdline/apt-get.cc:896 #, c-format @@ -885,7 +885,7 @@ msgstr "无法下载 %s %s\n" #: cmdline/apt-get.cc:1007 msgid "Some files failed to download" -msgstr "有一些文件下载失败" +msgstr "有一些文件无法下载" #: cmdline/apt-get.cc:1008 cmdline/apt-get.cc:2298 msgid "Download complete and in download only mode" @@ -901,7 +901,7 @@ msgstr "" #: cmdline/apt-get.cc:1018 msgid "--fix-missing and media swapping is not currently supported" -msgstr "目前还不支持 --fix-missing 和介质交换(media swapping)" +msgstr "目前还不支持 --fix-missing 和介质交换" #: cmdline/apt-get.cc:1023 msgid "Unable to correct missing packages." @@ -909,7 +909,7 @@ msgstr "无法更正缺少的软件包。" #: cmdline/apt-get.cc:1024 msgid "Aborting install." -msgstr "放弃安装。" +msgstr "中止安装。" #: cmdline/apt-get.cc:1082 #, c-format @@ -952,7 +952,7 @@ msgstr "" #: cmdline/apt-get.cc:1163 msgid "However the following packages replace it:" -msgstr "可是下列的软件包取代了它:" +msgstr "可是下列软件包取代了它:" #: cmdline/apt-get.cc:1166 #, c-format @@ -987,11 +987,11 @@ msgstr "选定了版本为 %s (%s) 的 %s\n" #: cmdline/apt-get.cc:1348 #, c-format msgid "No source package '%s' picking '%s' instead\n" -msgstr "" +msgstr "没有源代码包“%s”,使用“%s”代替\n" #: cmdline/apt-get.cc:1385 msgid "The update command takes no arguments" -msgstr " update 命令是不需任何参数的" +msgstr " update 命令不需要参数" #: cmdline/apt-get.cc:1398 msgid "Unable to lock the list directory" @@ -1005,12 +1005,12 @@ msgstr "我们不应该进行删除,无法启动自动删除器" msgid "" "The following packages were automatically installed and are no longer " "required:" -msgstr "下列软件包是自动安装的并且现在不再被使用了:" +msgstr "下列软件包是自动安装的并且现在不需要了:" #: cmdline/apt-get.cc:1505 -#, fuzzy, c-format +#, c-format msgid "%lu packages were automatically installed and are no longer required.\n" -msgstr "下列软件包是自动安装的并且现在不再被使用了:" +msgstr "%lu 个自动安装的的软件包现在不需要了\n" #: cmdline/apt-get.cc:1506 msgid "Use 'apt-get autoremove' to remove them." @@ -1020,7 +1020,7 @@ msgstr "使用'apt-get autoremove'来删除它们" msgid "" "Hmm, seems like the AutoRemover destroyed something which really\n" "shouldn't happen. Please file a bug report against apt." -msgstr "似乎自动删除器毁掉了一些软件,这不应该发生。请向 apt 提交错误报告。" +msgstr "似乎自动删除工具损坏了一些软件,这不应该发生。请向 apt 提交错误报告。" #. #. if (Packages == 1) @@ -1034,15 +1034,15 @@ msgstr "似乎自动删除器毁掉了一些软件,这不应该发生。请向 #. #: cmdline/apt-get.cc:1514 cmdline/apt-get.cc:1804 msgid "The following information may help to resolve the situation:" -msgstr "下列的信息可能会对解决问题有所帮助:" +msgstr "下列信息可能会对解决问题有所帮助:" #: cmdline/apt-get.cc:1518 msgid "Internal Error, AutoRemover broke stuff" -msgstr "内部错误,自动删除器坏事了" +msgstr "内部错误,自动删除工具坏事了" #: cmdline/apt-get.cc:1537 msgid "Internal error, AllUpgrade broke stuff" -msgstr "内部错误,全部升级坏事了" +msgstr "内部错误,全部升级工具坏事了" #: cmdline/apt-get.cc:1592 #, c-format @@ -1083,13 +1083,13 @@ msgid "" "distribution that some required packages have not yet been created\n" "or been moved out of Incoming." msgstr "" -"有一些软件包无法被安装。如果您用的是不稳定(unstable)发行版,这也许是\n" +"有一些软件包无法被安装。如果您用的是 unstable 发行版,这也许是\n" "因为系统无法达到您要求的状态造成的。该版本中可能会有一些您需要的软件\n" -"包尚未被创建或是它们还在新到(incoming)目录中。" +"包尚未被创建或是它们已被从新到(Incoming)目录移出。" #: cmdline/apt-get.cc:1807 msgid "Broken packages" -msgstr "无法安装的软件包" +msgstr "破损的软件包" #: cmdline/apt-get.cc:1836 msgid "The following extra packages will be installed:" @@ -1105,7 +1105,7 @@ msgstr "推荐安装的软件包:" #: cmdline/apt-get.cc:1955 msgid "Calculating upgrade... " -msgstr "正在筹划升级... " +msgstr "正在对升级进行计算... " #: cmdline/apt-get.cc:1958 methods/ftp.cc:707 methods/connect.cc:112 msgid "Failed" @@ -1117,7 +1117,7 @@ msgstr "完成" #: cmdline/apt-get.cc:2030 cmdline/apt-get.cc:2038 msgid "Internal error, problem resolver broke stuff" -msgstr "内部错误,问题解决器坏事了" +msgstr "内部错误,问题解决工具坏事了" #: cmdline/apt-get.cc:2138 msgid "Must specify at least one package to fetch source for" @@ -1136,7 +1136,7 @@ msgstr "忽略已下载过的文件“%s”\n" #: cmdline/apt-get.cc:2248 #, c-format msgid "You don't have enough free space in %s" -msgstr "您在 %s 上没有足够的空余空间" +msgstr "您在 %s 上没有足够的可用空间" #: cmdline/apt-get.cc:2254 #, c-format @@ -1160,7 +1160,7 @@ msgstr "有一些包文件无法下载。" #: cmdline/apt-get.cc:2322 #, c-format msgid "Skipping unpack of already unpacked source in %s\n" -msgstr "对于已经被解包到 %s 目录的源代码包就不再解开了\n" +msgstr "忽略已经被解包到 %s 目录的源代码包\n" #: cmdline/apt-get.cc:2334 #, c-format @@ -1183,12 +1183,12 @@ msgstr "子进程出错" #: cmdline/apt-get.cc:2387 msgid "Must specify at least one package to check builddeps for" -msgstr "要检查生成软件包的构建依赖关系(builddeps),必须指定至少一个软件包" +msgstr "要检查生成软件包的构建依赖关系,必须指定至少一个软件包" #: cmdline/apt-get.cc:2415 #, c-format msgid "Unable to get build-dependency information for %s" -msgstr "无法获得 %s 的构建依赖关系(build-dependency)信息" +msgstr "无法获得 %s 的构建依赖关系信息" #: cmdline/apt-get.cc:2435 #, c-format @@ -1214,7 +1214,7 @@ msgstr "" #: cmdline/apt-get.cc:2576 #, c-format msgid "Failed to satisfy %s dependency for %s: Installed package %s is too new" -msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:已安装的软件包 %3$s 太新了" +msgstr "无法满足 %2$s 所要求 %1$s 依赖关系:已安装的软件包 %3$s 太新" #: cmdline/apt-get.cc:2603 #, c-format @@ -1232,10 +1232,9 @@ msgstr "无法处理构建依赖关系" #: cmdline/apt-get.cc:2656 msgid "Supported modules:" -msgstr "被支持模块:" +msgstr "支持的模块:" #: cmdline/apt-get.cc:2697 -#, fuzzy msgid "" "Usage: apt-get [options] command\n" " apt-get [options] install|remove pkg1 [pkg2 ...]\n" @@ -1279,8 +1278,8 @@ msgid "" " This APT has Super Cow Powers.\n" msgstr "" "用法: apt-get [选项] 命令\n" -" apt-get [选项] install|remove 软件包1 [软件包2 ...]\n" -" apt-get [选项] source 软件包1 [软件包2 ...]\n" +"    apt-get [选项] install|remove 软件包1 [软件包2 ...]\n" +"    apt-get [选项] source 软件包1 [软件包2 ...]\n" "\n" "apt-get 提供了一个用于下载和安装软件包的简易命令行界面。\n" "最常用命令是 update 和 install。\n" @@ -1307,8 +1306,8 @@ msgstr "" " -d 仅仅下载 - 【不】安装或解开包文件\n" " -s 不作实际操作。只是依次模拟执行命令\n" " -y 对所有询问都回答是(Yes),同时不作任何提示\n" -" -f 当出现破损的依赖关系时,程序将试图修正系统\n" -" -m 当有包文件无法找到时,程序仍试图继续执行\n" +" -f 当出现破损的依赖关系时,程序将尝试修正系统\n" +" -m 当有包文件无法找到时,程序仍尝试继续执行\n" " -u 显示已升级的软件包列表\n" " -b 在下载完源码包后,编译生成相应的软件包\n" " -V 显示详尽的版本号\n" @@ -1316,7 +1315,7 @@ msgstr "" " -o=? 设置任意指定的配置选项,例如 -o dir::cache=/tmp\n" "请查阅 apt-get(8)、sources.list(5) 和 apt.conf(5)的参考手册\n" "以获取更多信息和选项。\n" -" 本 APT 有着超级牛力。\n" +" 本 APT 具有超级牛力。\n" #: cmdline/apt-get.cc:2864 msgid "" @@ -1325,6 +1324,9 @@ msgid "" " Keep also in mind that locking is deactivated,\n" " so don't depend on the relevance to the real current situation!" msgstr "" +"注意:这只是模拟!\n" +"   apt-get 需要 root 特权进行实际的执行。\n" +"   同时请记住此时并未锁定,所以请勿完全相信当前的情况!" #: cmdline/acqprogress.cc:55 msgid "Hit " @@ -1361,7 +1363,7 @@ msgid "" msgstr "" "更换介质:请把标有\n" "“%s”\n" -"的碟片插入驱动器“%s”再按回车键\n" +"的盘片插入驱动器“%s”再按回车键\n" #: cmdline/apt-sortpkgs.cc:86 msgid "Unknown package record!" @@ -1405,14 +1407,12 @@ msgid "Do you want to erase any previously downloaded .deb files?" msgstr "您想要删除之前下载的所有 .deb 文件吗?" #: dselect/install:101 -#, fuzzy msgid "Some errors occurred while unpacking. Packages that were installed" -msgstr "在解包时发生了一些错误。我正准备配置" +msgstr "在解包时发生了一些错误。已经安装的软件包" #: dselect/install:102 -#, fuzzy msgid "will be configured. This may result in duplicate errors" -msgstr "已经安装的软件包。这个操作可能会导致出现重复的错误" +msgstr "将被配置。这个操作可能会导致出现重复的错误" #: dselect/install:103 msgid "or errors caused by missing dependencies. This is OK, only the errors" @@ -1425,7 +1425,7 @@ msgstr "这个提示之前的错误消息才值得您注意。请更正它们, #: dselect/update:30 msgid "Merging available information" -msgstr "正在合并现有信息" +msgstr "正在合并可用信息" #: apt-inst/contrib/extracttar.cc:114 msgid "Failed to create pipes" @@ -1441,7 +1441,7 @@ msgstr "包文件已被损坏" #: apt-inst/contrib/extracttar.cc:193 msgid "Tar checksum failed, archive corrupted" -msgstr "tar 的校验码不符,包文件已被损坏" +msgstr "Tar 的校验和不符,文件已损坏" #: apt-inst/contrib/extracttar.cc:296 #, c-format @@ -1450,28 +1450,28 @@ msgstr "未知的 TAR 数据头类型 %u,成员 %s" #: apt-inst/contrib/arfile.cc:70 msgid "Invalid archive signature" -msgstr "无效的打包文件特征号(signature)" +msgstr "无效的归档签名" #: apt-inst/contrib/arfile.cc:78 msgid "Error reading archive member header" -msgstr "读取打包文件中的成员文件头出错" +msgstr "读取归档成员文件头出错" #: apt-inst/contrib/arfile.cc:90 -#, fuzzy, c-format +#, c-format msgid "Invalid archive member header %s" -msgstr "打包文件中成员文件头无效" +msgstr "归档文件中成员文件头 %s 无效" #: apt-inst/contrib/arfile.cc:102 msgid "Invalid archive member header" -msgstr "打包文件中成员文件头无效" +msgstr "归档文件中成员文件头无效" #: apt-inst/contrib/arfile.cc:128 msgid "Archive is too short" -msgstr "存档太短了" +msgstr "归档文件太短" #: apt-inst/contrib/arfile.cc:132 msgid "Failed to read the archive headers" -msgstr "无法读取打包文件的数据头" +msgstr "无法读取归档文件的数据头" #: apt-inst/filelist.cc:380 msgid "DropNode called on still linked node" @@ -1479,11 +1479,11 @@ msgstr "把 DropNode 用在了仍在链表中的节点上" #: apt-inst/filelist.cc:412 msgid "Failed to locate the hash element!" -msgstr "无法分配散列表项!" +msgstr "无法定位哈希表元素!" #: apt-inst/filelist.cc:459 msgid "Failed to allocate diversion" -msgstr "无法分配转移项(diversion)" +msgstr "无法分配转移项" #: apt-inst/filelist.cc:464 msgid "Internal error in AddDiversion" @@ -1492,12 +1492,12 @@ msgstr "内部错误,出现在 AddDiversion" #: apt-inst/filelist.cc:477 #, c-format msgid "Trying to overwrite a diversion, %s -> %s and %s/%s" -msgstr "试图覆盖一个转移项(diversion),%s -> %s 即 %s/%s" +msgstr "尝试覆盖一个转移项,%s -> %s 和 %s/%s" #: apt-inst/filelist.cc:506 #, c-format msgid "Double add of diversion %s -> %s" -msgstr "添加了两个转移项(diversion) %s-> %s" +msgstr "添加了两个转移项 %s-> %s" #: apt-inst/filelist.cc:549 #, c-format @@ -1517,7 +1517,7 @@ msgstr "无法关闭文件 %s" #: apt-inst/extract.cc:93 apt-inst/extract.cc:164 #, c-format msgid "The path %s is too long" -msgstr "路径名 %s 过长" +msgstr "路径名 %s 太长" #: apt-inst/extract.cc:124 #, c-format @@ -1527,16 +1527,16 @@ msgstr "%s 被解包了不只一次" #: apt-inst/extract.cc:134 #, c-format msgid "The directory %s is diverted" -msgstr "目录 %s 已被转移(diverted)" +msgstr "目录 %s 已被转移" #: apt-inst/extract.cc:144 #, c-format msgid "The package is trying to write to the diversion target %s/%s" -msgstr "该软件包正尝试写入转移对象(diversion target) %s/%s" +msgstr "该软件包正尝试写入转移对象 %s/%s" #: apt-inst/extract.cc:154 apt-inst/extract.cc:297 msgid "The diversion path is too long" -msgstr "该转移路径(diversion path)过长" +msgstr "该转移路径太长" #: apt-inst/extract.cc:240 #, c-format @@ -1545,11 +1545,11 @@ msgstr "目录 %s 要被一个非目录的文件替换" #: apt-inst/extract.cc:280 msgid "Failed to locate node in its hash bucket" -msgstr "无法在其散列桶(hash bucket)中分配节点" +msgstr "无法在其散列桶中分配节点" #: apt-inst/extract.cc:284 msgid "The path is too long" -msgstr "路径名过长" +msgstr "路径名太长" #: apt-inst/extract.cc:414 #, c-format @@ -1624,8 +1624,8 @@ msgid "" "then make it empty and immediately re-install the same version of the " "package!" msgstr "" -"无法打开列表文件“%sinfo/%s”。如果您不能恢复这个文件,那么就清空该文件,再马上" -"重新安装相同版本的这个软件包!" +"无法打开列表文件“%sinfo/%s”。如果您不能恢复这个文件,那么就清空该文件并马上重" +"新安装相同版本的这个软件包!" #: apt-inst/deb/dpkgdb.cc:225 apt-inst/deb/dpkgdb.cc:238 #, c-format @@ -1639,11 +1639,11 @@ msgstr "获得一个节点时出现内部错误" #: apt-inst/deb/dpkgdb.cc:305 #, c-format msgid "Failed to open the diversions file %sdiversions" -msgstr "无法打开转移配置文件(diversions file) %sdiversions" +msgstr "无法打开转移配置文件 %sdiversions" #: apt-inst/deb/dpkgdb.cc:320 msgid "The diversion file is corrupted" -msgstr "该转移配置文件(diversion file)被损坏了" +msgstr "该转移配置文件被损坏了" #: apt-inst/deb/dpkgdb.cc:327 apt-inst/deb/dpkgdb.cc:332 #: apt-inst/deb/dpkgdb.cc:337 @@ -1653,7 +1653,7 @@ msgstr "转移配置文件中有一行是无效的:%s" #: apt-inst/deb/dpkgdb.cc:358 msgid "Internal error adding a diversion" -msgstr "添加 diversion 时出现内部错误" +msgstr "添加转移配置时出现内部错误" #: apt-inst/deb/dpkgdb.cc:379 msgid "The pkg cache must be initialized first" @@ -1672,7 +1672,7 @@ msgstr "状态文件中有错误的 ConfFile 段。位于偏移位置 %lu" #: apt-inst/deb/dpkgdb.cc:466 #, c-format msgid "Error parsing MD5. Offset %lu" -msgstr "无法解析 MD5 码。文件内偏移量为 %lu" +msgstr "解析 MD5 出错。文件内偏移量为 %lu" #: apt-inst/deb/debfile.cc:38 apt-inst/deb/debfile.cc:43 #, c-format @@ -1695,7 +1695,7 @@ msgstr "内部错误,无法定位包内文件" #: apt-inst/deb/debfile.cc:173 msgid "Failed to locate a valid control file" -msgstr "无法在打包文件中找到有效的主控文件" +msgstr "无法在归档文件中找到有效的主控文件" #: apt-inst/deb/debfile.cc:258 msgid "Unparsable control file" @@ -1704,19 +1704,19 @@ msgstr "不能解析的主控文件" #: methods/cdrom.cc:200 #, c-format msgid "Unable to read the cdrom database %s" -msgstr "无法读取光盘数据库 %s" +msgstr "无法读取盘片数据库 %s" #: methods/cdrom.cc:209 msgid "" "Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update " "cannot be used to add new CD-ROMs" msgstr "" -"请使用 apt-cdrom,通过它就可以让 APT 能识别该光盘。apt-get upgdate 不能被用来" -"加入新的光盘。" +"请使用 apt-cdrom,通过它就可以让 APT 能识别该盘片。apt-get upgdate 不能被用来" +"加入新的盘片。" #: methods/cdrom.cc:219 msgid "Wrong CD-ROM" -msgstr "错误的光盘" +msgstr "错误的 CD-ROM" #: methods/cdrom.cc:245 #, c-format @@ -1725,7 +1725,7 @@ msgstr "无法卸载现在挂载于 %s 的 CD-ROM,它可能正在使用中。" #: methods/cdrom.cc:250 msgid "Disk not found." -msgstr "找不到光盘。" +msgstr "找不到盘片。" #: methods/cdrom.cc:258 methods/file.cc:79 methods/rsh.cc:264 msgid "File not found" @@ -1760,17 +1760,17 @@ msgstr "无法获知本地主机名" #: methods/ftp.cc:209 methods/ftp.cc:237 #, c-format msgid "The server refused the connection and said: %s" -msgstr "服务器拒绝了我们的连接,它响应道:%s" +msgstr "服务器拒绝了我们的连接,响应信息为:%s" #: methods/ftp.cc:215 #, c-format msgid "USER failed, server said: %s" -msgstr "USER 指令出错,服务器响应道:%s" +msgstr "USER 指令出错,服务器响应信息为:%s" #: methods/ftp.cc:222 #, c-format msgid "PASS failed, server said: %s" -msgstr "PASS 指令出错,服务器响应道:%s" +msgstr "PASS 指令出错,服务器响应信息为:%s" #: methods/ftp.cc:242 msgid "" @@ -1782,12 +1782,12 @@ msgstr "" #: methods/ftp.cc:270 #, c-format msgid "Login script command '%s' failed, server said: %s" -msgstr "登录脚本命令“%s”出错,服务器响应道:%s" +msgstr "登录脚本命令“%s”出错,服务器响应信息为:%s" #: methods/ftp.cc:296 #, c-format msgid "TYPE failed, server said: %s" -msgstr "TYPE 指令出错,服务器响应道:%s" +msgstr "TYPE 指令出错,服务器响应信息为:%s" #: methods/ftp.cc:334 methods/ftp.cc:445 methods/rsh.cc:183 methods/rsh.cc:226 msgid "Connection timeout" @@ -1811,11 +1811,11 @@ msgstr "协议有误" #: methods/ftp.cc:451 apt-pkg/contrib/fileutl.cc:582 methods/rsh.cc:232 msgid "Write error" -msgstr "写文件出错" +msgstr "写出错" #: methods/ftp.cc:692 methods/ftp.cc:698 methods/ftp.cc:734 msgid "Could not create a socket" -msgstr "不能创建套接字" +msgstr "无法创建套接字" #: methods/ftp.cc:703 msgid "Could not connect data socket, connection timed out" @@ -1827,7 +1827,7 @@ msgstr "无法连接被动模式的套接字。" #: methods/ftp.cc:727 msgid "getaddrinfo was unable to get a listening socket" -msgstr "getaddrinfo 无法得到侦听套接字" +msgstr "getaddrinfo 无法得到监听套接字" #: methods/ftp.cc:741 msgid "Could not bind a socket" @@ -1835,7 +1835,7 @@ msgstr "无法绑定套接字" #: methods/ftp.cc:745 msgid "Could not listen on the socket" -msgstr "无法在套接字上侦听" +msgstr "无法在套接字上监听" #: methods/ftp.cc:752 msgid "Could not determine the socket's name" @@ -1853,7 +1853,7 @@ msgstr "无法识别的地址族 %u (AF_*)" #: methods/ftp.cc:803 #, c-format msgid "EPRT failed, server said: %s" -msgstr "EPRT 指令出错,服务器响应道:%s" +msgstr "EPRT 指令出错,服务器响应信息为:%s" #: methods/ftp.cc:823 msgid "Data socket connect timed out" @@ -1865,12 +1865,12 @@ msgstr "无法接受连接" #: methods/ftp.cc:869 methods/http.cc:996 methods/rsh.cc:303 msgid "Problem hashing file" -msgstr "把文件加入散列表时出错" +msgstr "把文件加入哈希表时出错" #: methods/ftp.cc:882 #, c-format msgid "Unable to fetch file, server said '%s'" -msgstr "无法获取文件,服务器响应道“%s”" +msgstr "无法获取文件,服务器响应信息为“%s”" #: methods/ftp.cc:897 methods/rsh.cc:322 msgid "Data socket timed out" @@ -1879,7 +1879,7 @@ msgstr "数据套接字超时" #: methods/ftp.cc:927 #, c-format msgid "Data transfer failed, server said '%s'" -msgstr "数据传送出错,服务器响应道“%s”" +msgstr "数据传送出错,服务器响应信息为“%s”" #. Get the files information #: methods/ftp.cc:1002 @@ -1940,26 +1940,26 @@ msgstr "暂时不能解析域名“%s”" #: methods/connect.cc:193 #, c-format msgid "Something wicked happened resolving '%s:%s' (%i)" -msgstr "解析“%s:%s”时,出现了某些故障 (%i)" +msgstr "解析“%s:%s”时,出现了某些故障(%i)" #: methods/connect.cc:240 -#, fuzzy, c-format +#, c-format msgid "Unable to connect to %s:%s:" -msgstr "不能连接上 %s %s:" +msgstr "不能连接到 %s:%s:" #: methods/gpgv.cc:71 #, c-format msgid "Couldn't access keyring: '%s'" -msgstr "无法访问密匙:“%s”" +msgstr "无法访问密钥环:“%s”" #: methods/gpgv.cc:107 msgid "E: Argument list from Acquire::gpgv::Options too long. Exiting." -msgstr "错误:Acquire::gpgv::Options 的参数列表超长。结束运行。" +msgstr "错误:Acquire::gpgv::Options 的参数列表太长。结束运行。" #: methods/gpgv.cc:223 msgid "" "Internal error: Good signature, but could not determine key fingerprint?!" -msgstr "内部错误:签名正确无误,但是无法确认密钥的指纹(key fingerprint)?!" +msgstr "内部错误:签名正确无误,但是无法确认密钥指纹?!" #: methods/gpgv.cc:228 msgid "At least one invalid signature was encountered." @@ -1968,7 +1968,7 @@ msgstr "至少发现一个无效的签名。" #: methods/gpgv.cc:232 #, c-format msgid "Could not execute '%s' to verify signature (is gpgv installed?)" -msgstr "无法运行\"%s\"以验证签名(您安装了 gpgv 么?)" +msgstr "无法运行“%s”以验证签名(您安装了 gpgv 吗?)" #: methods/gpgv.cc:237 msgid "Unknown error executing gpgv" @@ -1982,7 +1982,7 @@ msgstr "下列签名无效:\n" msgid "" "The following signatures couldn't be verified because the public key is not " "available:\n" -msgstr "由于没有公钥,下列签名无法进行验证:\n" +msgstr "由于没有公钥,无法验证下列签名:\n" #: methods/gzip.cc:64 #, c-format @@ -2001,27 +2001,27 @@ msgstr "正在等待报头" #: methods/http.cc:530 #, c-format msgid "Got a single header line over %u chars" -msgstr "受到了一行报头条目,它的长度超过了 %u 个字符" +msgstr "接收到一行报头行,它的长度超过了 %u 个字符" #: methods/http.cc:538 msgid "Bad header line" -msgstr "错误的报头条目" +msgstr "错误的报头行" #: methods/http.cc:557 methods/http.cc:564 msgid "The HTTP server sent an invalid reply header" -msgstr "该 http 服务器发送了一个无效的应答报头" +msgstr "该 HTTP 服务器发送了一个无效的应答报头" #: methods/http.cc:593 msgid "The HTTP server sent an invalid Content-Length header" -msgstr "该 http 服务器发送了一个无效的 Content-Length 报头" +msgstr "该 HTTP 服务器发送了一个无效的 Content-Length 报头" #: methods/http.cc:608 msgid "The HTTP server sent an invalid Content-Range header" -msgstr "该 http 服务器发送了一个无效的 Content-Range 报头" +msgstr "该 HTTP 服务器发送了一个无效的 Content-Range 报头" #: methods/http.cc:610 msgid "This HTTP server has broken range support" -msgstr "该 http 服务器的 range 支持不正常" +msgstr "该 HTTP 服务器的 range 支持不正常" #: methods/http.cc:634 msgid "Unknown date format" @@ -2033,7 +2033,7 @@ msgstr "select 调用出错" #: methods/http.cc:792 msgid "Connection timed out" -msgstr "连接服务器超时" +msgstr "连接超时" #: methods/http.cc:815 msgid "Error writing to output file" @@ -2041,11 +2041,11 @@ msgstr "写输出文件时出错" #: methods/http.cc:846 msgid "Error writing to file" -msgstr "写文件时出错" +msgstr "写入文件出错" #: methods/http.cc:874 msgid "Error writing to the file" -msgstr "写文件时出错" +msgstr "写入文件出错" #: methods/http.cc:888 msgid "Error reading from server. Remote end closed connection" @@ -2057,7 +2057,7 @@ msgstr "从服务器读取数据出错" #: methods/http.cc:981 apt-pkg/contrib/mmap.cc:215 msgid "Failed to truncate file" -msgstr "截断文件失败" +msgstr "无法截断文件" #: methods/http.cc:1146 msgid "Bad header data" @@ -2086,37 +2086,37 @@ msgid "" "Dynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. " "Current value: %lu. (man 5 apt.conf)" msgstr "" -"动态 MMap 没有空间了。请增大 APT::Cache-Limit 的大侠。当前值:%lu。(man 5 " +"动态 MMap 没有空间了。请增大 APT::Cache-Limit 的大小。当前值:%lu。(man 5 " "apt.conf)" #. d means days, h means hours, min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:346 #, c-format msgid "%lid %lih %limin %lis" -msgstr "" +msgstr "%li天 %li小时 %li分 %li秒" #. h means hours, min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:353 #, c-format msgid "%lih %limin %lis" -msgstr "" +msgstr "%li小时 %li分 %li秒" #. min means minutes, s means seconds #: apt-pkg/contrib/strutl.cc:360 #, c-format msgid "%limin %lis" -msgstr "" +msgstr "%li分 %li秒" #. s means seconds #: apt-pkg/contrib/strutl.cc:365 #, c-format msgid "%lis" -msgstr "" +msgstr "%li秒" #: apt-pkg/contrib/strutl.cc:1040 #, c-format msgid "Selection %s not found" -msgstr "没有发现您的所选 %s" +msgstr "找不到您选则的 %s" #: apt-pkg/contrib/configuration.cc:458 #, c-format @@ -2171,7 +2171,7 @@ msgstr "语法错误 %s:%u: 文件尾部有多余的无意义的数据" #: apt-pkg/contrib/progress.cc:153 #, c-format msgid "%c%s... Error!" -msgstr "%c%s... 有错误!" +msgstr "%c%s... 有错误!" #: apt-pkg/contrib/progress.cc:155 #, c-format @@ -2181,7 +2181,7 @@ msgstr "%c%s... 完成" #: apt-pkg/contrib/cmndline.cc:77 #, c-format msgid "Command line option '%c' [from %s] is not known." -msgstr "未知的命令行选项“%c”[来自 %s]" +msgstr "未知的命令行选项“%c” [来自 %s]" #: apt-pkg/contrib/cmndline.cc:103 apt-pkg/contrib/cmndline.cc:111 #: apt-pkg/contrib/cmndline.cc:119 @@ -2192,7 +2192,7 @@ msgstr "无法识别命令行选项 %s" #: apt-pkg/contrib/cmndline.cc:124 #, c-format msgid "Command line option %s is not boolean" -msgstr "命令行选项 %s 不是个布尔值" +msgstr "命令行选项 %s 不是布尔值" #: apt-pkg/contrib/cmndline.cc:163 apt-pkg/contrib/cmndline.cc:184 #, c-format @@ -2212,7 +2212,7 @@ msgstr "选项 %s 要求有一个整数作为参数,而不是“%s”" #: apt-pkg/contrib/cmndline.cc:265 #, c-format msgid "Option '%s' is too long" -msgstr "选项“%s”超长" +msgstr "选项“%s”太长" #: apt-pkg/contrib/cmndline.cc:298 #, c-format @@ -2237,12 +2237,12 @@ msgstr "无法切换工作目录到 %s" #: apt-pkg/contrib/cdromutl.cc:195 msgid "Failed to stat the cdrom" -msgstr "无法读取光盘的状态" +msgstr "无法读取盘片的状态" #: apt-pkg/contrib/fileutl.cc:149 #, c-format msgid "Not using locking for read only lock file %s" -msgstr "由于文件系统为只读,因而无法使用文件锁%s" +msgstr "由于文件系统为只读,因而无法使用文件锁 %s" #: apt-pkg/contrib/fileutl.cc:154 #, c-format @@ -2270,9 +2270,9 @@ msgid "Sub-process %s received a segmentation fault." msgstr "子进程 %s 发生了段错误" #: apt-pkg/contrib/fileutl.cc:458 -#, fuzzy, c-format +#, c-format msgid "Sub-process %s received signal %u." -msgstr "子进程 %s 发生了段错误" +msgstr "子进程 %s 收到信号 %u。" #: apt-pkg/contrib/fileutl.cc:462 #, c-format @@ -2282,7 +2282,7 @@ msgstr "子进程 %s 返回了一个错误号 (%u)" #: apt-pkg/contrib/fileutl.cc:464 #, c-format msgid "Sub-process %s exited unexpectedly" -msgstr "子进程 %s 异常退出了" +msgstr "子进程 %s 异常退出" #: apt-pkg/contrib/fileutl.cc:508 #, c-format @@ -2292,24 +2292,24 @@ msgstr "无法打开文件 %s" #: apt-pkg/contrib/fileutl.cc:564 #, c-format msgid "read, still have %lu to read but none left" -msgstr "读文件时出错,还剩 %lu 字节没有读出" +msgstr "读取文件出错,还剩 %lu 字节没有读出" #: apt-pkg/contrib/fileutl.cc:594 #, c-format msgid "write, still have %lu to write but couldn't" -msgstr "写文件时出错,还剩 %lu 字节没有保存" +msgstr "写入文件出错,还剩 %lu 字节没有保存" #: apt-pkg/contrib/fileutl.cc:669 msgid "Problem closing the file" -msgstr "关闭文件时出错" +msgstr "关闭文件出错" #: apt-pkg/contrib/fileutl.cc:675 msgid "Problem unlinking the file" -msgstr "用 unlink 删除文件时出错" +msgstr "用 unlink 删除文件出错" #: apt-pkg/contrib/fileutl.cc:686 msgid "Problem syncing the file" -msgstr "同步文件时出错" +msgstr "同步文件出错" #: apt-pkg/pkgcache.cc:133 msgid "Empty package cache" @@ -2317,7 +2317,7 @@ msgstr "软件包缓存区是空的" #: apt-pkg/pkgcache.cc:139 msgid "The package cache file is corrupted" -msgstr "软件包缓存区文件损坏了" +msgstr "软件包缓存文件损坏了" #: apt-pkg/pkgcache.cc:144 msgid "The package cache file is an incompatible version" @@ -2326,11 +2326,11 @@ msgstr "软件包缓存区文件的版本不兼容" #: apt-pkg/pkgcache.cc:149 #, c-format msgid "This APT does not support the versioning system '%s'" -msgstr "本程序目前不支持“%s”这个版本控制系统" +msgstr "本程序目前不支持“%s”版本系统" #: apt-pkg/pkgcache.cc:154 msgid "The package cache was built for a different architecture" -msgstr "软件包缓存区是为其它架构的主机构造的" +msgstr "软件包缓存区是为其它架构的硬件构建的" #: apt-pkg/pkgcache.cc:225 msgid "Depends" @@ -2366,7 +2366,7 @@ msgstr "破坏" #: apt-pkg/pkgcache.cc:227 msgid "Enhances" -msgstr "" +msgstr "增强" #: apt-pkg/pkgcache.cc:238 msgid "important" @@ -2374,7 +2374,7 @@ msgstr "重要" #: apt-pkg/pkgcache.cc:238 msgid "required" -msgstr "必要" +msgstr "必需" #: apt-pkg/pkgcache.cc:238 msgid "standard" @@ -2427,27 +2427,27 @@ msgstr "无法解析软件包文件 %s (2)" #: apt-pkg/sourcelist.cc:90 #, c-format msgid "Malformed line %lu in source list %s (URI)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行的格式有误 (URI)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行的格式有误(URI)" #: apt-pkg/sourcelist.cc:92 #, c-format msgid "Malformed line %lu in source list %s (dist)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误 (dist)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(发行版)" #: apt-pkg/sourcelist.cc:95 #, c-format msgid "Malformed line %lu in source list %s (URI parse)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误 (URI parse)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(URI 解析)" #: apt-pkg/sourcelist.cc:101 #, c-format msgid "Malformed line %lu in source list %s (absolute dist)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误 (Ablolute dist)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(独立发行版)" #: apt-pkg/sourcelist.cc:108 #, c-format msgid "Malformed line %lu in source list %s (dist parse)" -msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误 (dist parse)" +msgstr "安装源配置文件“%2$s”第 %1$lu 行有错误(发行版解析)" #: apt-pkg/sourcelist.cc:206 #, c-format @@ -2457,22 +2457,22 @@ msgstr "正在打开 %s" #: apt-pkg/sourcelist.cc:223 apt-pkg/cdrom.cc:445 #, c-format msgid "Line %u too long in source list %s." -msgstr "软件包来源档 %2$s 的第 %1$u 行超长了。" +msgstr "源列表 %2$s 的第 %1$u 行太长了。" #: apt-pkg/sourcelist.cc:243 #, c-format msgid "Malformed line %u in source list %s (type)" -msgstr "在安装源列表中 %2$s 中第 %1$u 行的格式有误 (type)" +msgstr "在源列表 %2$s 中第 %1$u 行的格式有误(类型)" #: apt-pkg/sourcelist.cc:247 #, c-format msgid "Type '%s' is not known on line %u in source list %s" -msgstr "无法识别在安装源列表 %3$s 里,第 %2$u 行中的软件包类别“%1$s”" +msgstr "无法识别在源列表 %3$s 里,第 %2$u 行中的软件包类别“%1$s”" #: apt-pkg/sourcelist.cc:255 apt-pkg/sourcelist.cc:258 #, c-format msgid "Malformed line %u in source list %s (vendor id)" -msgstr "在安装源列表中 %2$s 中第 %1$u 行的格式有误 (vendor id)" +msgstr "在源列表中 %2$s 中第 %1$u 行的格式有误(供应商 ID)" #: apt-pkg/packagemanager.cc:436 #, c-format @@ -2520,12 +2520,12 @@ msgstr "" #: apt-pkg/acquire.cc:60 #, c-format msgid "Lists directory %spartial is missing." -msgstr "软件包列表的目录 %spartial 不见了。" +msgstr "软件包列表的目录 %spartial 缺失。" #: apt-pkg/acquire.cc:64 #, c-format msgid "Archive directory %spartial is missing." -msgstr "找不到“%spartial”这个目录。" +msgstr "找不到“%spartial”目录。" #. only show the ETA if it makes sense #. two days @@ -2552,7 +2552,7 @@ msgstr "获取软件包的渠道 %s 所需的驱动程序没有正常启动。" #: apt-pkg/acquire-worker.cc:413 #, c-format msgid "Please insert the disc labeled: '%s' in the drive '%s' and press enter." -msgstr "请把标有 “%s” 的碟片插入驱动器“%s”再按回车键。" +msgstr "请把标有“%s”的盘片插入驱动器“%s”再按回车键。" #: apt-pkg/init.cc:132 #, c-format @@ -2570,7 +2570,7 @@ msgstr "无法读取 %s 的状态。" #: apt-pkg/srcrecords.cc:44 msgid "You must put some 'source' URIs in your sources.list" -msgstr "您必须在您的 sources.list 写入一些“软件包源”的 URI" +msgstr "您必须在您的 sources.list 写入一些“软件源”的 URI" #: apt-pkg/cachefile.cc:71 msgid "The package lists or status file could not be parsed or opened." @@ -2581,14 +2581,14 @@ msgid "You may want to run apt-get update to correct these problems" msgstr "您可能需要运行 apt-get update 来解决这些问题" #: apt-pkg/policy.cc:347 -#, fuzzy, c-format +#, c-format msgid "Invalid record in the preferences file %s, no Package header" -msgstr "偏好设定(preferences)文件中发现有无效的记录,无 Package 字段头" +msgstr "首选项文件 %s 中发现有无效的记录,无 Package 字段头" #: apt-pkg/policy.cc:369 #, c-format msgid "Did not understand pin type %s" -msgstr "无法识别锁定的类型(pin type) %s" +msgstr "无法识别锁定的类型 %s" #: apt-pkg/policy.cc:377 msgid "No priority (or zero) specified for pin" @@ -2645,19 +2645,19 @@ msgstr "处理 %s (NewFileDesc2)时出错" #: apt-pkg/pkgcachegen.cc:264 msgid "Wow, you exceeded the number of package names this APT is capable of." -msgstr "糟了,软件包的数量了超出本程序的处理能力。" +msgstr "哇,软件包数量超出了本 APT 的处理能力。" #: apt-pkg/pkgcachegen.cc:267 msgid "Wow, you exceeded the number of versions this APT is capable of." -msgstr "糟了,软件包版本的数量了超出本程序的处理能力。" +msgstr "哇,软件包版本数量超出了本 APT 的处理能力。" #: apt-pkg/pkgcachegen.cc:270 msgid "Wow, you exceeded the number of descriptions this APT is capable of." -msgstr "糟了,软件包说明的数量了超出本程序的处理能力。" +msgstr "哇,软件包说明数量超出了本 APT 的处理能力。" #: apt-pkg/pkgcachegen.cc:273 msgid "Wow, you exceeded the number of dependencies this APT is capable of." -msgstr "糟了,依赖关系的数量超出了本程序的处理能力。" +msgstr "哇,依赖关系数量超出了本 APT 的处理能力。" #: apt-pkg/pkgcachegen.cc:301 #, c-format @@ -2685,7 +2685,7 @@ msgstr "正在收集文件所提供的软件包" #: apt-pkg/pkgcachegen.cc:907 apt-pkg/pkgcachegen.cc:914 msgid "IO Error saving source cache" -msgstr "无法写入来源缓存文件" +msgstr "无法读取或写入软件源缓存" #: apt-pkg/acquire-item.cc:128 #, c-format @@ -2702,7 +2702,7 @@ msgstr "Hash 校验和不符" #: apt-pkg/acquire-item.cc:1106 msgid "There is no public key available for the following key IDs:\n" -msgstr "以下 key ID 没有可用的公钥:\n" +msgstr "以下 ID 的密钥没有可用的公钥:\n" #: apt-pkg/acquire-item.cc:1216 #, c-format @@ -2732,19 +2732,19 @@ msgid "Size mismatch" msgstr "大小不符" #: apt-pkg/indexrecords.cc:40 -#, fuzzy, c-format +#, c-format msgid "Unable to parse Release file %s" -msgstr "无法解析软件包文件 %s (1)" +msgstr "无法解析软件包仓库 Release 文件 %s" #: apt-pkg/indexrecords.cc:47 -#, fuzzy, c-format +#, c-format msgid "No sections in Release file %s" -msgstr "注意,选取 %s 而非 %s\n" +msgstr "软件包仓库 Release 文件 %s 内无组件章节信息" #: apt-pkg/indexrecords.cc:81 #, c-format msgid "No Hash entry in Release file %s" -msgstr "" +msgstr "软件包仓库 Release 文件 %s 内无哈希条目" #: apt-pkg/vendorlist.cc:66 #, c-format @@ -2767,7 +2767,7 @@ msgstr "正在鉴别.. " #: apt-pkg/cdrom.cc:559 #, c-format msgid "Stored label: %s\n" -msgstr "已存档的标签:%s\n" +msgstr "已归档文件的标签:%s\n" #: apt-pkg/cdrom.cc:566 apt-pkg/cdrom.cc:836 msgid "Unmounting CD-ROM...\n" @@ -2793,7 +2793,7 @@ msgstr "正在挂载 CD-ROM 文件系统……\n" #: apt-pkg/cdrom.cc:633 msgid "Scanning disc for index files..\n" -msgstr "正在光盘中查找索引文件..\n" +msgstr "正在盘片中查找索引文件..\n" #: apt-pkg/cdrom.cc:673 #, c-format @@ -2809,6 +2809,8 @@ msgid "" "Unable to locate any package files, perhaps this is not a Debian Disc or the " "wrong architecture?" msgstr "" +"无法确定任何包文件的位置,可能这不是一张 Debian 盘片或者是选择了错误的硬件构" +"架。" #: apt-pkg/cdrom.cc:710 #, c-format @@ -2817,7 +2819,7 @@ msgstr "找到标签 '%s'\n" #: apt-pkg/cdrom.cc:739 msgid "That is not a valid name, try again.\n" -msgstr "这不是一个有效的名字,请再次命名。\n" +msgstr "这不是一个有效的名字,请重试。\n" #: apt-pkg/cdrom.cc:755 #, c-format @@ -2825,7 +2827,7 @@ msgid "" "This disc is called: \n" "'%s'\n" msgstr "" -"这张光盘现在的名字是:\n" +"这张盘片现在的名字是:\n" "“%s”\n" #: apt-pkg/cdrom.cc:759 @@ -2834,11 +2836,11 @@ msgstr "正在复制软件包列表……" #: apt-pkg/cdrom.cc:785 msgid "Writing new source list\n" -msgstr "正在写入新的软件包源列表\n" +msgstr "正在写入新的源列表\n" #: apt-pkg/cdrom.cc:794 msgid "Source list entries for this disc are:\n" -msgstr "对应于该光盘的软件包源设置项是:\n" +msgstr "对应于该盘片的软件源设置项是:\n" #: apt-pkg/indexcopy.cc:263 apt-pkg/indexcopy.cc:835 #, c-format @@ -2853,12 +2855,12 @@ msgstr "已写入 %i 条记录,并有 %i 个文件缺失。\n" #: apt-pkg/indexcopy.cc:268 apt-pkg/indexcopy.cc:840 #, c-format msgid "Wrote %i records with %i mismatched files\n" -msgstr "已写入 %i 条记录,并有 %i 个文件不吻合\n" +msgstr "已写入 %i 条记录,并有 %i 个文件不匹配\n" #: apt-pkg/indexcopy.cc:271 apt-pkg/indexcopy.cc:843 #, c-format msgid "Wrote %i records with %i missing files and %i mismatched files\n" -msgstr "已写入 %i 条记录,并有 %i 个缺失,以及 %i 个文件不吻合\n" +msgstr "已写入 %i 条记录,并有 %i 个缺失,以及 %i 个文件不匹配\n" #: apt-pkg/deb/dpkgpm.cc:49 #, c-format @@ -2927,33 +2929,33 @@ msgstr "完全删除了 %s" #: apt-pkg/deb/dpkgpm.cc:878 msgid "Can not write log, openpty() failed (/dev/pts not mounted?)\n" -msgstr "无法写入日志。 openpty() 失败 (/dev/pts 没有 mount 上?)\n" +msgstr "无法写入日志。 openpty() 失败(没有挂载 /dev/pts ?)\n" #: apt-pkg/deb/dpkgpm.cc:907 msgid "Running dpkg" -msgstr "" +msgstr "正在运行 dpkg" #: apt-pkg/deb/debsystem.cc:70 #, c-format msgid "" "Unable to lock the administration directory (%s), is another process using " "it?" -msgstr "" +msgstr "无法锁定管理目录(%s),是否有其他进程正占用它?" #: apt-pkg/deb/debsystem.cc:73 -#, fuzzy, c-format +#, c-format msgid "Unable to lock the administration directory (%s), are you root?" -msgstr "无法对状态列表目录加锁" +msgstr "无法对状态列表目录加锁(%s),请查看您是否正以 root 用户运行?" #: apt-pkg/deb/debsystem.cc:82 msgid "" "dpkg was interrupted, you must manually run 'dpkg --configure -a' to correct " "the problem. " -msgstr "" +msgstr "dpkg 被中断,您必须手工运行 'dpkg --configure -a' 解决此问题。" #: apt-pkg/deb/debsystem.cc:100 msgid "Not locked" -msgstr "" +msgstr "未锁定" #: methods/rred.cc:219 msgid "Could not patch file" @@ -2981,7 +2983,7 @@ msgstr "连接被永久关闭" #~ "您最好提交一个针对这个软件包的故障报告。" #~ msgid "Line %d too long (max %lu)" -#~ msgstr "第 %d 行超长了(长度限制为 %lu)。" +#~ msgstr "第 %d 行太长了(长度限制为 %lu)。" #~ msgid "After unpacking %sB of additional disk space will be used.\n" #~ msgstr "解压缩后会消耗掉 %sB 的额外空间。\n" @@ -2993,7 +2995,7 @@ msgstr "连接被永久关闭" #~ msgstr "%s 已设置为手动安装。\n" #~ msgid "Line %d too long (max %d)" -#~ msgstr "第 %d 行超长了(长度限制为 %d)" +#~ msgstr "第 %d 行太长了(长度限制为 %d)" #~ msgid "Error occured while processing %s (NewFileDesc1)" #~ msgstr "处理 %s (NewFileDesc1)时出错" @@ -3002,7 +3004,7 @@ msgstr "连接被永久关闭" #~ msgstr "处理 %s (NewFileDesc2)时出错" #~ msgid "Stored label: %s \n" -#~ msgstr "存档标签:%s \n" +#~ msgstr "归档文件标签:%s \n" #~ msgid "" #~ "Found %i package indexes, %i source indexes, %i translation indexes and %" @@ -3030,5 +3032,4 @@ msgstr "连接被永久关闭" #~ msgid "Unknown vendor ID '%s' in line %u of source list %s" #~ msgstr "" -#~ "在安装源列表 %3$s 的第 %2$u 行发现了无法识别的软件提供商 ID (vendor ID) “%" -#~ "1$s”" +#~ "在源列表 %3$s 的第 %2$u 行发现了无法识别的软件提供商 ID (vendor ID) “%1$s”" -- cgit v1.2.3 From 7efded877fcf46f51b464fe4c5e053f26609f9d0 Mon Sep 17 00:00:00 2001 From: "bubulle@debian.org" <> Date: Tue, 1 Dec 2009 21:51:17 +0100 Subject: drop quote elements --- doc/po/fr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/po/fr.po b/doc/po/fr.po index 7c3ea85d4..cab40fc9d 100644 --- a/doc/po/fr.po +++ b/doc/po/fr.po @@ -5242,7 +5242,7 @@ msgid "" "element (router, switch, etc.) or by redirecting traffic to a rogue server " "(through arp or DNS spoofing attacks)." msgstr "" -"<literal>Attaque réseau de type <quote>homme au milieu</quote></literal>. " +"<literal>Attaque réseau de type « homme au milieu »</literal>. " "Sans vérification de signature, quelqu'un de malveillant peut s'introduire " "au milieu du processus de téléchargement et insérer du code soit en " "contrôlant un élément du réseau, routeur, commutateur, etc. soit en " -- cgit v1.2.3